diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 000000000..df2595244 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,32 @@ +{ + "permissions": { + "allow": [ + "Read(net/Semio.Grasshopper/Semio.Grasshopper.cs)", + "Edit(net/Semio.Grasshopper/Semio.Grasshopper.cs)", + "Read(net\\Semio.Grasshopper\\Semio.Grasshopper.cs)", + "Edit(net\\Semio.Grasshopper\\Semio.Grasshopper.cs)", + "Read(net/Semio/Semio.cs)", + "Edit(net/Semio/Semio.cs)", + "Read(net\\Semio\\Semio.cs)", + "Edit(net\\Semio\\Semio.cs)", + "Read(py/engine.py)", + "Edit(py/engine.py)", + "Read(py\\engine.py)", + "Edit(py\\engine.py)", + "Read(js/core/semio.ts)", + "Edit(js/core/semio.ts)", + "Read(js\\core\\semio.ts)", + "Edit(js\\core\\semio.ts)", + "Read(js/core/components/**)", + "Edit(js/core/components/**)", + "Read(js\\core\\components/**)", + "Edit(js\\core\\components/**)" + ], + "deny": [ + "Read(./.env)", + "Read(./.env.*)", + "Read(./secrets/**)" + ], + "ask": [] + } +} \ No newline at end of file diff --git a/.cursor/mcp.json b/.cursor/mcp.json index a9b21f094..ed7d66ec2 100644 --- a/.cursor/mcp.json +++ b/.cursor/mcp.json @@ -4,4 +4,4 @@ "url": "http://localhost:9041/sse" } } -} \ No newline at end of file +} diff --git a/.cursor/rules/js-core.mdc b/.cursor/rules/js-core.mdc index 0d663ffe8..c9c5a975a 100644 --- a/.cursor/rules/js-core.mdc +++ b/.cursor/rules/js-core.mdc @@ -1,17 +1,22 @@ --- -description: +description: globs: js/core/**/*.* alwaysApply: false --- + # Project + Shared react components. The main component is Sketchpad. Sketchpad is used in three different szenarios: + 1. As guest mode (readonly) in a statically generated pages. 2. As user mode in the browser (nextjs). 3. As user mode in a desktop app (electron). -Sketchpad has a local store in yjs which syncs with indexeddb and the backend provider. -There are two different undo managers. -1. User level: For creating and deleting kits, types and designs. -2. Editor level: For updating individual types and designs. + Sketchpad has a local store in yjs which syncs with indexeddb and the backend provider. # Guidelines + +- All domain logic is in semio.ts and whenever an operation is not ui bound, it should be implemented there. +- All state is stored in the SketchpadStore. All state and cruds are accessed over hooks. +- There are different scopes: SketchpadScope, KitScope, DesignScope, DesignEditorScope. +- There is a transaction mechanism for kits. Every design editor transaction is an extended kit transaction. The undo redo manager is on editor level and stores the diff of the transaction along with the editor state. This way undo redo works even when the kit changes because only the diff is stored. - Internal components use `import {default as NAME} from "@semio/js/components/ui/NAME.tsx"` as import and external components use `import {NAME} from "@semio/js"`. diff --git a/.cursor/rules/js.mdc b/.cursor/rules/js.mdc index 0d691b48c..8a4423dc2 100644 --- a/.cursor/rules/js.mdc +++ b/.cursor/rules/js.mdc @@ -14,3 +14,6 @@ Nx monorepo with shared core (@semio/js) that uses storybook and exports a handf - No rounded borders (unless full rounded). - No shadows. +# Styling + +- The ui consists of a navbar and edgeless content. Everything else is displayed as HUD with floating panels that show different colors. diff --git a/.cursor/rules/repo.mdc b/.cursor/rules/repo.mdc index 74d992f7b..20dd57856 100644 --- a/.cursor/rules/repo.mdc +++ b/.cursor/rules/repo.mdc @@ -14,16 +14,23 @@ An ecosystem for designing kit-of-parts architecture together. - Almost everything is in a single file if possible. - Folders are avoided if possible. - No need to ask in between. Be opionionated and just go for it. Try to do as much as you can. -- Don't ask to execute commands in the cli. Assume all the tools are properly setup. - No need to delete files, you can tell me when once you are 100% done with everything and I will do it manually. - You are allowed to change everything (names, apis, creating/modifying/deleting fields, props, …) and don't have to worry about breaking compatiblity. Choose the most elegant approach even if it requires changing more than necessary. - Don't create additional example files and implement it directly in the dependent parts. - Don't remove code that is commented out. - README.md files are for developers which are GFM. -- Assume all dev servers and debugging processes are running. No need to ask to start them. Don't ask to run commands for building, testing, linting, etc. +- Assume all dev servers, debugging and testing processes are running. No need to ask to start them. Don't ask to run commands for building, testing, linting, etc if you are not inspecting the output yourself. - Don't add comments to the code. +- Don't create tests unless you are explicitly asked to. - Always use inline syntax if possible. - If a variable is only used once, use it inline unless the line of code exceeds the screen. +- Don't add extra new lines inside of code. + +# Styling + +- No rounded corners unless a circle. +- Never use shadows. +- All colors are explicitly defined as variables and should never be hardcoded. # Glossary @@ -36,7 +43,7 @@ An ecosystem for designing kit-of-parts architecture together. - Port: A conceptual connection point with an outwards direction. - Connection: A 3D-Link between two pieces with translation parameters (gap, shift, rise) and rotation parameters (rotation, turn, tilt). - Representation: A tagged url to a resource with an optional description. -- Quality: Metadata with a name, an optional value, an optional unit and an optional definition (url or text). +- Attribute: Metadata with a name, an optional value, an optional unit and an optional definition (url or text). - Tag: A kebab-cased name. - Plane: A location (origin) and orientation (x-axis, y-axis and derived z-axis) in 3D space. - Url: Either relative (to the root of the .zip file) or remote (http, https, ftp, …) string. diff --git a/.github/chatmodes/Dev.chatmode.md b/.github/chatmodes/Dev.chatmode.md index f12524e94..5a59e1e51 100644 --- a/.github/chatmodes/Dev.chatmode.md +++ b/.github/chatmodes/Dev.chatmode.md @@ -1,26 +1,6 @@ --- description: Help senior developer working. -tools: [ - 'changes', - 'codebase', - 'editFiles', - 'fetch', - 'findTestFiles', - 'problems', - 'readCellOutput', - 'runCommands', - 'runNotebooks', - 'runTasks', - 'runTests', - 'search', - 'searchResults', - 'terminalLastCommand', - 'terminalSelection', - 'testFailure', - 'usages', - 'vscodeAPI', - 'markitdown' - ] +tools: ["changes", "codebase", "editFiles", "fetch", "findTestFiles", "problems", "runCommands", "runNotebooks", "runTasks", "runTests", "search", "searchResults", "terminalLastCommand", "terminalSelection", "testFailure", "usages", "vscodeAPI"] model: Claude Sonnet 4 --- @@ -34,16 +14,27 @@ An ecosystem for designing kit-of-parts architecture together. - Almost everything is in a single file if possible. - Folders are avoided if possible. - No need to ask in between. Be opionionated and just go for it. Try to do as much as you can. -- Don't ask to execute commands in the cli. Assume all the tools are properly setup. - No need to delete files, you can tell me when once you are 100% done with everything and I will do it manually. - You are allowed to change everything (names, apis, creating/modifying/deleting fields, props, …) and don't have to worry about breaking compatiblity. Choose the most elegant approach even if it requires changing more than necessary. - Don't create additional example files and implement it directly in the dependent parts. - Don't remove code that is commented out. - README.md files are for developers which are GFM. -- Assume all dev servers and debugging processes are running. No need to ask to start them. Don't ask to run commands for building, testing, linting, etc. +- Assume all dev servers, debugging and testing processes are running. No need to ask to start them. Don't ask to run commands for building, testing, linting, etc if you are not inspecting the output yourself. - Don't add comments to the code. +- Don't create tests unless you are explicitly asked to. - Always use inline syntax if possible. - If a variable is only used once, use it inline unless the line of code exceeds the screen. +- Don't add extra new lines inside of code. + +# Styling + +- No rounded corners unless a circle. +- Never use shadows. +- All colors are explicitly defined as variables and should never be hardcoded. + +## sketchpad + +- The ui consists of a navbar and edgeless content. Everything else is displayed as HUD with floating panels that show different colors. # Glossary @@ -56,7 +47,7 @@ An ecosystem for designing kit-of-parts architecture together. - Port: A conceptual connection point with an outwards direction. - Connection: A 3D-Link between two pieces with translation parameters (gap, shift, rise) and rotation parameters (rotation, turn, tilt). - Representation: A tagged url to a resource with an optional description. -- Quality: Metadata with a name, an optional value, an optional unit and an optional definition (url or text). +- Attribute: Metadata with a name, an optional value, an optional unit and an optional definition (url or text). - Tag: A kebab-cased name. - Plane: A location (origin) and orientation (x-axis, y-axis and derived z-axis) in 3D space. - Url: Either relative (to the root of the .zip file) or remote (http, https, ftp, …) string. diff --git a/.gitignore b/.gitignore index e5970a5e5..5d1dcba0d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,12 @@ #--------------------------------------GENERAL-------------------------------------- local +*.local.* debug +*.debug.* temp +*.temp.* log +*.log.* #--------------------------------------MACOS-------------------------------------- .DS_Store #--------------------------------------NX-------------------------------------- diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000..b512c09d4 --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc.json index 77351d232..0b2f36155 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,8 +1,3 @@ { - "trailingComma": "none", - "tabWidth": 2, - "semi": false, - "singleQuote": true, - "printWidth": 120, - "unusedImports": "on" + "printWidth": 250 } diff --git a/.vscode/extensions.json b/.vscode/extensions.json index d108bfb6d..a1ee26b56 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -33,11 +33,10 @@ "ms-dotnettools.dotnet-interactive-vscode", // python "njpwerner.autodocstring", - "ms-python.black-formatter", - "ms-python.isort", - "ms-toolsai.jupyter", - "ms-python.pylint", "ms-python.python", + "ms-python.vscode-pylance", + "charliermarsh.ruff", + "ms-toolsai.jupyter" ], "unwantedRecommendations": [] } \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index f81d09c21..01bfa3a75 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,197 +1,206 @@ { - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "dev everything", + "preLaunchTask": "dev", + // "postDebugTask": "kill dev", + "type": "debugpy", // hacky because the js debuggers are added automatically only python is missing + "request": "attach", + "connect": { + "host": "localhost", + "port": 5678 + }, + "pathMappings": [ { - "name": "dev everything", - "preLaunchTask": "dev", - // "postDebugTask": "kill dev", - "type": "debugpy", // hacky because the js debuggers are added automatically only python is missing - "request": "attach", - "connect": { - "host": "localhost", - "port": 5678 - }, - "pathMappings": [ - { - "localRoot": "${workspaceFolder}/py/engine", - "remoteRoot": ".", - } - ], - }, + "localRoot": "${workspaceFolder}/py/engine", + "remoteRoot": "." + } + ] + }, + { + "name": "dev engine", + "preLaunchTask": "dev engine", + // "postDebugTask": "kill dev", + "type": "debugpy", + "request": "attach", + "connect": { + "host": "localhost", + "port": 5678 + }, + "pathMappings": [ { - "name": "dev engine", - "preLaunchTask": "dev engine", - // "postDebugTask": "kill dev", - "type": "debugpy", - "request": "attach", - "connect": { - "host": "localhost", - "port": 5678 - }, - "pathMappings": [ - { - "localRoot": "${workspaceFolder}/py/engine", - "remoteRoot": ".", - } - ], - }, - { - "name": "dev everything js", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "run-many", - "-t", - "dev", - "--projects=@semio/js,@semio/docs,@semio/sketchpad" - ], - // "postDebugTask": "kill dev", - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "dev js", - "preLaunchTask": "dev js", - // "postDebugTask": "kill dev", - "type": "chrome", - "request": "launch", - "url": "http://localhost:6006", - "webRoot": "${workspaceRoot}/js/core", - }, - { - "name": "dev docs", - "preLaunchTask": "dev docs", - // "postDebugTask": "kill dev", - "type": "chrome", - "request": "launch", - "url": "http://localhost:4321", - "webRoot": "${workspaceRoot}/js/docs", - }, - { - "name": "dev sketchpad", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "dev", - "@semio/sketchpad" - ], - // "postDebugTask": "kill dev", - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "build assets", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "build", - "@semio/assets" - ], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "build icons", - "type": "PowerShell", - "request": "launch", - "script": "${workspaceFolder}/assets/icons/build.ps1", - "cwd": "${workspaceFolder}/assets/icons/" - }, - // TODO: Invoke build task over nx and attach debugger to it - // Problem: Need to get process id or find a different way - // { - // "name": "build icons", - // "type": "PowerShell", - // "request": "attach", - // "preLaunchTask": "build icons" - // }, - { - "name": "build engine", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "build", - "@semio/engine" - ], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "build everything js", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "run-many", - "-t", - "build", - "--projects=@semio/js,@semio/docs,@semio/sketchpad" - ], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "build js core", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "build", - "@semio/js" - ], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "build docs", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "build", - "@semio/docs" - ], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "build sketchpad", - "type": "node", - "request": "launch", - "runtimeExecutable": "npx", - "runtimeArgs": [ - "nx", - "build", - "@semio/sketchpad" - ], - "cwd": "${workspaceFolder}", - "console": "integratedTerminal" - }, - { - "name": "PowerShell", - "type": "PowerShell", - "request": "launch", - "script": "${file}", - "cwd": "${fileDirname}" - }, - { - "name": "Python", - "type": "debugpy", - "request": "launch", - "program": "${file}", - "console": "integratedTerminal" - }, - ] + "localRoot": "${workspaceFolder}/py/engine", + "remoteRoot": "." + } + ] + }, + { + "name": "dev everything js", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "run-many", + "-t", + "dev", + "--projects=@semio/js,@semio/docs,@semio/sketchpad" + ], + // "postDebugTask": "kill dev", + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "dev js", + "preLaunchTask": "dev js", + // "postDebugTask": "kill dev", + "type": "chrome", + "request": "launch", + "url": "http://localhost:6006", + "webRoot": "${workspaceRoot}/js/core" + }, + { + "name": "dev play", + "preLaunchTask": "dev play", + // "postDebugTask": "kill dev", + "type": "chrome", + "request": "launch", + "url": "http://localhost:5173", + "webRoot": "${workspaceRoot}/js/play" + }, + { + "name": "dev docs", + "preLaunchTask": "dev docs", + // "postDebugTask": "kill dev", + "type": "chrome", + "request": "launch", + "url": "http://localhost:4321", + "webRoot": "${workspaceRoot}/js/docs" + }, + { + "name": "dev sketchpad", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "dev", + "@semio/sketchpad" + ], + // "postDebugTask": "kill dev", + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "build assets", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "build", + "@semio/assets" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "build icons", + "type": "PowerShell", + "request": "launch", + "script": "${workspaceFolder}/assets/icons/build.ps1", + "cwd": "${workspaceFolder}/assets/icons/" + }, + // TODO: Invoke build task over nx and attach debugger to it + // Problem: Need to get process id or find a different way + // { + // "name": "build icons", + // "type": "PowerShell", + // "request": "attach", + // "preLaunchTask": "build icons" + // }, + { + "name": "build engine", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "build", + "@semio/engine" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "build everything js", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "run-many", + "-t", + "build", + "--projects=@semio/js,@semio/docs,@semio/sketchpad" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "build js core", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "build", + "@semio/js" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "build docs", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "build", + "@semio/docs" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "build sketchpad", + "type": "node", + "request": "launch", + "runtimeExecutable": "npx", + "runtimeArgs": [ + "nx", + "build", + "@semio/sketchpad" + ], + "cwd": "${workspaceFolder}", + "console": "integratedTerminal" + }, + { + "name": "PowerShell", + "type": "PowerShell", + "request": "launch", + "script": "${file}", + "cwd": "${fileDirname}" + }, + { + "name": "Python", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + } + ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 9c15d8d8c..d30e17174 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,22 +3,17 @@ "editor.codeActionsOnSave": { "source.organizeImports": "always" }, - "editor.folding.markers": { - "start": "^\\s*##.*##\\b", - "end": "^\\s*##.*##\\b" - }, - "python.defaultInterpreterPath": "${workspaceFolder}\\python\\engine\\.venv\\Scripts\\python.exe", - "pylint.args": [ - "--variable-naming-style=camelCase", - "--function-naming-style=camelCase", - "--method-naming-style=camelCase", - "--attribute-naming-style=camelCase", - "--class-naming-style=PascalCase" - ], + "python.defaultInterpreterPath": "${workspaceFolder}\\py\\engine\\.venv\\Scripts\\python.exe", "editor.defaultFormatter": "esbenp.prettier-vscode", + "[typescriptreact]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, "prettier.configPath": ".prettierrc.json", "[python]": { - "editor.defaultFormatter": "ms-python.black-formatter" + "editor.defaultFormatter": "charliermarsh.ruff" + }, + "[csharp]": { + "editor.defaultFormatter": "ms-dotnettools.csharp" }, "python.analysis.typeCheckingMode": "off", "python.testing.pytestEnabled": true, @@ -26,6 +21,7 @@ "python.testing.pytestArgs": [ "." ], + "python.analysis.languageServerMode": "full", // "python.testing.pytestArgs": [ // "--cov", // "--cov-config=pyproject.toml", @@ -47,5 +43,10 @@ "previewLimit": 50 } ], - "dotnet.defaultSolution": "net/Semio.sln" + "dotnet.defaultSolution": "net/Semio.sln", + "chat.agent.maxRequests": 200, + "editor.minimap.enabled": true, + "[svg]": { + "editor.defaultFormatter": "jock.svg" + } } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 45963a6d1..03749db51 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,156 +1,161 @@ { - "version": "2.0.0", - "tasks": [ - { - "label": "dev", - "type": "shell", - "command": "npx nx run-many -t dev", - "isBackground": true, - "presentation": { - "reveal": "silent", - "panel": "dedicated", - "close": true - }, - "problemMatcher": { - "owner": "custom", - "pattern": [ - { - "regexp": ".", - "file": 1, - "location": 2, - "message": 3 - } - ], - "background": { - "activeOnStart": true, - "beginsPattern": "Starting debugpy for semio engine", // When server starts - "endsPattern": "Waiting for debugger to attach to semio engine" // When server is ready - } - }, - "group": "none", - "options": { - "killOnPort": 5678 - } - }, - { - "label": "dev engine", - "type": "shell", - "command": "npx nx dev @semio/engine", - "isBackground": true, - "presentation": { - "reveal": "silent", - "panel": "dedicated", - "close": true - }, - "problemMatcher": { - "owner": "custom", - "pattern": [ - { - "regexp": ".", - "file": 1, - "location": 2, - "message": 3 - } - ], - "background": { - "activeOnStart": true, - "beginsPattern": "Starting debugpy for semio engine", // When server starts - "endsPattern": "Waiting for debugger to attach to semio engine" // When server is ready - } - }, - "group": "none", - "options": { - "killOnPort": 5678 - } - }, - { - "label": "dev js", - "type": "shell", - "isBackground": true, - "command": "npx nx dev @semio/js", - "presentation": { - "reveal": "silent", - "panel": "dedicated", - "close": true - }, - "problemMatcher": { - "owner": "custom", - "pattern": [ - { - "regexp": ".", - "file": 1, - "location": 2, - "message": 3 - } - ], - "background": { - "activeOnStart": true, - "beginsPattern": "@storybook/core", // When storybook starts - "endsPattern": "http://localhost:6006/" // When sotrybook is ready - } - }, - "group": "none", - "options": { - "killOnPort": 6006 - } - }, - { - "label": "dev docs", - "type": "shell", - "isBackground": true, - "command": "npx nx dev @semio/docs", - "presentation": { - "reveal": "silent", - "panel": "dedicated", - "close": true - }, - "problemMatcher": { - "owner": "custom", - "pattern": [ - { - "regexp": ".", - "file": 1, - "location": 2, - "message": 3 - } - ], - "background": { - "activeOnStart": true, - "beginsPattern": "astro", // When astro starts - "endsPattern": "http://localhost:4321/" // When astro is ready - } - }, - "group": "none", - "options": { - "killOnPort": 4321 - } - }, - { - "label": "build icons", - "type": "shell", - "command": "npx nx build @semio/icons" - }, - { - "label": "kill dev", - "type": "shell", - "windows": { - // TODO: Find a reliable way to kill all dev tasks - "command": "", - "options": { - "shell": { - "executable": "powershell.exe", - "args": [ - "-Command" - ] - } - } - }, - "presentation": { - "reveal": "silent", - "panel": "new", - "close": true - }, - "problemMatcher": [] + "version": "2.0.0", + "tasks": [ + { + "label": "dev", + "type": "shell", + "command": "npx nx run-many -t dev", + "isBackground": true, + "problemMatcher": { + "owner": "custom", + "pattern": [ + { + "regexp": ".", + "file": 1, + "location": 2, + "message": 3 + } + ], + "background": { + "activeOnStart": true, + "beginsPattern": "Starting debugpy for semio engine", // When server starts + "endsPattern": "Waiting for debugger to attach to semio engine" // When server is ready } - ] + }, + "group": "none", + "options": { + "killOnPort": 5678 + } + }, + { + "label": "dev engine", + "type": "shell", + "command": "npx nx dev @semio/engine", + "isBackground": true, + "problemMatcher": { + "owner": "custom", + "pattern": [ + { + "regexp": ".", + "file": 1, + "location": 2, + "message": 3 + } + ], + "background": { + "activeOnStart": true, + "beginsPattern": "Starting debugpy for semio engine", // When server starts + "endsPattern": "Waiting for debugger to attach to semio engine" // When server is ready + } + }, + "group": "none", + "options": { + "killOnPort": 5678 + } + }, + { + "label": "dev js", + "type": "shell", + "isBackground": true, + "command": "npx nx dev @semio/js", + "problemMatcher": { + "owner": "custom", + "pattern": [ + { + "regexp": ".", + "file": 1, + "location": 2, + "message": 3 + } + ], + "background": { + "activeOnStart": true, + "beginsPattern": "@storybook/core", // When storybook starts + "endsPattern": "http://localhost:6006/" // When sotrybook is ready + } + }, + "group": "none", + "options": { + "killOnPort": 6006 + } + }, + { + "label": "dev play", + "type": "shell", + "isBackground": true, + "command": "npx nx dev @semio/play", + "problemMatcher": { + "owner": "custom", + "pattern": [ + { + "regexp": ".", + "file": 1, + "location": 2, + "message": 3 + } + ], + "background": { + "activeOnStart": true, + "beginsPattern": "VITE", // When vite starts + "endsPattern": "http://localhost:5173/" // When vite is ready + } + }, + "group": "none", + "options": { + "killOnPort": 5173 + } + }, + { + "label": "dev docs", + "type": "shell", + "isBackground": true, + "command": "npx nx dev @semio/docs", + "problemMatcher": { + "owner": "custom", + "pattern": [ + { + "regexp": ".", + "file": 1, + "location": 2, + "message": 3 + } + ], + "background": { + "activeOnStart": true, + "beginsPattern": "astro", // When astro starts + "endsPattern": "http://localhost:4321/" // When astro is ready + } + }, + "group": "none", + "options": { + "killOnPort": 4321 + } + }, + { + "label": "build icons", + "type": "shell", + "command": "npx nx build @semio/icons" + }, + { + "label": "kill dev", + "type": "shell", + "windows": { + // TODO: Find a reliable way to kill all dev tasks + "command": "", + "options": { + "shell": { + "executable": "powershell.exe", + "args": [ + "-Command" + ] + } + } + }, + "presentation": { + "panel": "new", + "close": true + }, + "problemMatcher": [] + } + ] } \ No newline at end of file diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 000000000..5f7a235a0 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,30 @@ +cff-version: 1.2.0 +title: "semio" +message: "You can cite semio like this:" +type: software +authors: + - family-names: "Saluz" + given-names: "Ueli" + email: "ueli@semio-tech.com" + affiliation: "Leibniz University Hannover" + orcid: "https://orcid.org/0009-0007-1089-9792" + - family-names: "Sarakbi" + given-names: "Kinan" + - family-names: "Hödtke" + given-names: "Christian" + - family-names: "Kaatz" + given-names: "Jonathan" +version: "r25.07-1" +doi: 10.5281/zenodo.8419156 +identifiers: + - description: This references semio (all versions) in general. + type: doi + value: 10.5281/zenodo.8419156 + - description: This references semio (version r25.07-1) in particular. + type: doi + value: 10.5281/zenodo.15800140 + - description: This references semio (version r24.12-1) in particular. + type: doi + value: 10.5281/zenodo.8419156 +date-released: 2025-08-10 +url: "https://github.com/usalu/semio" diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..39fc1faf4 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,187 @@ +# Project + +An ecosystem for designing kit-of-parts architecture together. + +# File Structure + +├── .claude +│ └── settings.json +├── .cursor +│ ├── rules +│ │ ├── js-core.mdc # js/core/**/_._ +│ │ ├── js.mdc # js/**/_._ +│ │ └── repo.mdc # \*_/_.\* +├── .github +│ ├── chatmodes +│ └── workflows +├── .vscode +├── antlr +├── assets +│ ├── badges +│ ├── contributors +│ ├── cursors +│ ├── fonts +│ ├── grasshopper +│ ├── icons +│ ├── images +│ ├── lists +│ ├── logo +│ ├── models +│ └── semio +├── engineering +│ ├── dataarchitecture.pu # blueprint for sql schemas +│ ├── interfacearchitecture.txt # blueprint for json-based (rest api, graphql api, copy&paste) schemas +│ └── softwarearchitecture.txt # blueprint for object-oriented code +├── examples +│ ├── geometry +│ ├── hello-semio +│ ├── metabolism # main example with all features +│ ├── starters +│ ├── urban-patterns +│ └── voxels +├── graphql +├── js +│ ├── ai +│ ├── core # all shared js code (ui, domain logic, configs, …) +│ │ ├── components +│ │ │ ├── ui +│ │ │ │ ├── sketchpad +│ │ │ │ │ │ ├── Chat.tsx +│ │ │ │ │ │ ├── Commands.tsx +│ │ │ │ │ │ ├── Console.tsx +│ │ │ │ │ │ ├── DesignEditor.tsx +│ │ │ │ │ │ ├── Diagram.tsx +│ │ │ │ │ │ ├── Model.tsx +│ │ │ │ │ │ ├── Navbar.tsx +│ │ │ │ │ │ ├── Workbench.tsx +│ │ │ │ │ │ ├── Sketchpad.stories.tsx +│ │ │ │ │ │ ├── Sketchpad.tsx +│ │ │ │ │ │ ├── TypeEditor.tsx +│ │ │ │ │ │ └── Workbench.tsx +│ │ │ │ │ ├── Accordion.tsx +│ │ │ │ │ ├── Avatar.tsx +│ │ │ │ │ ├── Breadcrumb.tsx +│ │ │ │ │ ├── Button.tsx +│ │ │ │ │ ├── Collapsible.tsx +│ │ │ │ │ ├── Combobox.tsx +│ │ │ │ │ ├── Dialog.tsx +│ │ │ │ │ ├── File.tsx +│ │ │ │ │ ├── HoverCard.tsx +│ │ │ │ │ ├── Icons.tsx +│ │ │ │ │ ├── Input.tsx +│ │ │ │ │ ├── Navbar.tsx +│ │ │ │ │ ├── Popover.tsx +│ │ │ │ │ ├── Resizable.tsx +│ │ │ │ │ ├── ScrollArea.tsx +│ │ │ │ │ ├── Select.tsx +│ │ │ │ │ ├── Slider.tsx +│ │ │ │ │ ├── Stepper.tsx +│ │ │ │ │ ├── Tabs.tsx +│ │ │ │ │ ├── Textarea.tsx +│ │ │ │ │ ├── Toggle.tsx +│ │ │ │ │ ├── ToggleGroup.tsx +│ │ │ │ │ ├── Tooltip.tsx +│ │ │ │ │ └── Tree.tsx +│ │ ├── lib +│ │ │ └── utils.ts +│ │ ├── semio.ts # all domain logic +│ │ ├── store.ts # react hooks for state (uses yjs) +│ │ └── package.json +│ ├── docs +│ ├── play +│ ├── playground +│ └── sketchpad +├── jsonschema +├── liveblocks +├── meta +├── net +│ ├── Semio +│ │ ├── Semio.cs +│ │ ├── UserObjects +│ │ │ ├── github +│ │ │ ├── gitlab +│ │ │ ├── monoceros +│ │ │ ├── semio +│ │ │ └── wasp +│ ├── Semio.Grasshopper +│ │ └── Semio.Grasshopper.cs +│ ├── Semio.Grasshopper.Tests +│ └── Semio.Tests +├── rb +├── rdf +├── scripts +├── sqlite +├── yak +├── .gitignore +├── .gitmodules +├── .prettierignore +├── .prettierrc.json +├── CLAUDE.md +├── nx.json # Nx targets and plugin configs +├── package-lock.json # All javascript dependencies +├── package.json # Monorepo and workspace setup +├── powershell.ps1 # General Powershell utility +└── README.md + +# Guidelines + +- Toolfriendly over intuitive. +- Almost everything is in a single file if possible. +- Folders are avoided if possible. +- No need to ask in between. Be opionionated and just go for it. Try to do as much as you can. +- No need to delete files, you can tell me when once you are 100% done with everything and I will do it manually. +- You are allowed to change everything (names, apis, creating/modifying/deleting fields, props, …) and don't have to worry about breaking compatiblity. Choose the most elegant approach even if it requires changing more than necessary. +- Don't create additional example files and implement it directly in the dependent parts. +- Don't remove code that is commented out. +- README.md files are for developers which are GFM. +- Assume all dev servers, debugging and testing processes are running. No need to ask to start them. Don't ask to run commands for building, testing, linting, etc if you are not inspecting the output yourself. +- Don't add comments to the code. +- Don't create tests unless you are explicitly asked to. +- Always use inline syntax if possible. +- If a variable is only used once, use it inline unless the line of code exceeds the screen. +- Don't add extra new lines inside of code. + +# Styling + +- No rounded corners unless a circle. +- Never use shadows. +- All colors are explicitly defined as variables and should never be hardcoded. + +## sketchpad + +- The ui consists of a navbar and edgeless content. Everything else is displayed as HUD with floating panels that show different colors. + +# Glossary + +## Nouns + +- Kit: A collection of types and designs. Can be either static (a special .zip file) or dynamic (bound to a runtime). +- Design: An undirected graph of pieces (nodes) and connections (edges). +- Type: A reusable component with different representations and ports. +- Piece: An instance of either a type or a design. +- Port: A conceptual connection point with an outwards direction. +- Connection: A 3D-Link between two pieces with translation parameters (gap, shift, rise) and rotation parameters (rotation, turn, tilt). +- Representation: A tagged url to a resource with an optional description. +- Attribute: Metadata with a name, an optional value, an optional unit and an optional definition (url or text). +- Tag: A kebab-cased name. +- Plane: A location (origin) and orientation (x-axis, y-axis and derived z-axis) in 3D space. +- Url: Either relative (to the root of the .zip file) or remote (http, https, ftp, …) string. +- Cluster: A group of connected pieces. +- Hierarchy: The length of the shortest path to the next fixed piece. +- Vector: A vector in 3D space. +- Point: A point in 3D space. + +## Adjectives + +- A `fixed` piece is a piece with a plane. +- A `linked` piece is a piece that is not fixed and is connected with a connection. +- A `connected` piece that is not `fixed` and is connected to at least one other piece. +- A `flat` design has no connections and all pieces are fixed. +- A `mandatory` port is a port that must be connected in a design. +- A `static` kit is a special .zip file. +- A `dynamic` kit is bound to a runtime. +- A `relative` url is relative to the root of the .zip file. +- A `remote` url is http, https, ftp, etc. +- A `default` representation has no tags. +- A `default` port family means the port is compatible with all other ports. +- A `virtual` type is an intermediate type that needs other `virtual` types to form a `physical` type. diff --git a/README.md b/README.md index 90c330364..13cbceb6e 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ -> 👀 Are you curious how we develop semio? Then you might want to check out our [Discord server](https://discord.gg/m6nnf6pQRc) 👥 -

- - - semio + + + semio
@@ -65,7 +63,7 @@ Let me walk you through 🚶 - [⭕ Piece](#-piece-) - [⚓ Port](#-port-) - [💾 Representation](#-representation-) - - [📏 Quality](#-quality-) + - [🏷️ Attribute](#-attribute-) - [🏷️ Tag](#%EF%B8%8F-tag-) - [◳ Plane](#-plane-) - [🔗 Url](#-url-) @@ -88,7 +86,7 @@ Let me walk you through 🚶 - [🟨 @semio/js](#-semiojs-) - [✏️ @semio/sketchpad](#️-semiosketchpad-) - [📚 @semio/docs](#-semiodocs-) - - [🎛️ @semio/playground](#%EF%B8%8F-semioplayground-) + - [🎛️ @semio/play](#%EF%B8%8F-semioplay-) - [🤖 @semio/assistant](#-semioassistant-) - [⚙️ @semio/engine](#️-semioengine-) - [🟪 @semio/net](#-semionet-) @@ -97,7 +95,7 @@ Let me walk you through 🚶 - [🛍️ @semio/assets](#%EF%B8%8F-semioassets-) - [🏷️ Badges](#%EF%B8%8F-badges-) - [📄 Fonts](#-fonts-) - - [👁️ Icons](#-icons-) + - [👁️ Icons](#%EF%B8%8F-icons-) 1. [🏘️ Examples](#%EF%B8%8F-examples-) - [🚀 Starter](#-starter-) - [👋 Hello semio](#-hello-semio-) @@ -185,9 +183,9 @@ A [`design`](#%EF%B8%8F-design-) is an undirected graph of [`pieces`](#-piece-) A _flat_ [`design`](#%EF%B8%8F-design-) has no [`connections`](#-connection-) and all [`pieces`](#-piece-) are _fixed_ ◳ -The [`pieces`](#-piece-) are _placed_ _hierarchically_ ([breadth-first](https://en.wikipedia.org/wiki/Breadth-first_search)) for every _cluster_ 🌿 +The [`pieces`](#-piece-) are _placed_ _hierarchically_ ([breadth-first](https://en.wikipedia.org/wiki/Breadth-first_search)) for every _component_ 🌿 -Additional [`connections`](#-connection-) which where not used in the _placement_ can be used to validate the computed [`planes`](#◳-plane-) 🛂 +Additional [`connections`](#-connection-) which where not used in the _placement_ can be used to validate the computed [`planes`](#-plane-) 🛂 ## 🏠 Type [↑](#-specs-) @@ -207,9 +205,9 @@ The _direction_ of a [`connection`](#-connection-) goes from the lower _hierarch A [`piece`](#-piece-) is an instance of either a [`type`](#-type-) or a [`design`](#%EF%B8%8F-design-) 📐 -A [`piece`](#-piece-) is either _fixed_ (with a [`plane`](#◳-plane-)) or _linked_ (with a [`connection`](#-connection-)) 📐 +A [`piece`](#-piece-) is either _fixed_ (with a [`plane`](#-plane-)) or _linked_ (with a [`connection`](#-connection-)) 📐 -A group of _connected_ [`pieces`](#-piece-) is called a _cluster_ 🌿 +A group of _connected_ [`pieces`](#-piece-) is called a _component_ 🌿 The _hierachy_ of a [`piece`](#-piece-) is the length of the shortest path to the next _fixed_ [`piece`](#-piece-) 👣 @@ -233,13 +231,13 @@ No **[`tags`](#%EF%B8%8F-tag-)** means the _default_ representation 🔑 The similarity of [`representations`](#-representation-) is determined by the [jaccard index](https://en.wikipedia.org/wiki/Jaccard_index) of their **[`tags`](#%EF%B8%8F-tag-)** 🔄 -## 📏 Quality [↑](#-specs-) +## 🏷️ Attribute [↑](#-specs-) -A [`quality`](#-quality-) is metadata with a unique **name**, an optional **value**, an optional **unit** and an optional **definition** ([`url`](#-url-) or text) 🔤 +A [`attribute`](#-attribute-) is metadata with a unique **name**, an optional **value**, an optional **unit** and an optional **definition** ([`url`](#-url-) or text) 🔤 The **name** is[kebab-cased](https://en.wikipedia.org/wiki/Kebab_case) and with `.`-separated string similar to [toml keys](https://toml.io/en/v1.0.0#keys) 🔑 -No **value** is equivalent to the boolean _true_ where the **name** is the category of the quality 🔑 +No **value** is equivalent to the boolean _true_ where the **name** is the category of the attribute 🔑 The **unit** is a [unit identifier](https://en.wikipedia.org/wiki/Unit_of_measurement) 🔢 @@ -256,7 +254,7 @@ The **unit** is a [unit identifier](https://en.wikipedia.org/wiki/Unit_of_measur - `Pa` for pascal, `kPa` for kilopascal, `MPa` for megapascal - … -A list of [qualities](#-quality-) is semantically equivalent to nested dictionaries where the key is the **name** and the value is the **value** ↔️ +A list of [attributes](#-attribute-) is semantically equivalent to nested dictionaries where the key is the **name** and the value is the **value** ↔️ ## 🏷️ Tag [↑](#-specs-) @@ -264,7 +262,7 @@ A [`tag`](#%EF%B8%8F-tag-) is a [kebab-cased](https://en.wikipedia.org/wiki/Keba ## ◳ Plane [↑](#-specs-) -A [`plane`](#◳-plane-) is a location (**origin**) and orientation (**x-axis**, **y-axis** and derived z-axis) in 3D space ✈️ +A [`plane`](#-plane-) is a location (**origin**) and orientation (**x-axis**, **y-axis** and derived z-axis) in 3D space ✈️ The coordinate system is left-handed where the thumb points up into the direction of the z-axis, the index-finger forwards into the direction of the y-axis and the middle-finger points to the right into the direction of the x-axis 👈 @@ -338,7 +336,9 @@ It hides the actual complexity and makes it harder to navigate the code 🔍

📺 Inline everything that bearly fits onto the screen ✅ -The smaller the code, the easier it is to browse and show diffs 🔍 +Smaller code, less tokens and easier diffs 🔍 + +Your [ai](#-ai-) bill will be lower and the completions will resolve faster 🚀 If you are not sure what the code does, you can ask [ai](#-ai-) 💬 @@ -347,7 +347,9 @@ If you are not sure what the code does, you can ask [ai](#-ai-) 💬
🗣️ Don't use comments or if you must, only tag code at the end of the line ❌ -The smaller the code, the easier it is to browse and show diffs 🔍 +Smaller code, less tokens and easier diffs 🔍 + +Your [ai](#-ai-) bill will be lower and the completions will resolve faster 🚀 If you are not sure what the code does, you can ask [ai](#-ai-) 💬 @@ -429,7 +431,7 @@ If you change your architecture, just design proper interfaces for something con We are past the time where we copy code for no reason 📃 -Actually repeated code can improve the quality of your copilots suggestion 🤯 +Actually repeated code can improve the attribute of your copilots suggestion 🤯 The main question is how can your application grow? @@ -585,31 +587,39 @@ Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope LocalMachine Most of our [codebase](#-principles-) is heavily optimized for AI agents 🤖 -### 🖱️ [Cursor](/.cursor) [↑](#-ai-) +### ✈️ [Copilot](.github/chatmodes) [↑](#-ai-)
📚 Resources: -- [Rules](https://docs.cursor.com/context/rules) +- [Chat modes](https://code.visualstudio.com/docs/copilot/chat/chat-modes)
-We use [Cursor](https://www.cursor.com) as general editor for typing code mostly with [Tab](https://docs.cursor.com/tab/overview) ➡️ - -For brain-heavy tasks we prepare good tickets and use [Gemini 2.5 Pro](https://gemini.google.com/gemini-2.5-pro) ⚡ +Copilot is the only request-based billing provider left and is hence much cheaper than the others 💳 -We parallely work on two tasks that are unrelated to each other in order to switch between them during waiting times ⌛ +We prepare good tickets for the agent, currently with [GPT-5](https://openai.com/gpt-5) and [Claude Sonnet 4](https://www.anthropic.com/claude/sonnet) 🚀 -### ✈️ Copilot [↑](#-ai-) +### 🖱️ [Cursor](.cursor) [↑](#-ai-)
📚 Resources: -- [Chat modes](https://code.visualstudio.com/docs/copilot/chat/chat-modes) +- [Rules](https://docs.cursor.com/context/rules)
-For monkey-tasks we use the free [Copilot](https://github.com/features/copilot) with [GPT-4.1](https://docs.github.com/en/copilot/using-github-copilot/ai-models/using-openai-gpt-41-in-github-copilot) 🚀 +We use [Cursor](https://www.cursor.com) as general editor for typing code mostly with [Tab](https://docs.cursor.com/tab/overview) ➡️ + +For tasks that require updated docs we use the agent 💬 + +### ⌨️ [Claude Code](CLAUDE.md) [↑](#-ai-) + +For tasks that require a lot of codebase context or tool usage we use [Claude Code]() 💬 + +### 🌐 Browser [↑](#-ai-) + +For simple tasks that only affect one file (sorting, formatting, explaining, …) we use the free [ChatGPT](https://chatgpt.com), [Gemini](https://gemini.google.com) or [Groq](https://console.groq.com), … in the browser to not waste precious tokens 🐒 ## 🔄 CI/CD [↑](#-development-) @@ -843,7 +853,7 @@ Mostly a [Large Language Model](https://en.wikipedia.org/wiki/Large_language_mod
-## 🎛️ [@semio/playground](https://playground.semio-tech.com) [↑](#-components-) +## 🎛️ [@semio/play](https://play.semio-tech.com) [↑](#-components-) A playground for [sketchpad](#%EF%B8%8F-sketchpad-) 🎮 @@ -1107,8 +1117,26 @@ Each badge is created with [shields.io](https://shields.io) with style `flat-squ ![Palette](/assets/lists/palette.png) +| Name | Hex | RGB | HSL | HSV (or HSB) | CMYK | Color | +| --------- | ------- | ------------- | ---------------- | ---------------- | -------------- | ---------------- | +| Primary | #FF344F | 255, 52, 79 | 352, 100, 60.2 | 352, 79.6, 100 | 0, 80, 69, 0 | Folly | +| Secondary | #00A69D | 0, 166, 157 | 176.7, 100, 32.5 | 176.7, 100, 65.1 | 100, 0, 5, 35 | Persian green | +| Tertiary | #FA9500 | 250, 149, 0 | 34.8, 100, 49 | 35.76, 1, 0.49 | 0, 40, 100, 2 | Princeton orange | +| Dark | #000117 | 0, 1, 23 | 237.4, 100, 4.5 | 237.4, 100, 9 | 100, 96, 0, 91 | Rich black | +| Light | #F7F3E3 | 247, 243, 227 | 48, 55.6, 92.9 | 48, 8.1, 96.9 | 0, 2, 8, 3 | Cosmic latte | +| Gray | #7B827D | 123, 130, 125 | 137.1, 2.8, 49.6 | 137.1, 5.4, 51 | 5, 0, 4, 49 | Battleshiip gray | + + + ### 🥇 Primary [↑](#-colors-) +Use the primary color for the most important elements of your design 🏆 + +We use it e.g. for: + +- Highlighting interactive elements 🖱️ +- Background for important elements 🟥 + ### 🥈 Secondary [↑](#-colors-) ### 🥉 Tertiary [↑](#-colors-) @@ -1117,7 +1145,7 @@ Each badge is created with [shields.io](https://shields.io) with style `flat-squ ### ⚪ Light [↑](#-colors-) -### 🩶 Grey [↑](#-colors-) +### 🩶 Gray [↑](#-colors-) Are you curious how a 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 and 11 colored gradient can come together for an invertible theme in a semantically meaningfull way? Well, here is how you achieve it with 33 colors 🤯 @@ -1193,7 +1221,7 @@ If you have any security vulnerabilities or concerns, please contact [us over em ✏️ ⚙️ 🤖 - 🎛️ + 🎛️
📚 🛍️ diff --git a/antlr/expression.g4 b/antlr/expression.g4 new file mode 100644 index 000000000..5a4e99b64 --- /dev/null +++ b/antlr/expression.g4 @@ -0,0 +1,30 @@ +grammar Expression; + +expr + : atom + | operation + ; + +operation + : IDENTIFIER LPAREN expr* RPAREN + ; + +atom + : NUMBER + | IDENTIFIER + ; + +NUMBER + : [0-9]+ ('.' [0-9]+)? ([eE] [+-]? [0-9]+)? + ; + +IDENTIFIER + : [a-zA-Z_][a-zA-Z0-9._-]* + ; + +LPAREN : '(' ; +RPAREN : ')' ; + +WS + : [ \t\r\n]+ -> skip + ; diff --git a/assets/badges/latest-research.shields b/assets/badges/latest-research.shields index eba838c39..d406851c3 100644 --- a/assets/badges/latest-research.shields +++ b/assets/badges/latest-research.shields @@ -1 +1 @@ -https://img.shields.io/badge/latest-research-persiangreen?style=flat-square&color=00a69d \ No newline at end of file +https://img.shields.io/badge/latest-research-princetonorange?style=flat-square&color=fa9500 \ No newline at end of file diff --git a/assets/badges/latest-research.svg b/assets/badges/latest-research.svg index 584545f44..57979c90c 100644 --- a/assets/badges/latest-research.svg +++ b/assets/badges/latest-research.svg @@ -1 +1 @@ -latest: researchlatestresearch \ No newline at end of file +latest: researchlatestresearch \ No newline at end of file diff --git a/assets/badges/powered-by-python.shields b/assets/badges/powered-by-python.shields index 3fd843cea..15937f577 100644 --- a/assets/badges/powered-by-python.shields +++ b/assets/badges/powered-by-python.shields @@ -1 +1 @@ -https://img.shields.io/badge/powered_by-Python-persiangreen?style=flat-square&color=00a69d \ No newline at end of file +https://img.shields.io/badge/powered_by-Python-princetonorange?style=flat-square&color=fa9500 \ No newline at end of file diff --git a/assets/badges/powered-by-python.svg b/assets/badges/powered-by-python.svg index 83e267721..9be867109 100644 --- a/assets/badges/powered-by-python.svg +++ b/assets/badges/powered-by-python.svg @@ -1 +1 @@ -powered by: Pythonpowered byPython \ No newline at end of file +powered by: Pythonpowered byPython \ No newline at end of file diff --git a/assets/badges/powered-by-typescript.shields b/assets/badges/powered-by-typescript.shields index 4d00c9965..8bf354ae4 100644 --- a/assets/badges/powered-by-typescript.shields +++ b/assets/badges/powered-by-typescript.shields @@ -1 +1 @@ -https://img.shields.io/badge/powered_by-Typescript-princetonorange?style=flat-square&color=fa9500 \ No newline at end of file +https://img.shields.io/badge/powered_by-Typescript-persiangreen?style=flat-square&color=00a69d \ No newline at end of file diff --git a/assets/badges/powered-by-typescript.svg b/assets/badges/powered-by-typescript.svg index dedd34069..aa463987e 100644 --- a/assets/badges/powered-by-typescript.svg +++ b/assets/badges/powered-by-typescript.svg @@ -1 +1 @@ -powered by: Typescriptpowered byTypescript \ No newline at end of file +powered by: Typescriptpowered byTypescript \ No newline at end of file diff --git a/assets/badges/presentation-egice25.shields b/assets/badges/presentation-egice25.shields index c3d95a978..024f1f39a 100644 --- a/assets/badges/presentation-egice25.shields +++ b/assets/badges/presentation-egice25.shields @@ -1 +1 @@ -https://img.shields.io/badge/presentation-eg--ice--25-princetonorange?style=flat-square&color=fa9500 \ No newline at end of file +https://img.shields.io/badge/presentation-eg--ice--25-persiangreen?style=flat-square&color=00a69d \ No newline at end of file diff --git a/assets/badges/presentation-egice25.svg b/assets/badges/presentation-egice25.svg index 3cb94cb3c..f9633dd5b 100644 --- a/assets/badges/presentation-egice25.svg +++ b/assets/badges/presentation-egice25.svg @@ -1 +1 @@ -presentation: eg-ice-25presentationeg-ice-25 \ No newline at end of file +presentation: eg-ice-25presentationeg-ice-25 \ No newline at end of file diff --git a/assets/badges/repo-semio.shields b/assets/badges/repo-semio.shields index d0febd39c..1ff491de1 100644 --- a/assets/badges/repo-semio.shields +++ b/assets/badges/repo-semio.shields @@ -1 +1 @@ -https://img.shields.io/badge/repo-usalu/semio-princetonorange?style=flat-square&color=fa9500 \ No newline at end of file +https://img.shields.io/badge/repo-usalu/semio-persiangreen?style=flat-square&color=00a69d \ No newline at end of file diff --git a/assets/badges/repo-semio.svg b/assets/badges/repo-semio.svg index 88d383f0d..87268e70b 100644 --- a/assets/badges/repo-semio.svg +++ b/assets/badges/repo-semio.svg @@ -1 +1 @@ -repo: usalu/semiorepousalu/semio \ No newline at end of file +repo: usalu/semiorepousalu/semio \ No newline at end of file diff --git a/assets/badges/ui-browser.shields b/assets/badges/ui-browser.shields index caec11a1a..6e61559ad 100644 --- a/assets/badges/ui-browser.shields +++ b/assets/badges/ui-browser.shields @@ -1 +1 @@ -https://img.shields.io/badge/Browser-[x]-princetonorange?style=flat-square&color=fa9500 \ No newline at end of file +https://img.shields.io/badge/Browser-[x]-persiangreen?style=flat-square&color=00a69d \ No newline at end of file diff --git a/assets/badges/ui-browser.svg b/assets/badges/ui-browser.svg index 126059465..357a7a5f3 100644 --- a/assets/badges/ui-browser.svg +++ b/assets/badges/ui-browser.svg @@ -1 +1 @@ -Browser: [x]Browser[x] \ No newline at end of file +Browser: [x]Browser[x] \ No newline at end of file diff --git a/assets/cursors/cursor.svg b/assets/cursors/cursor.svg new file mode 100644 index 000000000..8171e0068 --- /dev/null +++ b/assets/cursors/cursor.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_crosshair.svg b/assets/cursors/cursor_crosshair.svg new file mode 100644 index 000000000..8d8344430 --- /dev/null +++ b/assets/cursors/cursor_crosshair.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + diff --git a/assets/cursors/cursor_crosshair_dark.svg b/assets/cursors/cursor_crosshair_dark.svg new file mode 100644 index 000000000..310b14909 --- /dev/null +++ b/assets/cursors/cursor_crosshair_dark.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + diff --git a/assets/cursors/cursor_crosshair_dark_inkscape.svg b/assets/cursors/cursor_crosshair_dark_inkscape.svg new file mode 100644 index 000000000..8153a84cc --- /dev/null +++ b/assets/cursors/cursor_crosshair_dark_inkscape.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + diff --git a/assets/cursors/cursor_crosshair_inkscape.svg b/assets/cursors/cursor_crosshair_inkscape.svg new file mode 100644 index 000000000..87f11b982 --- /dev/null +++ b/assets/cursors/cursor_crosshair_inkscape.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + diff --git a/assets/cursors/cursor_dark.svg b/assets/cursors/cursor_dark.svg new file mode 100644 index 000000000..ab989a6fb --- /dev/null +++ b/assets/cursors/cursor_dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_dark_inkscape.svg b/assets/cursors/cursor_dark_inkscape.svg new file mode 100644 index 000000000..7b3611cf4 --- /dev/null +++ b/assets/cursors/cursor_dark_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_ew-resize.svg b/assets/cursors/cursor_ew-resize.svg new file mode 100644 index 000000000..3198653fa --- /dev/null +++ b/assets/cursors/cursor_ew-resize.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_ew-resize_dark.svg b/assets/cursors/cursor_ew-resize_dark.svg new file mode 100644 index 000000000..7f2317479 --- /dev/null +++ b/assets/cursors/cursor_ew-resize_dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_ew-resize_dark_inkscape.svg b/assets/cursors/cursor_ew-resize_dark_inkscape.svg new file mode 100644 index 000000000..f6eb87ffd --- /dev/null +++ b/assets/cursors/cursor_ew-resize_dark_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_ew-resize_inkscape.svg b/assets/cursors/cursor_ew-resize_inkscape.svg new file mode 100644 index 000000000..eb4c3b6aa --- /dev/null +++ b/assets/cursors/cursor_ew-resize_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_grab.svg b/assets/cursors/cursor_grab.svg new file mode 100644 index 000000000..d6352e3ee --- /dev/null +++ b/assets/cursors/cursor_grab.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_grab_inkscape.svg b/assets/cursors/cursor_grab_inkscape.svg new file mode 100644 index 000000000..7c38e2824 --- /dev/null +++ b/assets/cursors/cursor_grab_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_grabbing.svg b/assets/cursors/cursor_grabbing.svg new file mode 100644 index 000000000..968e2416d --- /dev/null +++ b/assets/cursors/cursor_grabbing.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_grabbing_inkscape.svg b/assets/cursors/cursor_grabbing_inkscape.svg new file mode 100644 index 000000000..e7a934ec8 --- /dev/null +++ b/assets/cursors/cursor_grabbing_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_inkscape.svg b/assets/cursors/cursor_inkscape.svg new file mode 100644 index 000000000..25885da63 --- /dev/null +++ b/assets/cursors/cursor_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_move_dark.svg b/assets/cursors/cursor_move_dark.svg new file mode 100644 index 000000000..0a0d632e6 --- /dev/null +++ b/assets/cursors/cursor_move_dark.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + diff --git a/assets/cursors/cursor_move_dark_inkscape.svg b/assets/cursors/cursor_move_dark_inkscape.svg new file mode 100644 index 000000000..c176c6654 --- /dev/null +++ b/assets/cursors/cursor_move_dark_inkscape.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + diff --git a/assets/cursors/cursor_nesw-resize_dark.svg b/assets/cursors/cursor_nesw-resize_dark.svg new file mode 100644 index 000000000..4ff64bd22 --- /dev/null +++ b/assets/cursors/cursor_nesw-resize_dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_nesw-resize_dark_inkscape.svg b/assets/cursors/cursor_nesw-resize_dark_inkscape.svg new file mode 100644 index 000000000..445c31746 --- /dev/null +++ b/assets/cursors/cursor_nesw-resize_dark_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_ns-resize_dark.svg b/assets/cursors/cursor_ns-resize_dark.svg new file mode 100644 index 000000000..f6ffef3db --- /dev/null +++ b/assets/cursors/cursor_ns-resize_dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_ns-resize_dark_inkscape.svg b/assets/cursors/cursor_ns-resize_dark_inkscape.svg new file mode 100644 index 000000000..18a2ce236 --- /dev/null +++ b/assets/cursors/cursor_ns-resize_dark_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_pointer.svg b/assets/cursors/cursor_pointer.svg new file mode 100644 index 000000000..97409bdd2 --- /dev/null +++ b/assets/cursors/cursor_pointer.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursor_pointer_inkscape.svg b/assets/cursors/cursor_pointer_inkscape.svg new file mode 100644 index 000000000..13dd7aa14 --- /dev/null +++ b/assets/cursors/cursor_pointer_inkscape.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + diff --git a/assets/cursors/cursor_pointing - Copy.svg b/assets/cursors/cursor_pointing - Copy.svg new file mode 100644 index 000000000..6760e8fad --- /dev/null +++ b/assets/cursors/cursor_pointing - Copy.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/assets/cursors/cursors.3dm b/assets/cursors/cursors.3dm new file mode 100644 index 000000000..dc14de843 Binary files /dev/null and b/assets/cursors/cursors.3dm differ diff --git a/assets/grasshopper/components.ghx b/assets/grasshopper/components.ghx index ac7aaabe4..15b27fa5b 100644 --- a/assets/grasshopper/components.ghx +++ b/assets/grasshopper/components.ghx @@ -362,7 +362,7 @@ 7F0HWBPb1o3SQRQ7omAURZEuFuwhhUAIBCmigkAIASIlGIKKWCgWFAvYRREEERsKIqKogL3ea++9F2zYxfafCRkujJMwmIn88+71fbyrc0IyWWufvfbes885mnQhLyaCHyn+Cf40I5FI6uCnZVR4TIgg0n8iXxQtEEZCQ27gMjQM/dGEXgL/niOfG8QXQS9Rkw5rw0NOdOiyFrh0wfPFzRCtDqx56cktvc+uiNFwE/EnCviToHFt6EM9QsG7BLWSXnbhR4d6xkbxoWEV6QfrSsdchaIIbjg00kPyactrf8uDH87niflBtWPLSUHt6PxgQaRADL6Fm0gYxReJBfxo6AWqYBx6a1U6Vyz5HOhLcX2PvOvb75amDp0fzRMJoqBfg2+RpOnM50dxoviSKxIoVF25EXx4vGUYNyqaH24hjhFFWIaEarmDe4LAk3wajJwufJUmjKmBXAUGDdzeeHD70k9sLr2s7skVhfAlrzQC/xz28efPvtDdjxUKI2DMj3ywG6E2CgBQ76O0oCu/fIyWOy+KzY0VxtTyLflwpkgYE/XLi9XtY8ShQhEMl+T3acKoWJEgJFQMf28zpqsXmc2PjuaLyEx+JF/EDSe7xQSGC3hktoDHj4zmk0fVmBHZVo3hwhWEw7/ZNoYfLqBE8yMEQgsxnxdqyRNG1INU2wu8gOzBDY+ZouHND4wWiGuHjELF4qjowVZWIQJxaEwg9KtWMdHglVaS92vBdLRnCwJFXJGUbuibQl9Lrd6XhH40al4XKyH01y8OfZiBuzAQWA7ZhefK54eTTcj20dFCngAYTnRzpyDYxpF/6n0VHaaIGx0dKowCJqghxQMe07OztLG17Nuvr11fSxtra2sb+Jagm/5/dkvNpR4C+qMHPpMfERge6xATHl73nR09IA4s67y/OWwDw2wsraH/mZNpMeFgqvCHRfJjxMBmzKVG48yP9RSG8SOHRYI3bQV/AuL2NKTvggCljr3UAaF86ugf0/zTKJsjrl1o8VknqB4IahJzQX59tQHQu7f+x3dwAqG5WWtJ/cH/6dRcq2dP0HX1musQQBBYEg6ZXv+4wvTdd8fMefjZqXR3cWlh2D12/dtx40byw8EkixRzBWAuwY4Jeic0p9TbnhwF/QY5WCgi82KixcIIcqQQGAGZGxlEFvMni8kTARz86BZOkdFibiSPz4wR1CLj+ix64rVBM1lLhlxslTW3ZR7KrWi6CnhhdS+TNDmSO6hxwRIHouPBEwnDw9254Dp0EbaPmjFhjIjH/8W1aHoBf+EJ7g9+39Y84CrFohiJByTzhNFibXuxWCQIjAHfpq66qFPBewVJLhlD/6Yw6aT4TTRgFOAny17bBThMQSSbH1zv83RqLrvDnqvWH9Zc9xRG1b2q5iaYKJS8riv4V4obkz7+4SZaKwki9WVEA74rmjAcfFNYesZW//ypQxdxJzlFBgEnWGs4zbSgi25ccWidSy5gJgjCAd21l1p4RPHBZA6nCYP++V0gkmIRnxvxj/x4i7hRtb8jtTvY0f1id9VnuloHdDvJWsW5G3I4ZBhDBcxoTFNEFVLi+iapIf0AVJ1ENbURxs373euVwFg1n7NjaWXWzl8/4RdLa+4Z+6utqdfYk4Q68MP7e1bRi35jXMpum3oxb2pGopkb9HsIW2ouw5ZImcCG9KjAg4GfLPv6ZiA+u4V2xGAIVQp0cwJM8ByT5D6rctycN24//uSmoIzVlBO8XQT4wmJ+JHSPZP5kEEdF86MxzvF4KpjjfwFuDJQ1x3ftp9Ijd/5FjDmuQgDTCzTMe7XOSMCaWdnrEGP4SFJTmp66IBLEh3yMxkYaSyeR3gJDi6IqydhYfcfSIz3fEsPYVGUZW9mG+cM3ft/OKq4Y6nl8b3Sbegyru8ZEgAAVu2xYSV8JrAuofziUyUGBgDCYHBwuBOxHhpCjhMCBkCMlb4xudCNJ9EuPoj2Zq/rMLrTQypiIdku/WF1LJ4l1kH3uJ2614o5rUHNWfO1gEfOQyt55p6Rb9tEvfgpqjrU9A/w/hURaiqI5Z2fSGA9VHeylXKgRYOJ7vg9w6Fj63mlf3qIOrPvTHzWp5vCDgyFDmsiHrAh8Gy6wd6yaYw/cwHvAiZGyNMcg1Z5uN/wDlRBuQJ0AppfcesrHvT+FlNT7288cIk9935Smpw+S2sjoCEG0pPIRyueKyUH8CPAtsJrfMGB+OuDHUlnm51cwjP5aW4dOCPPTIID56UzYlcMcn0srudWL4305d35Tml97nlAIsA8hQxW5kNhG2h6FTqJYAdvrrizb88mg0IXBVsSwPU0C2N6H8l2uhpQE9rYTc14XaV12aErb6wYVcyMFPFAI5k+IEURBjwJ+zw4tgQ1CMjwe2OFuZdhh37mWdKGtPTHsUIsAdrhi5Cz69LArnOVDbgbkthmV3ZR22LNeSTEkXBgILHISVxRRk0yAWoQYEIHVFnsCn+gBbHGOsnzi3E096a0cPYhhi9oEygqtW6T4xnatoC87eTbQa+GgDExZoRF4ril5f0aN43ITAYBrcsQw79CGs8SDB8dO+tFuI6vM60X4kRlxRopWJtfSSPELgel1kZhffcs5GnqEtuLwEpqUGx0CcTO5bc6TCRQTh6Sx/ed75D2/h4mbTrXcBAcLeAJ+JC+W7MDliYWiBmm56jCZfMEh32VLd9+825a7byhISzyghRQGflRRaHlaWE4L3RID09KCQLRU0yYUH/Pbytywzn65aPDXEky0WMC0MGtcrbfU1brBrpbsExZC4/TlY5tBe++Ehk//qG2/RnXjwte9p5vhMYPWAJqmo1B1+dEt2s9562CqdAlEFX1Nl6CIq9VOG22O2vSa3/IpNu9Gk6YHv+nd1Dt7vNhynsfe283jku93w1l4cHMF8NIZhRt3myM0y+SbMDctCcTNobGTeTeyBOxNj0KdZ6zscRGbd6vlptHerVL/a+mqKROo+8y7t7u3q60ID+9WJMO7UdPKafGTdsO0tCIQLesqHgTlz1B3mRum2t9fhc/A5t1gWvDxbrdoXCfxshmUPR8fJ5bMOcrCgar4U4CmaShUVX+6RaveeRamSo9AVJ0PKfxZmfvDJWeVfZ7mJbInJqq6M6APAy5NLIj9XQ+XUBljHFc1krFfi+a7Xvyhg6L8ZAB+WoP0wRiFn3nhR2mVbdrRpfy0JhA/9id84t08y1hL3P0fZD05ZYOJH5u6/OAznVJS1z62+FbhvL5ZTv4tz7PD8JhOoPoan4hC14YPd2gjB7WE6Wojq+Niueqerm+X3Kbljs67vOlH/+WYOy7UAVuCkEhFey6uGJ+wvr/IzHHv+UOHen163wbtM37tuqBHNgi2rZFT5ZCMto6591ghU0zv3cSj64Jsj9518eb9FtpiTi78BKwtgeaGWd64zx0G2Dgmtk9jznVgUzHNDfBOYr6IHy0m+/Rs2OxXp1hNWWzUg5kz+tHVkGMmKxVkgjwGPItMBSwkozDhwPFhvBqWC/e/tCMQE1pxJoK1D5iURbF536fzbIoxMdGeLQjmk2mxvHDw/6AfTSIeDVPyasvL1/ZbNrH2inWnB1zY+FxBSu6yASWegI6jKJRQfnIY1y7OgClpL4sS1xKHv0+QDtPix3YaInjOal2/cVlSGIoCvZdQtQ3hdeAnzmjUdHYBBSZQzxVLSr0R9d5F3VEQFPRPq3QzVFqaaXQtOUDv6Zw9avrVy6vIB+Td1i/0qNofWkHFCqIDAJFSQSIlAhCtqfVBJJ11BKMr7XXduCLw/mD2gZZwLvzlIbq0nSKjYup3ekKfpCG57BQEMz8m6PjCZuVa9NJXHV10zdqehcebyRjX4cSIke8LvVaz5rrsN665H8ntQi+RN30MHQQiYLqgczpCUtCtzxIqK+lezn8/39mNkecy4mUPS1efeqw0s/+FCHAJOSeaIeYEsi9DUcFgAsLiy0mkAPtf5wQpGRrVs68DUrMGQDLy4INScVCjUPr2VhA1/3gybduNoMDt5i0m1EeJ+itK1AZR+m5TcZy5IpM5PzIhoc1fDy7jgdJKe3koPbWX2mCtLanLgUnfnR8NgIF8LwaArFLYs/b6XXJc8uC2vjnZ/Xx9n1vzVr+i5I72LAC93o8RhgonqbEkAxjIyLnvyJKAJHWgHQikaTcqp6ul8Es4O7lZK9vY3ZuFrdepjqb5YOh1OqTCqRrjl+S6/ruBrRebroZDWF3Rh47e6zRPv5C23s8CDqs7EoiLDYmD7j5qmUKduzX/88Q1i9pg4qJjHS7qtKA1TApyZilIih4UYVDA5LiP1vSczWH0tSqAJ4g+gUh5lp0+YaBPC5cFLZ46O5s4lmMjhVb3mWEjwr69R99e30OZQy2xP3Go888xPAVJyRoOSOkHCHmMQsrkwVTGoCu+cNjXiUCkPBLFeK+uLnBN1I8LGcn9moy1IlqHFKa3G1wbaJgW7trFVzOLfJnLukVOzJz8ma0gLW+6MUjxrYAD64BSF/iRa8KIVmkDOzADAtHSde6S9/rhfTklMY8PUr/O+4otQQIU1K2ribFRUn3Za59fH3fXmbOe2/VJGF6Ng6ZQugFKbqPMlI/TS2n0H8YwJZ1lUbL86YcMC6/57D0nOQeYP7O61/v+2ozJUSAjhxr56tMC90Si0dKBAXVJcMV80DYBLXeQvkGd96qFd7IVtMQOU8ZEOe6z5ZO1CmVNnkvG4inDUmXd5y9c1RnDGj4+BbiSAa7XAa53keEjqRmdVGFM/zVngtvFUXKmZig508rv8aXr0kY77crb5Ep5ZHbjT+RExr0m96rpYSHHRPNBT4uQzIfJ6lVDRi9U9C/ZdziUUZHnmubx6Pb1lYEL6sf8k3+NZic3GPMjJ56iMf8zEGBBpEF6XoEkreIFGDWmNybmb/dPzP+PEaOCc5fhG8S5Npm6wm3AiIU3nU82Vbwfr02vgSAZDYKsFhK7lfqDLgRy0aJe/XX3bKlwiT8Sqa9SMFoTk4vugHDRWGUTSaaiProdvcZHv0Lx0W+TjOkXH9VyYkggTl4bcp8ldNnimuS7YNeCIvcnmDghe9a2RzJq2yMbFdTQppC+l5WN4qzkWC1My06LVZQdqP6uA36GoQQ190/8TTs+sT387NCIQOxQ+1+7GEvmOC+90/GEGm3UF2ydEWjsNCIPGD2w061+l+9y0oQv3N6tzW6Dx7ORm1R45WN9bhyzjtB8S9/AeUBXAnETN2dgRj8LvsO6UL1jztSeM/7QzEFOWEXXbumBLA34NtSZs75HB4YwvgPs18gEYufRpwc5w7Y/4Swv6tD1AqXF/j8yc5DTVdFUzRJwI5YxcyqO2zK2qi+CZ043AnFjc3RSev/b09gLOhzlLjrY6gi2jghqjCA8CPqA30+lD934a9zew/1o+c3unrxxfsQYRctOYO5U6EIN/rLmDkUPnjvdCcTPlXVO6k4xvqx5gqGLut35PBqbZ0PnpxGzJzSvwCF2L9ch6+aKrR/W0RSdPRXQ7NGrXf2ImD0Ftowxunbw7DGWxc5S48tZ+ussqFuKxle1P+bTsx4UmvZBQYLGPXBsX++BI1f6+5gS52j7l4K8lwcd0pP66oTlqPqh38ovvKjYm2F9xhg1CCD2xl7GM8aAIWDUjfo/+YyxI+IZI0wMKhGc9gfUY7k5Lqmh3R8vXSsag8PTReSMU9D0UyEiSVQZz830B4PR3tRGPF3URz5dlIvPqwcb+3SOnUjL252r9m17qjsOzxWRao4HPm5y8ZlMbUyNoc0/NQa50CBL7E1VYXAbKjUQ1CeKV6FRN9g39iCAb7xamvHhnokeZ9ZpVub1Vbp5+PvGii5A66HFzKi+scCIQaK0Rqkl/tt849LF3bf+df4+Kztzs/Gx5qs1cPCNyGhR0W4kQCQFlNDQ536oIaC5JV1pvrEvuZtv974TmYsXeSVENlv6BgffiMxD8cCntVx82tKV4RuRz7mayjdmdZUaCKpv7E2WwCP1jT0JFNWr3aSZCPs4UkrubD4W/eTpR0xRvR5Dus0V5r1lIrrEv1TjpzoVWj1XU99vtkxBc6TYAi0qAD53A1pn7e3+jK0Rh2GlMiFY8+DNy5oDr1c5uMZf0dLLVItap7TmwQAo3oEARBUvNyiwP/+/Gdj/RvOgee7CkTt7b6Pu/ZIccriD6mocJAw59RStdkN0bpYVvmpC4WsZVcnNg8NK3L+Yt93jtOStia7PhGkXcBAyE2eqQHO4p+vK6Cq7uMBhU/FA6bxclB5Tldc8uJN89EIC6Tpr75oUh2dpL440lZxRhkqNBVXOjkOj52EH2otAcnaL/I6n1mOs6x4nS2+9hIldMMmZfp2GNVjZsBWnkHQqapxQcxTUD/8CRdYGD6EyvjGvw6z0JkAC5rfAm6/rH0Jf5xase0LD9BH+CVgB1AAfIEvDsqAG+DX/mxrWqARsxEPGk720K7ScTwO635xQoYaDeiG7EBU0/bMQkaGy/PJoqKk7WXnFqbULJrTcLY5lz+qT+tPi+1IrHHQL6YnwwGeNXHwKlFKcQi77aSrFSnWSGgiqYulD7e5rYN9oSiDFOnjqmebpG5nMFObEQodhV7B183ZxqbPncKOTsbl6Xdi29v0ZOwLKor7u0h2hoGkWdAfY7wTMtEN5pEIe3Ysx/+RxmJk+BGKmZH4ro4GzMlj7Jvd5vkPHDdsS7Y7SZdmNJmVET6O0dSFU57VPHLyPrujupmgo0UMSyaJ3JnkO6c2YP68aJsWMAKGE8WpXTQ9jD1Zu729pU36eysE/lDhrDhDbKCuUkDw3vPhfKEH6mDN0+pjv7yk7Bm6Yt2ja9fs4hBJIF6hogwRE5FZZUjnZAoxWKC+UeLJhZDw18oTjxjVWUw/uObwEh1AC6YjwwOeiXHyeKiWUQBYBmyqUKLCSGghqKGFnLYFH6hvNCSRYfu+rys4fnUZdWjiC9dzGE1vXpn7tnmONVazXObovDI9MYpWvyfhiPHfveEXDiA5QnwFg5TOKYt3OMGCY2DeHuzUtCMSKa9gIm5hDMc5zJg+yHVedxcTGSu1eSY1lRajRnfoxpgdr6eYzK/KsBy1RtF8GYqU1COw+orDimAVYOdsZZsWSQKxcGjvz6DLKZGqmy4hLyUPjCrGF3fD+LgLxb0R4vSzM1h8y2c1e0vPlxaRPBiMVZCYAYqaPjE2sAhMMGLfL+sHMWBEgwkvwMS963m0CI/dy/JMn7icd8I/w3MAzPMliUCjCi0f6fUo3iaX/WiyCpE8VvVikgkOxCB5vTpRikqqd79rL/Ze4JhVeepw/tQ8XhwgQqVwKTo2ortLkBzXC+QyNVisvAvRNUXs09pYKexvF/9DpqI1eOESASA3BAx/oWDHZ+LSm1cGneUPm4xkqEGGFx3mpYdZuRrZDdtyMj+Ne7WlVHx7ar/DQGoQH6czxgKezXHh60pQRICNrAE0VIFt3l84fKECOQjrK3dBoa1harAkk+nu/k42Cs55Q06e63uyVkLENk+gbOwgAtGTEtsl0yX7voMncOxSL9h8PXz/DZmY4u/T4l3VDqoZ/UHQ/q4egE+UhIIiJov2Hct/Q9y36DGcwNgTrf+i7efWCGZt7MeYtNXsffqy7l9L6H/RIjJpFwKgFH1JzMKpC+598dvQb/Q/9Ku73Mdl6iTmbZaySP0rVHQfRR85GRdcsQXRCa+VRvfZuaPStsvsfpnwPM558v5i6sXzsqeaDZlfjIP0j5ixL+JSayEqe3Hv60G27A/BASYUmDyVdmvL6H1J3211b/86WUWRz6en9F7uXNpXCvWkuNRbUEtBkFQlIUgfal0AKh7SWP3IkAPIcAkWXhlZCJ0TJOBKg/dX39KP9a5ft2hKIG+Q2aErZ2Aq5exYeh/httEff2GrUIhqj76qf8B5K/QjEBbKrjAhcnIWaXu9S0bkosxrAmDrmPRz09SdY0Hd4zdEf804cY80unj83M7PdWKUFfVnX6HKCvvhbYPS/oA9mhfN9eblrkRdjbYX5Re2iVU9wCPq2T5sxJHyLJaegKnbW1ftGgYquS4DolBn0vblO/wNB38Ce0/Kf/kyjLHgfLhYzj8XhEPQ9G92NOYYy3GX559kFX34+9MUDJZlBnwQlZQZ9yOS3qYK+gDt0OUFf1F0JSFIHOoBAYoacU5jEzFCxgsZgh5u5hfxU2uZJZ1mshLDlim4LeEBa0LBAifmuTj1Nf0GtLWgMJBA1yIms7GOgkMdOKVpnOgZo0ZLxjCmYd4auHt8WnjF2BKKFu4TX8+FIMnvfrpCXL0u/92lMIRBxwlAj58314zfLKqbtoy8t/+ZunZn2TNFc6REgqAcgxwGFoAXTquhHzS1hggYRLCb0+hRlZrB2uGNmUtudWZ82OSotJoyCqh7QfhDoOxxApYJ+/xUCpazY3Rx+eVxeJ9fsiMsX+Q98PHGICZGzUdF1/BCdZFnRjn4zyWNzJceE6+N9dlX6/u2cPubHkflVZ5rhEBPG6JH2fDU54rrPwjnZU3D/LzxQ6icXpeFKjAkzKt+vMjE85Tzv9bkhuWkms5sqJnRTkRoL+p4H0GhtF8VgAikc0lr+yOl5yCP7FE1bKqU7kKGdnndn+wf6NgMmzM0Qgombul7EOqZrGmNjC5Kd6/cd45QmbgFQdidT3Ci3weh/4gazUr40+lZI0mfXZW2OPnjrt2oFDuI2QUfUcoeat8s6o602V7psUnSJYBZEp0xxK7hB/wPippc2cs3789mu2w/+WD9x6akoHMTtyKoeglM/XR0KXn+4muJ0bDseKPWTi5IyxQ0Z5DeVuJGhkoZMcbO+JwFJ6kCHEkjckHMKW8FDscTNR9yzj8PBNowlSSr+rQV75imqbVDBoycNveAxpuw03U/dCqZmGIGoQU5kZZ8MizyJVlFaoILHEBkFD6shZ+mvghgwLcMJRMunCS8GtLt3wnWP/RH+fr4atpNhyaOgEyvDJX5O0v9EdgdiMZEvwsyO9qg3Pwrjz7Gz6R+veRZ/6YTHub1u4McMhZ0o5xO0kLVjYXZGECwg7Ll6UtEMLxvG7qDEqiH69yOVFhDe3SKt6aGvc9sORrv+V+2QspLxvl3VljPNnTZ11cnLnfr4LxwCQtX3GbmnBrpwylY9GJt9ra+iywDIW6XdEqihjnU+GG2v7IDQZ1pg7zvm6yjJjz7ddSq6tAqHgDBy6UgnjkcfRt4DrnfsFFIyHih1lYuSqRIDwviRa68U3zZ13VO4Uf3TxyexTRUQZhVKjQU1ICzYIQFJ6kApBJK3LzsK73852MppVZ/c2aNjP/XCVu3wFHEjoyMEkqM/avSNLYyOxhwRZnEHzRqwdSZ1ZnFlp16ZnRTdYo+cCdB/CnxyLxRx01m6ib6P8w1+BGZPIG6Q/g4TN10koUedyKNRzAyYIH540WWoa9mFKPe52XtfKRp2LAfMtKSh77g+YUAW3WGhPjxrqP8fT2JSsbGYjCkIyTm5MSqoKJVeoq7ybH5Z74tKPIYpIFN6aPxmtGOYAtaDURsaIY9hIss7hgkwgX4GU8zQ1dYnSddcEwtXcpccz5iHwxlMGe2y33HXp7OSbu7ee8x6cr6iRZVMacqKegZTapaEMeWcwYSMBppMP/OkEKCewVSwUQKB1BPQCOSjkZbyh9JDZFaq6MPwZHpNaoiWHi47sZjuatwfZodOgBWxeZnrWc2vTOTkhoSEOVaO66OE/auLpR1R6Nun7QGjav+buWCjVrwGdy4Ux3Le2u9hFDN7Fw2l4ZAFIiNWRU1/F71maTNqfqNXAkY/Km/F6/lezYa3jKOycp6tup1j+aEYh/wPmTHhgY8aTR4+rZSypBPZJ9dUyhW/V2ogqJlf6j4JPFLfyJDlG9N33x0z5+Fnp9LdxaWFYffqb8at5saN5IfXd4yachxjb3tyFPQbEvPixUSLhRHkSCH4GiCcBUETf7K4JohCVyzb9FVuQ1uPYRS/fNHWtM2T+yi38gusJDRUeSIgmu6QiEEXIcrhP7IQ1/SK5os8wf3V+pKJdYQwFBLCIMmzBQQ1ajKooYwA4BvS4cRP24UrChFEsvnB9T5Vp+ayuyAktN51rZrrnsKoulfr87s9dgT9kKEhvZUEFzeRMIovEgtq7koDviuaMBx8X+gSdLbD2OqfP3XoIu4kp8gg0AQQXTtPtaCLbkDT6lySVCdBAZ//j555RPF5Am44TRj0z+8C+ReL+NyI2n+reou4Uf94gBrrcyCA9U0PmuMXWnnIfoH/ki4aZf1JTWl92pOEorDoKC4gCaPBxXvQSfGzaDV7ICnF4GYXetBN9syiEcLgmAQK1FN7DbQoCLjOSbrkE5Bsf0iMrdBlD0Co+2zNhx8cbEmOOLjDCvw0XE4JnD3yiMoioUuxufc0caqNogt1744GAnOYWlNSQWpxsvc4xqZp1+BClyOBuNk58N343Epn5rrDKe/sthoYYHv0KeGGJowAfkhM9oE4cQMfIIzEsKfANv7NcTuYLkXDs562qfy+StHlZRAt1dSa+jCSlsO24xjpUzXgCMGJQLT0WXF67NObya45tvzFq71UwzDRousUyRNG8LFu7bTiaweLmIdU9s47Jd2yj37xw2OG6AMaFqKs9Dvf3Yfx9EB3mAoWgagYu+2RecaTdfTyLvqvDuxde5oYh41I2LCloR82cj7Rh/Fx7zCYDWcCsTHXWMXS1Hyi484P383odyzfEWp/WwkpLjT0/W3PZ/sy3hd7w6SwCUTKwSvbOszXuOZUvmxUq5ykp9j2cDQA2g592kQ+2SFcCAJaiahAYtIwL3F2MS9zR32gbxLlm140NWqFBy+hgJfmKCpy/q0vo3mBCObFhUC85JkOWj6ioCM949Agg17qhxZhc12NZmPS8aVF2v7t6ekJLsteGHlvwIGN+ITaSB/BxmIfBunSbJgNVwKxURjT5UnfGG/n8hDtnQ/H+5pjYqMllDkBh4U1vmplyui+d5qQM3vg6BuBjtQ+eMyMRYCL9WhciHwYGu5LYS44BOKir46d0aZpOa57WprMD7JxicQmI797HDDyrEw8JsgaWs1uZ79quy9D/cw6mBQ3ApHywuualXa39c45xcZh87rbxWEipYckhwZZoozDmrFli17d/W6o3M5jrfZN2255YosQj2mzWUaj7Hl3P4YuezvM0EgCMVReeJI3X83PfveF6kCv/inYBKXXr8SAygoZcmw1DGH1bd3Xte/xZHgP+tY1rh/vTzq0C49pVAIIoqOQ9Ibkz3ixeR9MkjuBSDo4a9dSFY2OlOTWcy2WGSxxwkRS+zrbxDTCs2nFmQjWPmBSFsXmfZ/OsynGI50/Qqs5TwpJyc73Poy40SdhSjwIRAkzxOTa20u9aYlbl34WfS03xERJ91rPhsYNNr9mF6NKoSx/6JoYts50TQ5NDwd+4s8DfgzRyi2HxjESL12B+fEkED/Xlwy++3rxDtdVO3auHcHr+xATPz2RtPyeV5tmXe6WzZlBm79lU8Si1p4n8JCeu7SalURIinrM82Nw+z2CKfIiEEWdqmdt+nBsH2VfbPms2X5fVmKiyLKe9DDDhYGgncGbK4qAPtMNPDmB+vXCQYteCI3Tl98wV49EMd6rqwtcE/XjQkZyvybjwdVLwFMcClctywMYmt5vYa5GEYir9lcTbw93OEdNMCDPGnKgtAUmroagB3INkYbND/aIXdMj5oMJu+jI4G4uVxOf4RE6VNNI8eloxC0KZLS8+BMmzptAxFGXdznss/yIc26fYMsrms+x7fY3HBtf/3hHKXFYHeS8FtNdFrdUpRafp1V9OZu0Ao8YQxU8ud6Axt0IHmPORnX4UOzRBOLusQbn05vtWeytY84M078zbw4m7szraJji7nHmzR6ffixmcdLOVGnNGzTZDIdZVqENmApDZSqAoROiCzM1hkBMnY81s1sY7umQrP/31Q0e5nRMTA1CiwbxcY6iC0fvhC4ju+650Jutl9A6Eo8gsTWgbTEabT+5jJSe7WDaxhKItrfXSJY5j24zS8ZdCdYP01yKibahWNj6bdeYPran6cuR6rTiyi+HB78enIsDcxR9wNxaFOY2lAUyWj00gJnzIRBzswu7ak17neKat8+z8P2anWWYmDN0EwkiuKAv+PeWXrt5FaZkTHrJKQku/GiR8swDD9XqCqgxR/WFfoxF2d1ganwJRM3ojQ5qWkMsXBbMHbml3+3qDpioMa31hXI4Aq4PA01eo8ddi+qS6Lh/5TCHuLULb+MhWT0BTVw0ml77M9pye8M0jSMQTc08PGx63NRm505T/6x+eHsoJpos0Nmp4+0ATTWujoyBqkuGdx991r/ukh9cnev+idsOD5kyB1RNRaHKfH8AI0nPCqbKj0BUfbvKffexdCU77Y5FWUamPrbkq3PNNoG/5+r4L299fRW+hZlq3jww7Hx+fzxcnS3UXop2NO/RcQyL0v4wMf4EIuZxUJz5o2H+rJQhywafGtV6J7biea2rk8kQNkdX2Lb3zGEHGY6JPbeJF+el3saBpIpBgCQPFJKsY/wZhZOHwiQFEIik7/tDfK8/LLdfeG7mVtPc/ti2AjFD4+Z33ZyDn8rRp5GBrgnuU22+LK++hkepggKIikAhKnxkAKNbbxpMFJdARLl0TG5XUDaYM1NdrE3WnLkCE1Gt4U1q2UKuZPZgWJa77HvE9O0hLtvDA090OPb6Kg50UJiAjr9RnnBMIfsyYr44wXQEEoiOMWt8cxy6PnKc2aXN7faxPvf/xHbOeG/LDumOKx39oe0UNz/GlxI3mBoegahxeZFB8r06jr3Pz/kxM3qfbiNDbDkcYVMew8nay7ObldESQ3eEjj/a7DAeIbYnoCkQjaY3/ozYid4wTUEEoumkIKfjhMN5zJIN6WTf20kLsDk0eBMq7A5tWsA5DZecYmrCNr+D54y6u+AxawJlODSygS/j2o4gmA4+gejgjk5qO/gvPmPmpBW+nhrvbLBlPOiT5XdDgc4Hvlp93tCZNcd2/N3TxRcL8AgFfABV01BmzuOTAYx7PfxgqoIJRNXYA/faT+h9xXnOadXeT9qlzvkTO+vhvEOmxKmFytAeMsuPMWZCGExNCIGoebLvrqVGEI2ZrO5qOU4YPLyR2iOHI2zaU9Us9VzW1myHvYenT786VcTBYwYJZWjP8M/+jBNkEUxTKIFoGlmqz9xOW0OfX7DR5U3sgBRszg6dnd91ds6lp6dM7deZnrqa34kXdPoUHoH2RBnlneWHAxjNHkyGqRIQYPXmm/c/W75v7sBO1Tt2syi5aHyTrt4EpgUtrwct4liXC0MBmyMVXo6ihNWbI+w96ROmOlIJsXpzPIF8w/uh/tl7v+g7rfItnt9x9vKPRFvcoecMbQ0gY3HHAXMOY/YIbbhXI4xAvIT1rZo1zbQFfWH1m/u3Wm1xJ8bijrMugI1OMhZ35C90Y5RFGMNshMtio2uvWWuq52a6ZrKujG7epkX9JXmadMFEwa+bkkGeSRXTdjdB0t/HtN2NX8rcZ++i91M3Xfn2beD7jtrot4Ky3Y0V1u1uznoAxD7L2u6mwguMtqHpREH7f/gLoL1SoMvyrK+TE7Q/ilgo+aJBfHLvmv9GBpmin856TIPit5XvutFAt0J7fdsOv7GPDNKmkC5FQZt6AyH0TdY+MpM9wahmPYSaNXTUNAKhSQJxaA1M0UIROkozNWa+3HmrD33t1KEO2TF2Dr+xmwwSJeQExwOlNjR5KHWhtahBSSjZU0byLnJgMvAM5ZNFtVvKgClEhg0eFSPkkvym2lamYJTUXlC3lbHzluAk9UERBAgNI0rXOha37+C4eGOfqnbvnn9tytBQC9gD5EzEjdnXg0RV5r4en2Z70NmLqcTY1yOSAFu8MWYVZS7rmUNP2dftzIjSnKdK2OItCRhFkKztvrPmgNEp/23xRlpo1zH6WGoao/h4B9fKxOSWvyHNyC3Movxu3BZXz6EUjthyW2OAuqKPu0gzAVXBMrcwmwVGo2hK2+KNPKv5/q1TEihLD0VfHNb+3gcctnhLYK22SIhbQZunbqz5wWygEA98psjFJ1EpW7xdJae7fBPr0VPHTX8/esrhXU2lxfFzpQaCvsXbPAk8Ut8oJFB2xt/N5GWlz2TtVI0KbXmz5QIiLPYmu4LIx1nGYu+IEpCbrfCCuYgiQG7GC3/G67NvmP0Kq3Jjp6jtn5WUm1nS5OVmdGXmZtRtB2KDd/lTFybf/7LtdZYHDrkZO+7lAfNeyez512K1Pkwv5+GRdVjLzToGKzs3Ozm6yO5kxWn7dTrq28M2ikxxyM2Q0xsPlOhyUXJVbm6G3JerSXMzyF5k52Z02AdNIJAeIKcV0aqoZKiKaiOjinqnH4dRVj0E5kVEAG3IVPniF7gxm1qyR0SvLj76U0nawJWrDZOUqQ1aWxh7hycupe99lMroJKqOwkEb9ux8MWB4z96OyVNcb5wSWB/Aw+vx5Hq9CGVrQ78La8f1+rKMUryGN55noOqKgzakl/t9mPh1JXVWxYON/hqrO+KB0iR5KMXHK1cbkJujNKk28ORqwyTYB0UTSBuQBkPIJ2zTZGhDfwsOI+9OEsyLmEC8UK6sYZ0tv8dcVP1a3XSHiTthcriVMnK43EI3xoi4DJiLGALotEXX3VeWX/nuFP+z77SUbaMGK0mn58nV6WXK1Gmrjxc3Hb70jV621WpJQOnNrjjodFTY7HMzZnSn7zkRIJiZcuoWHgqUIlenU5Wt0xuWx1m7mzqyyj9s469It0jFQaeR0xsPlJbJRSlduTqN3B+rSXU6Ra5OL4N90EQC6QEy/CXUpoEkNqPmkQrapoHc9SCBOx0JkzKJQKQgfR2hSNEDpMSnyCDlSz6HofM+FSZlMgHUOmNmQCcT5lDqFlrexIQznXOVo9bxOfLUOn6bMtX6CePN4cfbGOwy4/cdVbPWH8JBrd8Np2ybq/bGIUuVzVo81WwsDjoUv15uvrhJ2Wr97UG+5awV7sy0iGL29QiyOg5qHZC5IvXC4suUbfwWZhaX2nbAA6VtclEqUq5aI7fma0q1ltiLTLUGOEl9UCyBhAFpMETMquMLZWTVxaBv1fnwLpiXKQTi5eH5FupJj7xcyp92evazL/MQUbLq+JMysuplu90YD+6cgbmII4BOr+nM3HDCIp+9jLGqaPGGrh+VpNP75Or0MWXqtPPze0XJS+PYua+aB//1gdsNB53uXaHT72VVD+qqjGGeNqIRGngo0H65CnRQ2Tp93Gd3W5+Ta2gzxS7FP5e6uuCg08jpjQdKx+SidFq5Oo3cn7VJdXq/XJ0+BvugqQTSA2T4q8ztql9tefnafssm1l6x7vSACxufKyrR0GKGXBnbVfuYuzFyjDbDlEwjECVIT0c0SspkUFIOKPk57hBMyXQCUTLuK7e5b6alfamJ6P6K499YmCjpVH9nVm+3ptvp2Am4pyuAlg5o7QMrXBmVxTdhWmYQIIAaLTh6iO9Cc9occ+yTz0eHkUp6LHFZ7mOJe8oMoLLvJ65OKcxmbGuVOKY9d7k6DgEU0obxKLhfkVtwv6nsAEp7EtOxmtyBXWo4rcuAvqqtcAigrB5kVmzoYumQVXDN1GFu8Sc8ULonF6XHyg2gkHtvN+ljiStyH0vcg31QPIGkAWkwhGwteyij0GFjx2Es6fkM5iWBQLwMXnjyC9fni+O+pG/Hf84bNoUohQ7SdxmFjlY73RjLyM3gXRMSCaDT8baPOH3KdjDLKgM6d3SZX6ykQsdruYWOamXqNNm34MtgQ01qeuvDuQadaQ9w0OlNX7wXTO3Yn7PQIflJ8KygUDxS+DdyU/gPytZpvwUfdw34OoG22jLk+Bl10m4cdBo5vfFAqVouSj+Vq9PIcxaatNDxRm6hoxrWgyQC6QFyWhExhXsjI4UTLnZlvM77ANMyk0C0xDqMCUvrfYFSRu+7ZbHNsOON2z0MscW1A5cnFooaPuw56dDWj7y3Trk/cjzbCM51V5Ca+LU0Unw5oIWMthlv5lHaj12HYWpmEYgangmzgt3Wwzl17tSVzwY/V8NGDbwH3+9R8+iqUWn4RQ4re8cnp47COYrudyI5SiFRBjV/xxylDTadA1Mzm0DUpMWGvjTacdBx2aDRSys2j8F2HFc3BvRhIgH4wNjfpGe8Hkvd/Vsms/xQx/ir1C7uONATr0YHJU8Uemb6HKdxu2vC8e4cAtHDCD7XJWqJmfO6zh0P2G7Z1g0TPcY121grtinv8fD1M2xmhrNLj39ZN6Rq+AcFCQrYC8hZCMhhohCUdPYYfXXgEnj+JMsiyLXE4e8TpMO0+LGdhgies1rXQ6OlZP+GqHCQXDRuB4XO9dKSiHrvgik5iUr8+HfyqpWcNaWdm0cVjF4n77Z+IUvV/tAKrDkK5TK9ps0MNUchXwejy/83t1MwdBCIwKOI2u0C6rOEyoqvyqvt81XbUtY8GmYlXrgz7DcSKuSmAcjZqKjcQ3TOl5UqpF4Bo2mN2VTBCLmpAgaUjBf77HM7p+e04JND7y5D0pm/kVAhUbr1Oo3kP9vQKW/K2i6dzEu+4IHScrkorW7U1gr6/2ytgAEgmp4Fv12GMWtnWX6veP3tA5sqmyLdlBoLajald0sCktSBziWQwo07e3vRwxXt7ctiJ59LXyn61BiFU2zr3+vHb5ZVTNtHX1r+zd06M03RsyTJ+wAFGwFBDigKlznrOL3VpXyYoHkEU7gDo6IYRaYUyl7vU60SpgUnKU3hKi5LD3RE3zAIKByp8D+Fk7ISEOroIm7xiV30kNeC0cXcDweFQ85GRcNy4J1JeTK3xbkKRrcqW+Hu9sjhPPv51HXfzNRWE3p7dsFB4a5pH/H3DzSnZkS3a0aZp7YBD5QK5aK0S4kKd8UnzUXrohar0CjjgdF33QVNtoXQTamxoG8hdEsCktSBphBI4e59aONyKvYwO6dT4bvnx895/KkUG5naK2ilUergkVKwjBRbf6cOY05mKJxizyeYvllenl/qMHO4Y3KrBZ05AekVysvgSABEX1n6Zt0cjIr+0zcpK+4FvQyyDl6hzmFcGc4dX9IOB33rkWe2UfMMz34eOVzvfecDnRStakB0+sny3E+h0VBl61tiv7sztpqluGz7lNPqtiDRHgd9W9Q6dPecdKHr3Gtjog9u+7gWD5REclGaqkR9O8y7Ytt//3XmmggjoyNJ/bybSt/IKlJjQdW3jdCoCNa3BQTSN+bt7V84aedccsmzzcq2DcK2EMTUk88LjZT4a8aEGEFUBB98yu/lcQ/LvW6Kzg6mbX5su8LbLb2rotHYcemxr2inlccVXKY/jg2DaVpIIJqQkxoTTd3rhiFSekA0wuNLuoKtAEMN83M+pPBnZe4Pl5xV9nmal8ieitaDnku32jRG4Uel/D19ETsR5mcRgfhBSlPjwkSB+HcPuEZOX0Wd/VPp9OmPQk/h3nf0x3tqp08qgehBNmgppQsMuZurglxkLZTsy4veBeb29xJ6uHbtpqxpBOLCjPejzZc1GpzVxxYVZs0tx7auwQx+HsYMFwYC2fHmiiIkj5eFYqA9AnBF2pGBZdIgq8KK+rR7gKjFNPTDXb2C3tCP2a6AiVpMIKL+qmiT15x82GnZ+ari+CHOCdiIgsu6eBCFLG4oSFQFICp+qwyi1Da8oft/qK1RLCFYEhyx4ubEgfOOsRbbXiyLTErwU2qRN75MXpE3/sR/SbCUlWbWp6YEbcqmFfSf6zViWaUZDknw98D5o1+OLXUuzBSqb2hdeAqH8qWka0lm+TL+sLKT4CsCP4qbzi1qwu4Vgs9x+/VxSIJXJs78qrG+DzV9k2O3VsUbFuCB0gm5KP2txCT44eYXE09dyKEuu0Gd0PLecmpTFnklxiKzyAtAkjrQpQRSOuScImj0Ti6T0oMWvdtPOUFPKq/tQFxGIHqQkxkTPTZ1k98GgxFMubD9CZ94N88y1hJ3/wdZT07ZKBo37gR0nQKtb4kodK2/cpg+5+NZmK7lBKIL2ULSuEOb8aGqmjah+JjfVuaGdfbLRYO/lig6swBVpHRA03QUqsa1OEwvoWTCVK0gEFXIZ6HYqMIc4mOial3Fg6D8Geouc8NU+/ur8BkKUkUpBrNqBw39fO1H5CP0B/tLYKpWEogqnSHv4vq5uNHWvAowislJno6JKqu6GoVHRoaMRBSNq+6DeXUEEBWD1nYTVkX/Ov0kTNYqgmVk6yfPGN9ldQfGvA0arlPP+WkrLSOLB89g4hfJysiiwGPJ+PT/MjIpK4Ot/qIfdT7DXtj+3XRH1XYpOGRkyIKWonU/iM5UWblG72ZgdJmyM7I9WSPaCUxXu2QVsz5VLs55gUNG5pBy+IKdSTV1c6fbO52Njt3GA6V0uShlKjEjO32kzN90UjJt1qR9oeev/WXaVBlZgIrUWFAzsqfQaDrsQNMJpHZIa8Gkdh2AitV7wIVxjZ6oV3/dPVsqXOKPROqrFIzWVDQCeUOvWXH0CqVwf+TgJ7oGKwfmZDWBOLlzpIVg887P9Ix+0Y4ve5hfwMRJJziuR3CDIdZAzjFFNyWCWqBWAFp+oNDyvKU245jtGpiWNQSixeDt7AR997mO8151rOr6uiO2R49dEOuLGsdM6m67a+vf2TKKbC49vf9i91JFV12rSQ/X1kGJAtu5aDOWZ6vDzGQQLAosXnSr1HjRfFYq5+Xu9G3pL5QWBaZCgrhZVhQYD0WBxf9FgVJWzo60qRgyy9K+vKA3t9imbQ4OUSDyaZmCc6IAonOLrPjGDopvCpQdBZLOF09s+6CKmk66t2bm5VZncIgCHyTT453dfjqnO/mrWI7r3AcPlIrlolSqxCjQoN3mR8uXW3HSKXF664pOfm+qKDBKRWosqFHgZ2i0GHagawkkbUhrIVIUGACiwPg9MqLAL09BFDivDOYkk0CcaOz0XJye4UBLnf528LwThaOxRYFwybDxUSByjilayYWiwB0yosDm3UEUGF1bHswiWKxxPXdYvwVTu7LSoq27jnS5vEdpscZZqOv3oMztlqBG+L/+izWkrIwP7kX+8mYPp+y8z66pPjdicYg1kLVgReNviM5DMnc9AipKOq7sWGN34se4ctsxzuld21xapTE4DIdY4/W1ywceneEwV318ecm2Q8oxPFD6Sy5K55UYayx5suOWcVWZY6Gq7f4yY4PHTRVrFKhIjQV9YyhVCUhSB7qOQLqGtBYixRqkKhBrnJMRa3Sb85ket/0yzEk2gTjpN7OT6tRAluMCUeXH6rx5kzBxYlj3mVfj4w3kPFOQGmt16aEVGmgL7yZoM4asqj20IodA1GT6fd2/J4LkuMzi/I241OJobFUnxJr/xjGTUfl+lYnhKed5r88NyU0zmY0DMyRzGnrVKXC5NsP13ACYmfUEYsbAnL33QNthTus+v/g403dD/h9gBrlIC49K7XgZzLQL12ZE/i2GmcmVxcxS48tZ+ussqFuKxle1P+bTsx4MmvZBQYLGRef19z/lSn8fU1w+OSWsIuDhamr68wH6D/es245+Kyj7n5phbsrVA4i9ocoIyAvagNGW/5sBeUfE3kIwMegnrbS6t93oZrZLCkmH4iUyEOMQiiOr74ru7wgR+Z4qI8gMbQ1GVRsTiusjQ3G5+Hw7urDPYdWZzFXjxkR++PSgKw5BOPKhER74tKTJw0e/UUF4m3+CcLnQvM7RfWF4ZBKrfE3GF+O5e8c3Vfid1VZqIKjhd+92EnikvnEDAXzjWn8a5fQFc07Jt4DFmgXT9+HvGwsgk+ktc8EC5BuH/+cbSeP9TVm0Ww5O2SurO43dd3wgDr4RGSMqOPfPQkT2kTX3R0Nzv5/yfGO5rleUu9US+vrA89ff7XtuiINvRJZS8cBnuFx8HJXiG4Ua3akfY3qwlm4+syLPetCSpvKNqW2lBoLqG/Uh3zgc9o15BPCNm931wwqzuzHWeGxhu99/+01JcaMPTV7cOOE/30gafeG0Lj94ASvLa9c6TdU2C/CIGxFZGh5x0Ti5cVGI8nzjHtWtO0zyS50WZmwwD/9suBcH34gs/eCBzwS5+MQpxTf2sjBbf8hkN3tJz5cXkz4ZjGzSuBEyENlx4wTYN24kULUj0yQ+bfHxB7R5f/V7mbNrv9afX02Oc/tvANSp807GImXH41qMluWfYaI2EYio1nOPzd6c15G19OrwJ73izBl/fjU5zh06EqJIdHSiyCe0GB4kFXhLtc0EIkrQZ3bOl7b32auvz37e5c6S9KZZaILzI8674PEcRYOOvtDkVYoWo9sRLZisLQQiSzy3w5iSwctdE0+Y2gp9R3ljIquPtMiLB0+jSIKP8Z++OK0d5hc0bVF/poI8uXUEk+o94CgUhafsJUaM7NlfYO+3lQAh/Bbd413I1JWc7QNXXOrpNPwo/iE8CQrSq6QhfDxS2N+0lTipX0u/6tKjvlBKvyo4lH7h8eZEKQ27Xbm3oJ2NP2Xpj5n3PcRBf+FR/kCEJop2LkFEv5UVwm6ERj8pL8T/4pbU7cEtNXZ+uwvhj4/n9cAhxEdGBHjg800ePmAi1MGneUPm4xkqEGGF53Zsl9xDJQMpS978taPVO9HP+vDQfoWH1iA8SB3GAx4Vujx41OjKyICQCtFUGdDddtL5A2VAUUhHGdpeYh9SacknWOefSlJmxy+f79oXMt62aVlevVVpnX8FJlIQ0YvpvSUHV/5PPmj8jUNMDp44f3jzxkXsFWPaDB86oWAlDpqCjPcULRlDdL6TWTLuBa3LUXbnn0HV/MXe0Scc90+Ylj7KdhYfB2WZ2Edv2MTHyxiJY3cPP2o6sQUeKH2Xi1IzuvI6/16eNT+tVTmSntjTrd3Jk4fdm6y8bio1FvTyeh8JSFIHuo1AORTSWjDlUC3ZgmA+mRbLCwdtMhjypBuV09VS+CWcndyslW3s7s1StHmpG8hnoeLDUpSOv8ezjRnOR5rDYradAHnSui/XbrEyV1LnGJ7d8K0qzEkJj4HN5CqXxf+ucjUqDzLLSWuxjaxHL/rYJfxodr4JDpqF9F+KemMzuZpl3ljNalweZLdKc4TXOyvn/Mx+Aqei62Y4qBXOR8RK8PkuF59mSgn0y9Kr2HE/q5wyLgkXVVSuTmsynbKUq1NWdXWqgEA6NfNmj08/FrM4aWeqtOYNmmyGSac61tGpRh1cjGRT0b1XrQHsHwAp6iiFPaMf/RiJzWvPky4kEClCu6Tx6wZl2sd/DfK+qdfeWrmkIE1A0ao4C5ACHbyKRopaGw5jz2wNOIrYIYuUrr1mramem+mayboyunmbFqfrSzd82PmvUYQqpihCcqA81iiCfGGWlltXhkvqUFvLHqwbx9FvBSWKsMK88g06IF6VLmvlmxfAU5uuU3NAvACSIOiyPCPs5ATJjlgo+aJBfHLvmv9GBpmifsNuyYPf9B2Sal/yd8p10aeSW78hz0ibQlqwosukPKQ2hb5MyhPgp1EPoYb02RCB0CSBOLQGpmihCB2l6NQx2a/3XmfOPD17fgmrR8ffEGkkSieOcDfuedqMtrf9itHz5339gAdK2nJRakFvUYOSUCLVkneRA5OBZyifLKpVajCFyLDBo2IkunD0TugysuueC73ZegmtI5tKrQtGSe0FfT2ZtwQnqQ8qIpAwIA0GkzAYMIKDoU+byCc7hAtBLGov4nPJPhEHdzSsDXF2MS9zR32gbxLlm140NWql6CIMZ5Bh6gBemqNog00fDmPdC12Yl50E4mVXFnuEcK+Pc77DxBsfn+gcUcpREMjzJhSt3bsySBUd6ehHQbTa5caImGIAc1FMAJ2u2s9Rq7rekbbxZ3CLFs1HTVKOTpNay9Pp+A7K1OlTUQNnzhS35aRc3WW3aE3Behx0OmjPwNzhG4wcM54EcXv7V67EQYHiW8tTIFI7Zeu0g8lWn28h05mJfrqv/35w/jQOOo2c3nig1EEuSp2Uq9PpY3uavhypTiuu/HJ48OvBuU2p0xJ7kanTACepD9pFID1ATivCJXASUlATuA4cRu7AdjApJQQoA2saGAffMjvGyjVKG+NSPFNTCR3vUB+sNV1Gu0wBeApMsvuvXabBMuiOfd7tPY13Mbf/sCTv9J6njUOZ2OfOiEJru/0uJTsqb87p7aNov8NdqPMJIhq94xtqBrClK61MzM5pXcroe85xv0ZI7Da2hgiHMrHFkEz/ny+e0vYd+po6duu0x3jg018uPnZKa5cpUqu6Vxaqy1z3kBaqeZuyAod2mcyItXeMV0Vwlj7/ebnj+Cl8POAZLBeeYUqpogd4q+0NHj6RWrKdd3eN76e4Jlsw0EE6f1DbZXp3lNiHVFp2E0jvkW4Gk94bOwgAtGTEpqmNPO1l73eyUXDWE2r6VNebvRIytim6zTC0S4INIIiJov3z4lsw7m23hQnaQyCCkH6uMQQhdrFoJEHcJbyeD0eS2ft2hbx8Wfpd0azdDRBUMRAQ5IBC0PtFLRgc1mCYoFICEYT0tH/qtCScj/+OgnbmGU5HPy0p0qAFY6S1PUzPXgLRw3956+ur8C3MVPPmgWHn8/tjoqdzzfz5PWKQkqXobladgGMbAIgxRCGG8sGQkZNWqzz7CJDUlAy5XBp1rMQpl/NdLe/5wjT8k5oo0HdJYctKagJAZxbF87+kpsGoNP5+m9Co1J+uC+4EbDuUO3AaDknNTtWqSPL4566lG7ovqz77tYOCUyMVEF3BlhWV6oMGPQpHeUnNHY/1+4MrNZkL/XR14rf2O4dDUnM21OQYqdlt1pbKs/HXTtzvjQc+I+Xi46m0pMYlJbdbH9Xu9llD7kdX9Dn0HIekJpQ97OWu1ED2HNuwG+1PzjiPBzyj5MIzRilJTWTAtE7GvdRdS1eunPS28tPWpkpq3Myk8wc1qblqJrEPqbTsJ5Dmmy6wu/RR6E1fE68fl+bhP4awSU0FlNQ4yEpqSLqMe4scYYLKCETQ8biHYlLGDMo+1UETTE/ppxI2qYkHBFE8ZCQ1U4pAUvPGCyaonEAEsfyLS8/MjmJsnKIRE739gzpBk5oAaP74y0hqXmm1YORncmF6KghEj5tXYUrGpJeckuDCjxYpzzww0WPoJhJEcEW/Sw1StBR1baDFnOJOr9lzFElNoqktY8L5Wu05QCBqfGZf7zOkWyZ9i9+Wl+zKisPYqIGdGoIiBy5PLBQ1SE2sw5iwtN4XKGX0vlsW2ww7joNTqxgNqCGjUNM9RYexJ9YHpuYggajRTWpBt5y9ib3MKaYlMz1hAjZq4IDg96jhmTAr2G09nFPnTl35bPBzNTz0hi2Dmg0LdRjjHrvC1Bwi2KrNAy6DyTspgcwNrdS3Ro+6OVFpqzatweMKioOsbhgyqPRXONP/J9e+/Maqza59d23uHPqZvnz9lMTZ2VvW4FAFQIbnihaWAZ0VDrLSuKsQ2U50Ja/arJw78K+hP6udSha8uSTo6bgMh1oA0lvhgZKzXJRclbhqc1f7WyNGOIkd57r10pnNunS8qVJevY5SY0Ht21kJjTrDDvQwgbQNWVnDpG09YU1TLOlFcquopYKCd4UToMgLReO2fe3K6DqdDVN0hGAa1603lV+58KnjVg7HxvugUUflapy7XI3z/k/jpKwYLpm0Itx2KH0PNyBpeaucfjhoHLLCgYf3dpfrvb2UrXED8noVTTtw2iF+YErs6M4HtXDQOGSyhAdK3nJRGqtEjRt+L3nR3bxHrLKh1/xnWvft36Qa5y5X47xhB3qUQBqHfDrSOI1TrG6I5FbRVcnQQ13o0YMnisYdn05mmC4YDVN0jGAat3vq7hcDXhpwlgf2PT2k56rHStM4EjSh/WVp3BvQvFoR9J/GSVkJ6T+J5+oZxMlf9Jar/ig1AweNQxaJFV3WA3lvf5lbckFkBypb43xpibuEJ4+4lLS1WJA5Lu4RDhp370Mbl1Oxh9k5nQrfPT9+zgMPlILkohSiRI0z8M024L2vpJRfSpinWrSD3FQad7eD1FhQNS4U0rgg2IEeJ5DGIR9xY9I409rapMIPYJD8Kto3DOkcj16z1zbSWtdfIDOE8/kwTScIRBNz5Yyxbday6Jvvk46tCqiY/icewCAf+ihaSnYErsJIxgMY3l0XxqSjZJiakwRYRZnW2WMDr0e565q7dz7pzSM9VM4qygpDeasoKcbKXEW53+RJ8BQ3f1bJ6G0HRj4sPoPDKkqkHeOwPlBiUzLXB1aQlb2KUlNv27afYy64JjOuvHDf4cDEYRVl0gz//oUmB2gLZyXfu53V3REPlIzlotRTuasovUaPuxbVJdFx/8phDnFrF95uylWUEnuRuYoS4CT1QacIJA9IgyHabgdkZ9AM3kPGbgevB3IYKzr1gnk5TSBeEg9PoGiFrqbnba2YUJ2oZkyU3Q4kC1vQdjv4q8iNwcurXdjyFwF02uZK2xOtm61hFj3yXJ7pZ8lVjk7H95G7K5G1MnW66u/n086VO3KW2u3y7nNlZxwOOp3uZ/Jj8a2T7Py+973H+exXxWO/HTO5++1YKFunfVax+tgYsJ0WOm64PszQpDkOOo2c3nigZC0Xpb7K1elLhncffda/7pIfXJ3r/onbril1WmIvsnclsoZ90N8E0gPktCJoGlfRR0YaV/7QhTFkpAVMzRkCURPWQTP+9uWFjjuPmEdvSrr5XfnrtpArxRRdUOcE/MNAGeu2UnxdGRHNatc7niWAbrfIyX46cOQHTsJw1bHbP1xSUY5uUwbK0+2KocrU7fX9V9F54bsd9wXGvPdwma6Bg24jrRgHRZKsoZWpSJTBytbtst60qiGPzKh5Wwbv9iq/ZYqDbo/v4PZow9VLnCz7nOCuaTlT8EBpqFyURihXtwvb9p457CDDMbHnNvHivNQmza8l9iJTtwFOUh90jkDigDQYQubXw2Tk10tsOIzY4RSYl/ME4mXd53d6Y9Ur6en7JnXc2y6pOxHyaz2QX8ezZOTXE/LdGIwWLjAXFwig0/4fexx4lTXceZ5K7NAjLdefVlIdnCa3Du6kTJ3OChy8i9q3u9O8th+H3GfrtsZBp8+mDW81bv14ak6zbbazM1lX8ajw0uVWeB2UrdN7S9qfD9fPt1/u/P7JrlVm13HQaeT0xgMlJ7koOStXpx38VI4+jQx0TXCfavNlefW1Jq2D0+XWwZ1gH3SRQHqAnFaETOJIdBlJ3J6xroziQgeYmEuyiEnffXfMnIefnUp3F5cWht1j10NBzY0byQ+vz4um9J3QeOltT46CfkPS0cKLiRYLI8iRQvA1yBBMYv5kMXkiNzyGj06IbYBneKm6ukt5S8PNF3N/9ka5lV/4IKGZO08EbMId6hOBLkJzEv4jaypoQjLvCe4Pft8WodKuc2BPQQg+1GTwEe9GJ1XwAR+HJWKt7cIVhQgi2fzgeh+lU3PZXRASWu+6Vs11T2FU3av1Sd2x0I1O+8qnt5KA4SYSRvFFYkHNXWnAd0UThoMvCV3qAf45tvrnTx26iDvJKTJIwKt5qUSftaCLbkDJ61yS9L+BRkT+PyruEcXnCbjhNGHQP78L7FoMwtOI2n+reou4Uf/0GNWY3GUCmBxbn/ny4Yux1NyVgdqbsp1dm9TkeNIm0EaaHGWS1OQKlGFyA3e40Qf6TSKGyV0hgMm123V8fFb6V4c5cx5/DVvVcUhTmlznidAp0uGSjjoyVyCC5HMSeaIwPCaCj9ECoQy+YiawQIZEhJRggeqfBtKzb80khgVeJVAA5HZMIyP71RV24WeVfu9dvl7DFAD1GFXHZOyByYByxSTyKInJkKGCRZFVdMORkJPGlvajZtjbF1wfZ76Y/ddHRTvWR4NIaBowwoEokdDy5X4MVsYMOBK6RiCGUjqsDG99xtghd6eYdP2WYzC2R0CKLZjbPm3GkPAtlpyCqthZV+8bBSoapEKPgIBKkSxQqGl/24Xx2ssDpuY6gahJNiJ1Ox/whJKakD/HKuEBv3FbKfweNRN0RC13qHm7rDPaanOlyyZFN8wPgKgRyKCm6wUXhmlcOEzNDQIUlxbu0QqfcaOLw9z+Z0f6bwjzVlLzhpvc5o1RyiwuWRlQK0ZbbWftTXt11/pdUSkOxSWki8GjLWGk3LYED2UXl8bnuvYL7RrHLt7FvWjlYmiMQ3GpT57ja8fO1s6JZ6PvjMg51B8PlEbJRWm0cotLhpO1l2c3K6Mlhu4IHX+02eEmbd4YKbd5YxTsg24SSB6QBkPEh0AkbxkPgewHcBgTloyBeblFIF4SjOZed+R+cd3yLWRFpvvwloR5CMST8RCo7VY3xqTBwTAXtwmg048O9PhOdyjh5LuzZ1XtMlqspGaNcXKbNQKVqdO9Dg1X32gWSN+amEB/bpfSDQedNrILMm3fbqFr/OZnpToPJnng0YYwTm4bQoCydfqWhe4P9+pnTpvc1HmcLg7ZOOg0cnrjgVKgXJT4ytXpzge+Wn3e0Jk1x3b83dPFFwuatFljnNxmjUDYB90hkB4gpxVBM2yJs0NL4xKuuzDmPPWHqblLAHmgT2jlPC5Bi5kssn3+6GzIX8qRB9J4uScOCpUpDz4vhkz5cPoJK8H+/jS355v34CAPyHIEHmfpjZd7ll6EsuXhRSb3Y/52MWPTyZTKwQfIS3GQh4Pl+/Q/vvJ03E6x6pfkbNIRD5SEclESKVceqpqlnsvamu2w9/D06VenijhNKQ8Se5F94qAQ9kH3CCQPSIMhYhpHiZKTxjl9EMG83CcQL9Ozz4u7veTTNpd4t1l37l4iUdK4iqly0jiOb+1DigcE0OkHozrSpi5pxdntnGxp/fPDSyWVWyfKLbdOVaZOG2VcWDrqfRunNeHXp45q3uM+Djq970pE0gQVK1rKQh33bubz9uJRSJwkt5AYq2ydvvishdYU5z2M4tlH7qsNGhqFg04jpzceKE2Vi9J05eq0c+npKVP7daanruZ34gWdPtWk5dZJcsutU2Ef9JBAeoCcVgR8GgelcRJnh5bGJd1wYegYxsLUPJJFTYf7C+htBp+hrev/oHz78Un0ejioesZG8esToyV9k9Y0SRsLCj0k7Zqheu0oLaXXkG0qaPySUAnj/T2r6EW/MS5lt029mDc1I3+90V/oau4Z+9vzoZkM0EkUMA80gbpEgZ8Keym8j38LXlTL/wMA4xPoHhw76Ue7jawyrxfhR2bEGWGaQEaIOoibCDTbkH3uJ261AnNonFLYil8ApocNrQ5bT/59bF11mEy+4JDvsqW7b95ty903MLHVqZat4GABT8CP5Mk+KACPaSUAJHWqS9TTfx9Re++Ehk//qG2/RnXjwte9p5thIsoCJooZLgwEUbk3VxQhOeQB9BiC3itwRXqGvfJmGWk1jRQ/ty55z/595Kl39nix5TyPvbebxyXf74azsPlERFDxJ3wi6TJgyrouW8//fWxV6n8tXTVlAnWfefd293a1FWHzibVs/RmfuAPpEyv/fUTdonGdxMtmUPZ8fJxYMucoC5tPhIlqQp94EhBXzye++PeRl1AZYxxXNZKxX4vmu178AdtRDt3hrT/Fgtg/6Rcr9EA6ZVeXsZf/PsZSUtc+tvhW4by+WU7+Lc+zwzAxZlOXsSaccjqAwAV1CXz1ewQCcAUhkf9Pcl9bI6fKIRltHXPvsUKmmN67iXarv2a/9EjlQEySHK9aB+LXsiD+MWvH+raWqtRdvvrpG6JcchuGWFv5EBtDlTieEMAsiuGJ+UFkaC9tYZAgWAD+HiS5J0v0LWOq7lwQzUqkZPTccblTFYvy+ywg6kL9wwI2509m03P2bcnftevoOYx1IVkkJSeDotwbJElv/n2O7JAKp2qMX5Lr+u8Gtl5suhq2Zz5sQTCfTIvlhQOxQSvq4TCFKNAOV2V12an697FTfdlrn18fd9eZs57b9UkYXo2JnfZAPupGAmJITpQUC5ABSap1peTtv48k2hTS97KyUZyVHKuFadlpsZhIInvyeaGRkueDjAkxgqgIoP5kprcbLP9Kkn4twJV7Xb7e/fv4Gj2w061+l+9y0oQv3N6tzW6DrQKBxhdNGC2WzDFlVSCA+7Oqy9b7fx9b2qPe/CiMP8fOpn+85ln8pRO22VV3PSVU+CO783nCiXyRcgsRroArSl2+Pvz7+IpIOrT1I++tU+6PHM82gnPdlXIaMh6PPMpoNYeE15L18d9H1qOrRqXhFzms7B2fnDoK52xoXKPuHyQrHknWp38fWeP1WOru3zKZ5Yc6xl+ldnHHRFa3ujWHP0cYSQ0EhsPqEvaZALtIBNseOd9jjq7DvAmnB3+KWWHYlLtI7NcA9sAH3TBiXW0u1OrI/6eYLr3CE0aArykG/xREgr/zdbX5k6P4kdHg24K/1nBc90ptAyUwOgCP5D10tev9I0bSzKerXZv7Q2bKg8IcXe1oaP8GcA9ktMFfr0XxRWTo7cBgOJQu8iTpIvK9fh1CXqnzPvU+JKSmgDZJWkCLqi2gybpTOb+A7XXo3wjLfWB7OZZX1bmHKOlsljIdVNNoU+dTZb0A/Xqddw6WbMcl833Rh9Gu1nnPuls/1fmnzA+R9QL06/WM5J8Nf+r8U+YHyXoB+vU6HyRnmxcyGeNGLwFc0J8EbfSyHfjK9nQlbPSyKpLLmL7wD270QlJgo5cvBBCJ7KVFHIPjU+yXdtF9mrRqcUZTisSx5j0lft2SHHFwhxX40dWG/lLTi62rDVV/uMj/wK/S1a7zsppRyVXoLw2P1FQp4P/WjEv/3piXQE2BNf8Bw9K/1QySpf+SO4zHSySb62CcrlHx0un6jaqk6WoYHc9ImUOQ6Vota7q+vpU/1MxIi70kteWiyZ8CMuvPERfgUPnYj6c1lLweRM6BMZG8UChoDuKKueRoyQ1GY+qqz2fmn1228Aoja8X2pMfjW6ig3M8vc7bmMsY+09Qo8DyhC/Dha4Bh9KcjWoDdooHZNEM5mLYXGOwJfmrOOK033yFmNSSXnYIkxgN+xgQdX9isXIte+qqji65Z27PwOPTF5Y1Ddy1vHPo8eePQOgd54xB78sYh3yZvHDJseeOQM5c3Do3JG4folDeu08B4iwbGdRsYb9nAeKsGxvUaGG/dwHibBsbbNjDeroHx9g2Md2hgvGMD4/oNjHdqYNyggfHODYx3aWDcsIFxowbGISchb5zcwHi3Bsa7NzBuLGNceqjwLw9ZNWuuy3ZMdc5shl8C/Z66PQ/oUzT8VrIcvi79H/9OtkGvCi+dwtVPmkbPn/1XhVi7n7WGS4yYGxj+j6ohHjxDb2iD8uDZpsHDnM3yxn3uMMDGMbF9GnOuA5uq4IKEAkgojIBQXEVbNZM1AYz2piGOvFYEvr7ohY5qy01jLBa75G3sU/igyGwhFvj6osDXt0H4UnsNtCgIuM5JuuQTkGx/SIwHfH3lwje0LnzNFYTPFhW+jHHFHTnb53OKhpcFVF3tcRQLfLYo8Nk2CN/Oge/G51Y6M9cdTnlnt9XAAA/4HOTC51YXPhUF4euHvkd4gmP8HP/dlCUs5sTyNlaLsMDXDwW+fg3C12fF6bFPbya75tjyF6/2Ug3DA76xcuELqgufqoLw9Uffr+4bWa3F7nRWzpy/qwTt2TuwwNcfBb7+DcI3dtsj84wn6+jlXfRfHdi79jQe8EXKhW9yXfjUFIRvACp8j7POTv42ttBl06jmJ7sIX2zGAt8AFPgGNAjfXGMVS1PziY47P3w3o9+xfIcHfAly4ZtdFz51BeEbiL6RSIGOxaTBeqz4d/HLsvyKTLDANxAFvoENwnfwyrYO8zWuOZUvG9UqJ+npEzzgS5ELX2pd+DQUhM8OFT7f4mJ/o7ep9Hz/TrvyWj38hAU+OxT47BqEL8900PIRBR3pGYcGGfRSP7QID/iWyYUvvS58mgrCNwh9efyUyr6U2Pe0JRtXDONuY9tigW8QCnyDGoSvMKbLk74x3s7lIdo7H473NccDvky58K2vC59W4+FrWS9stkbFrz9TJ3Jw/kKnZIflgZe6vx8hHz+NmrjZ+tftBujgYkMI9tWxM9o0Lcd1T0uT+UE2LpF4ILhJLoLb6iKorSiC6JkHXSNZ98eVAKfCArcB5d/tqjAhaIOGYMO5xwuva1ba3dY75xQbh83rbheHB4JFchHcXRdBHUURRE8+RO5k7fGdBjglTzEaenbq4BOYEOyLhmDD6Ud54UnefDU/+90XqgO9+qfg4gT3y0XwYF0EWyiKIHr+MXfLqG5OH8bSlsf5mQdtOv4VE4K2aAg2nIEcnLVrqYpGR0py67kWywyWOOGB4DG5CJ6ui6CuogiipyDbOjCT/flC6p4d0c1b+JCbYUKwHxqCDSchzBCTa28v9aYlbv0/9s4CKqqt7eO0dEk3KN0gjdLd0indnVIiKChKp4KAIkgq3S0pHQqogLSCKEiDxDeDel9A7shF3viWc9dicT1n5jDn99/72Xuf2f/niVp3/FpDfBoEe0AS7N9PEPV3CR69Cgn/YvsCSzNY8oa3Ol2quLLisQhyHEXw1+uQN5G8o/MR+fL38wsTBYzYJk+D4FuQBEf3E0T7XYJHL0Su9g4I3zuLLZkgJNEFV10icSyCnEcR/PVSBH/TP2OluVKw0r3GP0Bv495pEJwCSXB2P0H03yV49Frkg9DWRBrdZVE/iyAeOUaR4xHkOorgr1cj2IN+I5fEe4R9Ccj8+erKkU+D4DxIgsv7CWL8LsGjlyOXpVD6FCBvSt3gnI7cLHx761gEuY8i+OsFiXAMUYN2TKNMKp0p0wD8bP9pENwASXBnP0HM3yV49IpkVduHwmf5kViomudyg6UW/LEI8hxF8NdrkukzCmsLOQ9lszW7LuK9u3PrFAgCvpYERRBGdB/Bs79JkO3oNcmoiZuf+lSORExSQ5KQN1zacQiyHbUmARz8FcFed3ruEGsV8dt4nYNPlBlET4MgHEiCCPsJYv0uwaPXJC8ceYLZi6Wk/ShoC+TJwv2PRfCoNQng4K8ILr6GYHo8NSJRojtgimcFH3UaBJFAEkTdTxD7dwkevSYpxCh2gbU+K1biM6vxrp6C61gEj1qTAA7+imBAHimC9/xd+bRKlbzlB4XVp0EQHSTBs/sJ4vwuwaPXJKkC4caPWcKlH7m6ru+o6SUci+BRaxLAwV8R1EgXh0XgY5QLDlTKujCyiXMaBLFBEsTbTxD3dwkevSbBuyB9F09sSyGea7gVF8pO7lgEj1qTAA7+iiCksjLr+SFE2VRvuHW4hhzz0yBIAJIg8X6CeL9L8Og1yWfPNXn4QSfxCsXiyUp2J7hjETxqTQI4+CuCW4MGS6vl92TD3zFWJyThncZ88DopSIIU+wni/y7Bo9ck5zTp72vwXRHOLCl5XGszEXIsgketSQAHfzmbMfZkmLp4RfouXzRvmxpG4WkQPA+SIPV+ggS/S/DoNQnbI3R7kyQ4+agH0WRJzppZxyJ41JoEcPBXBLerzHTeTNYIhfTczKZN5cg5DYK0IAky7CdI+LsEj16TGPtruz27CiUbNW4xDvUYPe5YBI9akwAO/oqgHO5trNxqXoWbcM6IZPA3Y0+DIBNIgqz7CRL9LsGj1ySvIB0mB41jJZ9sN5i3XsXLORbBo9YkgIO/Iqj5QOexOOmU5E0izBFsd+3x0yDIDpIg536CxL9JkP3oNQnG1sqg6JS/VEjW9IMnlx8GHIcg+1FrEsDBX7bBuQQInUFd2Uo9mWkJp0qU0yDIDZIg336CJL9L8Og1yaMoqRTcDnPphJ56GojsRptjETxqTQI4+CuCBho3zvJ2mIjddIvVUTmzxHoaBC+CJCi4nyDp7xI8ek1ydvJ6Ly0RvXiI6JggzSSe5rEIHrUmARz8FcFWi8e4Dg1pEiVP4sh0Rm4EnwZBYZAExfYTJPtdgkevSVw1O0bmbguKZfIudOjEbEcdi+BRaxLAwV/ulakbw3agGZC51Q5D8x4r7FSezUiAJCi9nyD57xI8ek1SgvB5XLYQRiphkt0zgXd26VgEj1qTAA7+iuD7ylGmM8YiErfh5Jl07UwvnQZBWZAEFfYTpPhdgkevSazUyl7rPplUSByTMDiXzTB5LIJHrUkAB39FUKkcTyJH5IFoUG663II7593TIKgEkqDKfoLnfpfg0WuSZWrGkS2cK3KJjthRWJFJaMcieNSaBHDwVwQPV+8+DYJqIAlqin7fZf3Xbukz/wwh2rdE90BfjA3QsXIkQ/WaYEjkXBqpjJVuaHdb+vr/Vqp8Qefv25+BqfIvHPbJtDjvPZD+7i76+v2mf3IXfe53w4jkoRKO1rhcsm00NnHgZhBUHC1syFQcTUyOX69D+LKJsYuRyV7FASM7G3trk6sWzu5AogZkgKZpQmbovscWaAcFvsYOcJuONkBzsqEjgLS5iRPTsWxI3io1s23iG7Kh87qjE/E5rH/zwX8SAgZ46rgZ76+JQQhy/V15D+7rYhC1/D+V94D/Z00Oa6+P7ZFxtiMztTZwdjY5ukRDogtSxPNXk1JpeDnl4h+cMGAO3dYRNwup8stkcEbPJDw6I6YUMiZd4NjtU393Z1EYAFktEJn9Ub2UzAcAlPeneh9wIPhQfkvGAGxAPzcVILK/76hNEVbB1arKCtGpnnEeO0xvDjrVRE3snc1/JiZ66v10Dwk/SCQCoqhAE6WFE9Ca/sPQttf2gZ/0Jy3ghPfuH2Jfp/75RTBAt+JfAduTxRsGWDkF+J69mwJe5luGjP1v+qnGyD8MoBjA3mUDTGz4o1UfqQw/2tUzdC/uij3NpPJrYXlZc8Km/Lu1Rq5/b6vXj6o1svCte38PoFv/X+yZUS/PhOoUxkmVdyrG9bbqzZ26PXPBF9BggWviMEBQvH6YGtkNwFnBI+yZcN/HjCPsmdD/AXvm/679apqbYLs2VFe6MCjNxDAeE+ffZ7863Ot+M9RD+AE6CLAhpB8V1/QBZwUPPByB/E18R6/sYT3s8iBnKgSTcD887oSCmPn32a+I3jlycN7nEMpDpNl+8bT2w2nguwgS34EnI1D/fG5xDPsV8oV3BkwTH6QCa3enntDaB5yi/eo3o/MeH2GQfMT+I/N9IvHUAuz+RLnwiEefL8ov4v235vv3bnzvb8D5vv3hwDv0LfB+H662/264ivmwksCoGiRb1qpQJ7H78GBKOUSxq/aOAGyAj31wzAI1QcMRAyb4MHAGDFu2wBRJ3y+w71o/XolLQyNma8yo7Gzg6EzL/O0XHSsLy7HGNYtMYXc9wCy/5p3CXaaVus9/98F/UmLfuX9SjY0MADlA5KiqfjqAsxDCP49wwIEd+ugRDuqIEe7e9vXyR+EaUsVpGfKCU/RvD49wh8+f1ggGqtQZN/WeKtTfcrYAk/MYA6fYJj8Upv4bBamPlKwg/+YqpM6s+E2Ca8YpcBjFB6cie+/+eSry7fCvYvFMcpwDlzayXDDyBxkZKsnfHcrQgZVwganWFo6KNXjAOo65QoeGMlAcOakBmE6JYpgmpI7xQLZMyQRksKWm5sEKutCAC/38dAZ48FcEn/jxjE6h3hUOzH667vogFPM0CEIIgyJII3w4WoMqYIj1r9D8r6ByJKD4u8weESTnJR5rTA2aNVPd+2/F5+tG3xvRkaUL4Y33AH2PzzvfY8VP8RnWCkvpYza65FMX9OxLUAk80LIWhj/O1Xhp7HhfCRfMtHndh7yOZHzgRlHk7IxNrMmUXAysAc9bDoZv4Lwb5W8404n8yNfGQGZs8lfytr+y1LsDViMO3y56JH29Hk5kLotlqZREa6auYAd4EB/q52cx15QMrI9bKNgbMPqJAEa/Z4BGtv5TUAauopV/ehYDqoExAfPy231vAz9uca+w6FEUjk7RH0hLwXY1B02yWDUE++OcsMPBp6d/d9vQStYCpz5dEgTwERQF8Gk58ikD8BmE+JEPXv6OD426uQngAZ3j3lO6H3iczO1crI3JDE2Asc0CsDg1MT6ajD3ZaItUMrXwvcgKOgr7GcgDZODVvr/5ZzRqxv8mNFIg0cgcQLM3XINAgwdsOraAj/2jtOp3PEej6NIIpLoTgyN/78rAOh568sFyQnv/+Hk+LW/wywB+OMHmbwbwPUjyICEpHoAE/QtIegf617ehUPtbRjgvMhdHazLdw/TI5O2+v87CiczEwcUC8A9ganBAnwT0RpO9FHPO38kfjZrRYeQ2+twN2TSXcbys855mB2ccgFbnclSTO6o3HoJ9+Jn/acBWBglb9QBsmF/APhjMXGwt/qr6+w3ocdqp/oxDJiq+qUKC3sY1lpD65IPtVBVwzZ/ZqTr/mt3hJH+nwU4DJDutA+xgfxHoOA+wMzYxtQDcKjAR5b7WavFzaz2SYf/XsKrQXBmJPP2+s943O5kPrlJE/7r2Ed+omf6bAp8uSFRX/llZ6fOgitmAJHP46cnxhkooJetTn6dpXP8+Uo4eRaUF+NhX/CCVXw2VwirA8GRxoH0AY9jeGAkIay7W1sCztnvhDTjwAVuXm4ETMAMqIKgBnpcfzewdGw/bJj6pcHiR7m1C6E3pn8KZhfHxRtBTQSYFEpnMQWRQv0D2z4bQz0zOza2t58Se4OFIR7I6jpxwCD0VDPIgMSgexAD9Cwz/jUGSf0rwwQxdqpwfc2gr4tY1qxMPkqeCUxkkTtWDOGH+0Zz+ZMMgx0WMz06L1+SKbjmm3hsQv3fSYfBU6GiApKN1kM5/cqC7TXp5PZwwTqgqrMTyPsKi7u8NdKfCShckqys/Ho3uAoPDP68ed1S1g70HCf8Pqh0wuo5KtTRek729LhlFHeHOcbwqPULANPb7ys5q70+OfESVntPJVgeyyly68KEqc8Ar/GFi7uoQ1UOsIgpVfKjMzmQn6juWmPh7Yop8L3Kg/a/E1r/W8YRp80DqOHJYR8g/T0cLiKUOvu27osX2gr0OfQ50x9IRRWqvOsVeLbqjigWeTs4+kNohihzSDurP0+6FdLFSMM5DkRgU151dcxrvY2mHLvajfshx5TthzkCQ8lEdlg/6z5NP+RlpzGIKl2wSq5iiQ6Wr6LHkw/1e6ecfq3jC1IUgVRQ6rCLMn6cicRrZWbrte5JBHkyk7r43h46lIoHYX5V7xPeK9ewNjMAB8ddCnjCJIkghdQ4LCfvnCdnpqFB9VthJ4nZRIt7lhYIXx4um/1i+EyZxBCmf22H54P48+TZfYitTsJsK5rs2U9TCv0U6lnyowPIrgBh63FnoCVNIghLveuBh8c78eeJNlvpLL0I5yJVNcnUZStMdbxaK+9d3xsA/CKpy6+mksQTZBWMPqwj/56movKCS86G0QTQG4VPDctXiq2OpeF75R9muo+U83jL/hHk1QXbMlMOSIvx5kjb5GnnjvymWysrA0Pr6jErnWJJS/6wksMgaMNZ+k/S44faEuT5BdtT8w6oi/nmq5shSxcS/2ZAo1mN6b1WVY3ssVbFlgcUMRfaKGf6DYHvCbKMge2bNYQ2R/jwNMXeMlD/gNIin9FDaPHFtnzmWhhR/BdujxDxeqD1h8lOQgnYcFhT5zxOUR940aN4tXOGRSdJT151B92MJSnlYx5MF2hOmYwUZaN8e1hTlz9M0ng6h2Otdh0i51q1N8iH7481rmQ4MnxLf6saqf68bq/hX3Vjtb5UXfy3uCTPFguywHw6Li/rnifv06+DGg442+dIo7NigbjrcY4nLd/R091cqHy80nzCjLchuvHpYabQ/T2mNCEdBVEER2aeP0qT8TR4QHkvpS8cT+F8B+0Al1V+LfcLkuyDFhhI9JDb6nye2bZewiVyluUgMVKMxph8fw7HEZtg3Dv9+xD5hVmBQ0tbCH5YW48+TFjVMX7HzprrwQzGxNzTwaBXHkpbnqDnz6cTrE+YuBjkyox3WGfPP01lG9i0/910JsfLJL3HXcoefHktn/uPIe+JofcIky6CkFsQ5LPXZP0/qdXjl15ecNMUSW5878Y0uQhxLamJFRwsbA0fAt6jfvkwVNbEB1onX3qsr/mstT5juGeTIS3xYS6w/T8tU4yuFz1zRxKO31nuFrhOzH0tL2r/CMwhRgVXif63rCZNQg9T1/GFdsf88XU3vVS2SotKLh/hpUfNR8e4eS1fGo+XcF4ABun6LvmTH0PaE6bFBTqnoDmuL8+dpK/LeLsJQj1C22CoZ/4PZvMWxtCUUtwDu/T1Z9D1hmm6QkybWw0ri/nlK1m01bzN3XROMl09bcWyCyz/eVz1/Rd+/lfR4sfeEqcNBzo+4D6uK9+epOmgceN3Uq1c025bbOCVbYP1YqtIfJeZJI+8JU5qDVFbgsLL4f56yRC+Hi0clySUDEtYH/aIeoh9LWQxJk2/Xl7Uz2Oufv9bvhAnVQc6KxA/rR/Dn6XePs5FWBI1bMP/GCt4zsupPx1u5/NDvZGPnCVO7g5wFyR7WkvDP01IP+zxDZxWF4FPdFeWcSDasf7hyASHq8UbPEyacBzknUj6sK9Gfp6ua7FbrNfdpwQf8Yee6L2wfM8aK2NlZ/7MYe8Jk7SDHSIPD+hH/efoNOVmml3wtlrnNgJW88GXA5ngrz6O740nnPycsZQBSW63D2pL8edpi3km//XTOTTascwzXAcmk+3jj54++ebLx84QlAUDOhcwPa0n652k5xfZIaeR2sXxy3x0T9FdpmP9w/AQh6vHGzxMWKgA5L7I9rCvZn6frpyhCpK/XcIVyYdFGx+Z1nx0v/h4t50nj7wlLKICcG7kc1pb8z9P2vS9LxOtZUtnMasKJ22xGucfb7a0G/CLN+lvuESELR6D9yY1Mzc7axcaEDOigKWB2+rWkJ6zpAFJSr8OSUvx5krINQBPfYX4mGYabx/MB/Q33sSQFXMnZxNEEuIeU8tfS0afpruNwskr6YYdLBIrLCp/GCGp82Md97u+kiysd1bw1uS5VXlpUnmc1Jnsw6Yiiga2J9UHlEECknKURIrMHvmMv2YnRnlRktoBvigESAMLVXi6LvXwfR7MWDFRFy4S4IJsF5yW3RIGIeMRH+Qk1xFEpK4wcAXJfBvYo4EFg5o0f/50wexg8MMqqAD7+jz/bDEWJgrg/7QIK4r+s+yiIewbUw79+vAoFcd/Lvp3dO/qv3amgznz7kv3H72/nD3zxfryXACd3334BpwPf/u/HAHKM06fxkr3IdqhRw/5Noya7CohHNwHxaAvQqLFFEeUMgIVKZE1MDyQlQfp2+LKFmfmB4wjfjqvY2e8/ejAZCTTdVbHwoJuiaHvtTNHRDjC4Olt8+1RnfnwqETtrQAMBHjoP+KfW5u4ukqijgZuUrbGF0b96JSQC8CCwysO+Q3Iu1oAoD+hEf7VT5L3JmoG1iJ3xvh4Np7yXFfyvf8OoOxrY/3WZ7735/N/1Zo9g4iVOlxbpBzHb03Nv5A52IRRlF5vvKT8BN3awVwNvEZjEB03EGtBtTRxF7YwA48+3XgAs6K1OBwExl3BG56zZbu3rlsuKGEUhpVw0Lq9486/DwJONmr+ylES9bcohknpHDIuaaagU944nGlaj6tMsLfriN1pr1kWWRba7XU5l+kxcEWFIeds11UnLrwi7hr19upa0u+YTsxrUpZYRRTM80XZKy0tLr/peMSnSSaJSRiW6Y17IFo35WRoifsx2PQ2Tv+FqIgSGDAYKf8PZt5+shign6zsu6fdVpQmlrnltiudcGmc3uVw1KTGCQGCcjowPt/b1+V2q1BtqKaq5HRSi8YkPHomP2rrNPYccrOaOFiePqb8Y3JPVQctHjxB+DpOYgvEtV7OYVkJoSmsUG/HVOzDB0sHmzmyiSGgLEF8N+ki88lCrUL3SG5Qk7QZMatQWJ85pBYo/CUjDt+tJvYzslz7xCr4cVmwMg1qNrGmbI3qc3BDiabBodv/slCRhgiVeMoKczJoUjNsZ1uQBDjZkFtupjGW49c/iXqPiZ26cqXv2KcBmVRrHqhd9ucVjNIki15u18hazKp1/+E64WYLn1VU4GvvYRV9t+NgvUlHpRo34dN73J3vuSlioeHCM6TOH6MU+671nuxiEHmjiONE30E+BeD8zWDRV8QPkZ+RirdRX5JmK0VQoEi9KcCli8yIaHLe5RrzDsJ7Kqhdn6ZXLp/W7IiDJRM70rtA+eviUpQqHCD+g+BMp5WhD6+ULhihUQlfbFkz5HdyQfEYCJtgU8TGSIKreiaoifkBmCD+PKjSZ/YQhRC0rokXwSnc5QmqTrdXOmTWaa0oEeWrxzy7f0Jsa/lov6fsViu9W8dcLFyq9r75f6Ha1eVtsY1ZJebWP9DVjmcENkh0EmAFRLNrFIMkqHds3+WQIrWQvU7b7Geaght/4F/vvWnWMz0zxVsHNPBFd5g3WGImLfqgQ3naeVVI83xI+ee4JTLAaq17d3Gplnlr7w3vLuGfhz4ivesfy2MN5Ph2PXdph3krhhk80d2P18eoKyV15iDZLdgkWNT8/8SXEOLt1/Qp16XBbLjGUX64ivvjK5sNhkhhUpLgNTeXPc9WBFSPSz4Zrh0MU8sWf6FNaoTfcSrs828A2dcYGwRPq/rMxKorLVTAGM70YOHhwljxsREG0MXTRlKYzgjLZUcgxUD0QNpEBJNBwrMlK1zGaoTBVpXsxbNJjBamir3WrPtsRTlU7s0qu5KGJ31yUk9jU0LEbwl69tD7E27GORGNbefmBLFuDc+yZoam2npkL+Vj2FozyCg6Ql2jLMzC2uCpISbdufRqP6HBxsGhbkQ1DUX3k/PGxJ6X+vENIklY2Bj1ca5TlxTv4dEYv8RzOY4pmcSDWB/upuzxsYGXjxaZXZeqfQaecOTtw0XNJOJwprIZnfQCnmhV/mL+d5O6kgW4kfeNjdXYNYhVlD8qMZQIEv1mlhbe68+UVlh0f12nHkIq36+739nXlEg6Ej7qrUdD7tsRAGVuirvuE4LPF5tTqcaDe77FV/mKBmaYOMQzFh56XJWicy06eUvtm0XZ4t5/ZN2lbW2mmgG4gdOwWAanSx97AhnVRQ2NJHWtRxwcitxqStHkgQ9z13aJ4B8lbNy9VKvsxVJZ+WIpHtRwXIkEw1C3/kjckUdixjD6LDsvfbM5SFUWj1Re5hRIBmZI3MmejbYfq91jGV1LzslEOVbSs/XagAu9ut3auaTyZZ9NoSLKjqwkf7EREwMorBjK8mI0F1/BHhvVY6T2GZ7E+ZJHOlhC/HBVd3lrPspDoLRcrhe4zjn62dl2PQi+HwCBy0z6FzEredoxZj6SFOUJP2i7yU1ngVVgoyZJJ5LvSBm8Q3Sdf1ruIGn32IMlKKP6alyBdlwrxoUtw4ax94Dmyio6uoSGMhDI8cy46maIaspKvcSXxyW5RznKXqtW1sdfS9eAYDS52ssxJMrLIYEYTebzTZ37JluEYrXHmaaQWpfKsRgBrMmUqM7wVPfEK9wVeu4m3Cl7VltyJczHwW8N1rneh8L6IyNbM3rATZdp1kL/Kz2wfmACln3ajeos2VAeCq4RugwvHdcIAyj4N8zqdT2ZbSrql35DUC9o33roBo4n9pNyKjjiKPIJi9E/XcMqT0zgGyBBfKabAIokKsaz35htLk+HydN9iqMJpFW7vJbNsIIvFuh+Sim51S+M9deWVh3QxF0vRi5YEP7S8FBEoSq62Ss6CWNN620gKVR5Za8d9P2t0EWfufkdBr+rD2YKdPHR4FndM+yspaBUfUefX3kJ7lzb2fUxoR/o0hJaDOjojWkVglcd+yYz61q2UzqCWTyp2DjU4E/2DWSgkkHiRdcy+L0kuwXo+mVAsM0wfypZQhb2DStwA9zqit7dhpHuncFX6JaT31IMOJ5/bxY+sSqk0UlwrPWjYoj7hV61v3Sk+0xxAauL3xlrLcoPfsxIe7bkQiZo7xggtXTQRRnwKzihGU9tl0jFxp5v0Hjf5hjH6PehULjagteJy0ym+CFsNsaJ+zy/SZIv9ucLt2kKFXJYP/XuN/D4Jg4ovKDfE5KYf5/LXjrwW7/j05V3vUEJS882vrl+msNWrtvvWtR/H8ko6mW0YCpGUTT+zlAlTv9YxvJDz4o0I1/i5YpWMlVzPN+lq7ea2TmvdesSTt3jaJ3lprl8odbo5bdosz982QkQ1dI83ufO+gKEpe1aZp7X1dikTPa3teHXzsB4TprW+H0HQbnrGa9zdbQWnCU+JHvV4QjSb1zFV8/pLS/OxcGgOIdNMCJwvbqJfWOtF7/vQGyntxGXfNjNgLWEha9t6UX7TYop+6DHMbUHxyMZw6Z6UhyuZFTwfrDL06aBmDdF39d8TXnZOn4bzgX5h499Px5FwT63iVdPZjrKznp8z20jfufB2MGIaKWE0a8VdhMxBrUU1DbeYya7Wtwuq2nHxJucP58AythayREB/Do1I6e2lT/qkuiL9bgKH+uAbroJUxCRjYe3zq5yPxIjPaw7PdVZzJSHdjV8mdSqRyCpYhbseCKFIfT1UrB8/h+rROjxTNC5KdpgojCz2I29YiUCsCHfuu2hRKIwYtJRs83IrzSwMlMqNlCzYzXVG9kXDBchCwRdHod70vGhwHIWoe39OgbwQi6N1seP+87fuAnw9Ky4tPET36RA0kOCEtcbXpbq5A5SQGR/riYf23ZW26yj7aq0Ur1eW5ynfQBrkUVNIfo2C0bCUgKUHMwpHl6RUHIYoVl88kFItPywfTvYNG8nMpUrtANU4+s3AdwONleg9T8zGXjeaeS8guEQGIAzKrWp+hLZu7IW2kkpon+8eZIK4TagDW8oojgth6UBz6YpK6Oh5xJzJYFsc6WBpo5G32ckm7JuIbs+YgozeWbq8Ln0XbVhzhf9NM4J0aoTB11sBNWEkSbMetbeuLLOIYnVnvtGs335YgoT2SKYwLw7FzlQxg4wM4guOvR/G4/PxkFIc57A77rJG3H3XJIDJeG9hJ4LmkgAaNcHAmKgu6wMWVJ2OC7NjjGwDXzlwnJZ2XPlSSp1Sfav0hjkZ7tZREVPx9TAEIFCr333A1lqfUVvSG3+b/MvS89Bs+I+8tiSJynDhygFigC00FyVSi9tHmSK3LznP9pCRn31g2ufY+t6AOC9bpAc/cZYUuesMhyBiMz/0BEPWhCPJR7qzLUHMXykQ4fvSR1QIOJjeS6+lGKENGinYdmUuc+9QF8gKsOmYeS9W4Jssap95Y5Bq2WBhzqIg7eIi+xgn5848PM5HvXdlLO8b7BoIyZ9URtY1IYaovkZZf+mEKsBk1eTzasVp4oEIJd2Hua7ZqyWanAymduc+hyx9SoZewPE7c/YyVt+Eimm2N0UcS3h+A5m4vxhs7QMpoV4YZJf7L0ddoHfoYMNkX2PFucxEJEXWEKXw4OBwmBiHKlwgPjP8qFzdz5m/x7vf8FPIxpi9tBfKI2YJvypoKWT8ueDEyYD2Gw1hcpX8X89TjLzQbpmZKM55NyE/HRBkKVBpVb79GWs1iFZE8n1tLnIEF/ywaHcuPFQ0W4ZKaldOf2nCW3Lb3rhsf8acyYAJdmKNSIeHUslOHwiavWTfEi8lvUjL50nfnQvKsBb2GGxf7EV4giEeboze2zbdOqlFr5c4Q05nmRZfVrKwtcb9WqVJC5tAi1I6Lcco5awIfYIeaYLzEINkGmsThlK6EL6S5tgt7PEvQwI2CtAGHHUBxewUvPLmevHOH0RrTQOfB9oH2cP1IkqsKsE3N4pyfy4eYFdtfMUupd+W0vviTiW3in0JV5q5UHuIwFaIm8mTOAsJ+vmIDchYo/dulixk22tK0p5Z9x92FxYKt53nzuGMaVeRu5zl7Gj/0D8OfykoLNLSNJkVCcLKNAYT6rVGYaSRbXRXDS+foseqqKhZaHoLJQYtsbTfNQVXfVcyeqx4P4oOVGMXceXG3TbUqECq9+6XS6qRPJqnn71ltx0sf84Alw8tI25HzPaxJIG1jbeRi2/Z+VHnSDoXssxOpHiV+ttkdhPULtTblm3CL8/18vjP++isLJa05yEbn2l/LEDFXVfGaim/o9NsfGacKWCgghsqEF9AP9iq5KmmDy8jXzf0R7qU15A4zc6JLbHSj2cT9TaT66pzkgsKPN0rd6ZHxL04LsSFBbgm6TxSG7tTBI8zQ5PaYt93i4zxhZxo7Q3yWk/MgkJLUQqZaCnFnNd4Zc+lzn/06zflybjbLAn9mNO6JZ5rd96IneZzPHcdWolWlq72fVliEwxZNc+XjFSW6swMnJQImsNSwmpLLd38xqrzM5gE4QVcjkGV8t2Mee/wZcjplckzgp30L+UyK+I2tgszMbQMcvEZ2jyvJ/vc6U/bHkU79JT6fRE2Iw7JVR6OdJ+upI1Vuuj+e6FsvrIZD5tiRGLiUh2ZvAzMoMfI8QhSFL1yVmwLZ7Xtxhrq3160W1Z4dV8B0m/ptooxTsY9XCl2IcqAmDtOySIFbM4qLlqkpP2zjzGyUJ77qmEk1MgLJT2o7JzWSZtw4tk2QvQpw22w8DATqIauL76dPFtf2WkXDHvjZf46t5+QeuZoQGErAjG1IbHVzWxNKlrvpYV27ZSBQOXJllutgn4RJZaTg4Txbs+x4LK7leK1bwsl3Zd339zOuhGH6/OKfy7JjdJxLtefj8IzLdFpOYoa2VI+TN49cQz4AukgBfdL7WtEy5k7XwehvJU6H1pVNIxQ5GmhII7JJiX6Cr4fr5hJTa3sZ9VW82jy70i4mBg4c/FDlR5lwsjbrqwwweZ5Wc+kXALiZMRi2mfBc+GMZmTdrx+/L5lX7ZXK5Zpra2N3c7tr5ncW2Tmdh4euG/+65Jbwq6FSB4nZhIWRyyWP+qAS2jTUyZPgtolhb1po7oZeI3jJb1D78kK6+5fkqu1nJDFaFPFwulnm7bFmq5zCaOt2r0LTnIe8pT0/CTV8wPXB+Ug3VWOvuH1VCkt3m5uv2nC2GY00eGtsLmYoHeXW/FMv9TdVjOy+rwltW+oux96dY9VMcn9pUZZXUOW0CFW+6eDq7P8qlNmkI4ILqytoEAvzy5MWavlGwOTB3TQQwTJqZYKmaPdVKPvGdOgG/ZfODFI3qeQs0po46zjcbNnUsjMvM8cx3rtxXPPYdout77yC2nRROpXmg6pD1OWPbepx+DLNedwYg3JT+lW9+tzxTuPr2Re6TZE+YhWaCa90fvxMGjTkvt5LSryswN5iF2IuXidupezjs2COY2/vXi+LbGhVdOcV6+2NQM4o3f7QKItu2dtCsrn3iKXPMJ2Dsab1T0sf5PZYoE+gcxzrLc+K3eb2oBsJnkb3vNicTGjz2etNBlLBToNXi1CK7bJRfH3weZhl/YzgB+XbG65tj2WgVpv0BiLsqtsJ7rxvoHQc15pcHn7TpWHQyIrh5BotO3xpPqlM1t6P80ZcpM2YOLbIAwgUeoKEcEdWH4dWzXDxQPrhqFZVN+VXmlMCJWyd7dldlgvQaM3MJPi9k6h8u9Hn1JpeEKC9V85lExwPWtEpHC16rtaEf/X8LOT8J/vVhqkbfcpMcO/0n8SI8nG6NHBx3AqM2fAffle0kPB8hJwHUhBfTlOGDXYOvznrYbSDbXGl91L7dfUHmtBqzdXVkWcnUqIdFM9HWoTL7uI9OU9nb/JgKlg6zYUnnlYnjsVLcbdO+U6CylQBzMesSfqJbMHGANpuQTrYchP9uU87RiWiCsgE6xbywRRbhh56UvA6yKHpFy/Srns/77vOAME7FZSIUHGxmPOui6WD66uh6AnmO/6ajbQ1X3MMcMOHUX0Zi4ffSD7FyGVQLoN7KnnPwrTe/QO7jtNTSa4GK8JK7nqn5y/hC5EC3lN7ixdJtAj0Tr9a/1qhu54/5kuZNN7sEiGfTZ5XI9X+9koLeagMx7N4vyrYTr0vraXWZJulnObDTVK8oh29rdVCimYYGDK9mloXM6GMzV24KiEy7GcVsN9XEbtyWL4fomrtnalYYH7qWWtKn3KTsPXJbTVOs0skr7de1atwmi+InYv3IGWgWMXMmSI/m0smirex4+Js0MxhNk8cGvwcDX+Z57bhmKYzSb6aeP+9gXuEPJekLy2p9y/HrOIkC2fopkW/cTKTQQm+V9c1Eq3pF9GOzZ8xerOsmUmhmoCEh3bOtcJ2qexMdu97VEVXcwRCFVdN48hmpk/dkP6vWx/u6uQ6ZPtsBth50SGt2i223t+2rnyOUScuJXG2QBqes5vgE4WtPyzh2uwiPSPJAq6Zt+v7LnWpZjdDqkGW+Y7V6SC+Hs1RBo0exdqnD/Un2tvgEFAuLnFbOT27EurVs1UY6YeCJYXBiJlGWI2Iytme5vbgrLWxgxwWDflgy/hjwJLV/JWPy4pc7EQZ2keunWg+mwamK40ft1xCnlX78kaWbz65/bVmNp6tR5Z0cEVFX9CgISW6F45e3ln308NZwkDJ3VIzq3B7vaeD44XnztKxK6lC3UJ1UZWCHBh7xbX05t1Q7Fosg+OMvwDUkKHqO3ZF77M1+h6esfPaju/bEq85Oq88eC1rT5c85dwk9IprOtA7Te1d7TNhXW/lJyZZShavcexELG2NyyTmRndWCDJiXTHWWK6ZhwszJMv2pZ4lVnVDjHARu62RNYDHr8rjsXgrOj17SeiK+WN2L9tgnKDtFzVj7Q3SX2nm73BH42XJFvR7wzc8UCRef3Veg7b0wYCrVUK3I8476ltFLeEdt+9qKD+VWBKLuBZ/P+OL/tVhf8wWhFX2dXEFyuf5ZvY8jZ904tXiMnfqVi5UxqH4bWosukl3+NluaTz+AB2iUbh09ux8fO11VVyT68FFsypGT5tWaLcyda+NMn60n6h9MlG/HoODtlZHgDA+U8Qb7WeN4HClnqkvQIfO6G17+mAuXNmG4diU7o0h6Q/PVBBR5dfLBD+Mqhs+GEF68vwrk9nHVstHJEMJ21bTuOliWQzM1J8/Xq0NypauXp9epp59qOzHetvZu+YM4wh7CV3Zhsd7tUxE6cBgKGjyIDOqPIIF25bznM1GCtvU7DkLaiu6ulrrz+qJstTfrEGlmFiYPhNIIHwZXh+RnJZrLCqVbgLfPVWrE+jCwJqr/fCaYOC1ikAvbKgadQy0XRJ2No+mJ5DbizE7GsFznbcnbuQU0gStKGviS9U8DdStmmpZrhN7xjznEh7jlIEkJgLFZL8bMmOEpSRZ5oyTgUcnaMVKK+f0YSqW6uwb1DtIXK6Wl4MTIqiEKocuovAUvN/uy97chC3IJuEbubhiyNNCpCVwVctB4wphp2+lkG50KUqc//UCysuifte4kVW+oEK2Bj34wp8019Ink0+Bm3SJj1aLgJGsipRiMtHxrsiTziKOZkurzCYc0SSPi1+EX5jJeqk+om5Ux562UV3k+vIV30zKKroNNbwvB0LEuASdD/lNza2vXU6dqw9tHLZ3t3iu85DHuaHxBaMTEjzidjqnUuE1T1rroyFwObO+vmcARfDDjTGqNItqV/IvmaJRDoZ3lVa7oqHtxD0VgvVc9K/FWPVQoXnKtRA4v4n34j/PVN5AzGsV0/NpO0WH6iaMPSwe+scpY9TCB46GDdy13NgDaR8V8c90kb/yvKRBSjP4EE3n3bBNj5ka4S2IcOk7LZop0ojysrCKEDYIIS9nL3gEPuN4SdXkkzt6p40ug4ED+p5FEDvtdKwR5ZgRdU7wFcXcxZGX44195rZ3uL9cyEwbnA0tr0UsaRwtwbD3EpJMfq7KeBdB1db53KUL+PJFBr1MfblkbeLSvpWhHSHzq6/6UaBvxs9vkUzzTb+F67dQW0tcJMFZgewj9fDFFpXJFVYZT+Fg2NGS0voi7p/jnuQMEyQUPCNobNGn6sGTPiqmP34ZLhsren6V10Eszgw6T99rCv7VkFEa2kRbh6cR9dkXKzERYQVchGd6sHqTX98WmTCFlJMbLIjqn824Vak3gJbt0zCiXNDF6NrApdBqpXDvYW5wzHNbIlg3JKzq58HMIhQVSWM21eEMVeKdBPoht7DTnodAX0NdLNKD24Gk2h29B/O4R3HicX13RIGKatcchZOqaEgFy9RwGqvZl4+i7n62qdQflY0fhyPENRZeQBsz99B4GDigtvC2VNwDzrB/uVBuIumlm0WpUKGp3FfSiprghpwrMz1IhVI3+2Tek3E3m489eF73pRAi7RxqSOHc2+wn23Lic3aTgcOuChUlIwP0jt7jgsZ9y90D6+51aO+8KZPH03jhX/FoqaQWe9M/ZDVWNR2trYzoaXhR+87iRfu9MC/T8SXoSoQH5XNMVrycBeeCct1iPMhN2yXTwvL1peakx9OgP6TbRz7yCx/bPPNSOB0f+g6CLjXOS8FHiIhvqAYrAgKLGIrGiBno+Aasem6oofhBT6ySRpZUno1Gl1aUPJ8VHkHAIx6G3Uvx9rZEU3Y0+5UXQ3Uj3IwBNoV4rhOsXkGmTH0C6kzVBTdqkqoKHZWVXtxwjOcRt8fpG+e/2ayJ4fo5chzbJp7Ik6RqMWpUeu1z68hUkVNQN4+4zHusRHkxAt4UH3PFnC7lsoLoPsI04rs65kmPjG4CblgttWlLV/fq2d3AUXfrmU8BChU7+GW2yy47Jcqi73gZrq6eCSyyMDeBlVp4oHrDjmRcRXRhywkxjeZaplpuypcgkUt8KsP4yIkdNbgW8x8N0d85SzMjd+Z3Pasd5Rk1Xirl3yXcsvg6RD9P4LJUzX7DDEvuEmMcJSpy4hVqgTXmuWU6y82+syjN0QwMLpcXgi5rSMk8WniMlljz5jOrkH0c9SBWf8Gnq7o1mvJIiUpxhBYWtlkLo+60zAsvprr7nm+M+ODyl62Xhhf4mWF12mpxr/Obi21ifYqfZLxClc4w6DqzcCWJI6OkvayO/c4sOmOmETY2f7yCGy/zVdOBpiBN7Yj75LGYGugcXyfgE9E6tlT5LruxGU4M3mxhv1uwys14VTx8qo9Ce7xltKwpIjX5XjMJa0VMKPO28YydvzxiohIyvQUrFuYNs/nQ9vb7zPbWeroh4tidiOlKDYQWGHZZ69e17mkO15gOFn8Qq/nsPSCw5jukCckhbcbFmGD4HvYl9a45iXPq1Ue53A6XY6vbtocSCBUfZ6P25POaIqd/rIsnQ0p/V8jN6LWwJaFnOz1swZNN4fsKsiiJ3FXuOrZuw+YSemZuyx17AkbMgkysbZM3pEh+Gkvc9K5Fc/Fdw6/vLMJJCX+EQTC0Mb8IxdTRXc/CfPG2GYnWe9+qAYSiD868eRzPZJJDrYz0E7yDi8yextO4yu98WqjbpDKdEVqUcFUI00DN6sBtyHWT5z2rjRH0UqCtVQjXt5gy29aSQI2wRZNYRQK1jNVRz8F7bDHHbqfKYiMTRT4hPEDf1elD7dXRzShKt3OKNByZLFhIPH6XRlJvXVvTptQKW6KgnY57g3arVk7SuXiU8xa/pxXTcAG1kw1CKt9ok3K5HrlacQ+ZIa3ORyKcxwShJVDdhs/WGwfeZzYwKl34gD78if8S3IUqzsA71IR6sg8JpO7Sod1qjchR7CoslY59JJ6tz5bu0PuBee1CiN6aU4i6bgnEFt30pYVgaLXGVyyCZLCFggvMadqOaBEdW8rBsshectKCcO9f2odBYdAbMLLPGWUYrl8jKL5FNPFpU1LErS558Hkwq7aqd7l8s8GyBOsq5wOFZL8o1FltM3Ol8Y64WNio7QVTOSa1uHroVm2LbMjmaJ8CFWl3uPVQpTSZBmm1crztSZQ3qDw9SDd0+JlmNsXm54suLFe8+KQQpyl0lSIQ2xmr9X0hzUUHfEI7JJop7ihM9B28kZZN/ZXcVLUUNgcC8yIvc5RPEQUJX9cHGpO+0iS7LSdxzlQEcZ79krrGvyxLoUMyTlaqetXZ3mpsVC0fQl1wmVww5X7IZvwjBtTVEjTPKDqWfCEUzkIqPNfReHLHO5gPHsusFbu13dFNwL2UcUuhiumqPVxODLw8mRN6qXjh6JvR2g0NiIFgrAc6lPhQOkwQnQslaNvIftC2+BTRSpvGQvfn2iuc3iFSMyFncX5adS/gYDDqgZMaOUc8TqaVYG7hYF/YXZhoY/eAk+q+cn3/SJ7+jYnBKiqZ4prRz/xs6okYySQhJXUBkxSvEfn1mZ6mGik2difPmmj3F5Hr9kfDybgqvM7wiamZZFAf3qasilAzlyOajCEz2HGZ92LoJE9466oZ0MTDaaLz+gn+QH6eqV31Sp8IWqXj+JQfB+M089CKW0B83+JTGha8XUXopdqaknZZiPOJhSVSdbQltxnfug7ozrAXlOpAop9DQ4Mmm72l0CTgBSsuWLR9N9ZMgKD2yhibJ/Xaq85NV3HBoFwCqTY6tK5WDPKwDTOvOQRfPPLLgjIp8AqTE4G+7bjGeVxwhjen8LViBr4wCJSTmU8/7L1O6h83uMLu+r7yi9pnGjf0Bvi294UMF7/o1TWTwtpYESeTrst5NfjpevIi7z5683RRQiio218JnWNY62p5J8oNPS5Heusrb6/kmnhMsfpNlMdNod3AIx+4HaNDyM9D3SAU7HjtzoPz988K+Fx5/MalV3wjSgDVEEadWkuHiP8ZIsrN5wWpHrazr0uHKCWvWyt8TPqEeBPPAFukLXNOJmYlw3R0s5QDH3uJjsxU4mkHYYCctK7NCvKDHAO/u6WcKMvXZ/u8/Dt6YYgubEzS787P5VXIDEGNXG0M3PLI8GXMsL1lXI5iXYxjydJFiaSW/3ym2H26z4bpYu1IG6dqfvFzF86XSXk2xZ+yHq9ht8WHTmJnFuGHxlt2jGRSeOuvTSK3Rdog58BOYUJ1Kw7kckJ62mQZ2Bhmvle0Vesq2r73lAc3QYDcUKtAyWmcOrfGZVaHcDJCoa2xGKpff6mXpCWAwk75vdhUY1qXk2MmSmJ5yVIhN7VqTjK8Wi9F7lOPoqpgSGoO8qT6jBrpys189SG6nUXrrvapzkSHGymcvRH5T9lWcNWJ6O7DMF4UwsqsY1P0pFBPzXj40VIP2X/RsI59zNRfL6s+JhkqDsl7TBBR4N55gxdY4xc0FFPVnvhSwWWN+RSJ9AmK1PeaRDj3s+C3YPmO0fWkv7QcjUwR3GYKtzjvmO0uAv0BttbAkFgm5Hbdu3o+ZyLUa7WYaBKTtbFq0ppa/hpMEtGQCwlv80R1EE1oV6TSM3iJOa69QdbcJZI/X92MRGnsh8UrHVZhAWuhjf0JoZLskY6+lBZ+faioY8Lzt6hnBKRfuDyMenBm7UViW9LQ+2cC/FKPW/Et1YJob8aew0h4LpTMJ0pfbsTdo4nYChuDSaQ2fUFjMiclSWM+JkYbvWbFOc03jXSt2Se+v8LwvTN5mXLhZOfrCxivsSTkpXQILmdB5yGIZVx1Hb/hdvGMmN1kp4aOm3UnvJePtB81Zsb5GSLR1KgYxJHHhVi8XW6UV8VZeJj7PghuQZ4TnMsxqdCHSZfv6m49r3/eNHcUszg3BXuIZ+gu0w59vc+wwz3kZ+139OoLWZ2/uC1HhhnG6GRLQVcEf+od1JgXkXiHard5weMr+rYAGrNLbc7j6eG33Zek0KJ5JHHULUwc2p5IvQgoJUEUtstzudY8qSzUpVzuQ35vKTOl2Cchej3aj77R8FNYw1BIvuqaxSN+ivaLWipXBxern8DWwcnA2PiR2zxh3YDnKtd+3Kcl7vauoDnRwU3vbn5S+/bUEk9mjxoWUsVKL0/Am3eFL/XG0zfqRmy1k5Nhn7lZoFtPJnvXI142i8SEilmORXRalbhzbd1QAo0ogy5wffq2N6PScC/ry5EeJXqHqfjLSyUJWt5emEPletibK6/e4OegimKlfJqJjeA0LNGkIOQUjmhR4wlAf3tDQaIFSYKm1lUYxf5mg4duubQR7GMx2Epi1siRQEfOFvmOjekPqpUU7/HiyDdu5owIRXmZ026M0agWJ1w+t3mBnIP6RZ3gyB0H3ceLtoXPKlxb2ok7GWOvp9D1RSBOvlVh6rn+TMcvrrW+oM7IillFPHR6JTvv2qc6GVQ93rgICaKYNIquuFWJJRVObJllFsYYGqfmuexojczquHIzMcN23+4Wp/tCZtWAhwWiRDE1ydMmExUWnOdzVz9sfPKMdsacQ/m6uNg+PDzedr/W8GadtBbceeYnqrJwH63Xm67LdUCXxVN/VpIlGaZtfI191kED7i5BdDDzvW0fGYPG4ZWdwroGWfme2gcYKxSWDAx2iHcxpD4/iU4JZq7ffu+k4UJ41XtTLFhzruM+ucRZZhIvtc9EOOfyAa2ar4CrLyG+gW0XJoxYikG8OyFZzK2zWBjTM1+jD5O3XfbODHqZ+afihBuquh+j+O42wsdc1mKItcmC2ChJzeP2FXja+qzaX1uFffpNkkgW1mB4k6EonrqFv0NbcXLE4nTeNUYi1gjtGeXPDS5rlsZ6REsvE/lxzql87rvsLppN7KBH8fGLv1Py61hnv2gn/6K46nekmp2iOOcGd540rmKGPh1n1xz6tDJd0nU7JIH3WoOZJ/bIGl6LMavfJ2JizrAXzw2y0lVwbvkMrESmzZY+n3nH/KLmflHlUAYDFfqjDAZLUb2rotixbYjMb6pMNkPkwtveDtAgr7NXhBCXMYizbHQbLtYbZbYYx2zwfulkdL9bH6H5Mh1qQ+MFIdIIjOYLwt2hLivSgEs42bSyD/gsh14YZ8mMbKFwmBoncfoJWevSDZuJ9cSPPRabZM7w1vSxiXRfO4f4VTSIYau6/M5mjCTiu3WtLAEKbRRtM0NqGq94abV1OMTrNrReVkbFywibqlRvpd/pxAwT38re1i0cnc60abv29kFwjkzqVXO36l7HL/EbseVzjNeQmkZqN+8XXuEsdk8NNH1SzdrUObtYIjDf2aLN5uSy7Dtw5j2cui65s+WGNstqJjYH/tuYOHjWLhKCD2GR95zKTDqQOhTE27P6TaMm5ZR0zbBrYY1ydJREcm06AkM4n6DN4AXGcV10dukgrpv+aMbkptXnnl0gM+qXp/4sXfN18YeGKccpNFbD3Vbk8af9u0RTDPewoj9d9BrohN7O5H4Kz4TnqR6kFVXMGOvQWg6TvGSivoM1XsH1iLorS1eU72LcUwEHhqs3l1oBF4ztS/c3ewtFLFyOnKxkPOVTZjdSuxy7wazm2K/3jq/oYSaWgymxDssqEwEH71ucSf2JnhdhBsZDo6aY5vrsPHkk0UbvbZYyybVKQ9g1vKTv+BC/fczFHQozwHJmzI85Vmki3yYwuKnwBQOvdikDbfX6UJ1aOB8clqkOt9OK/6sZhugbuReSGw3fQhHwL1nj6LRh0lCG1bKFQTDdJPKIJgtGLHispvyWdZl0oFWh/HZTFJYM7qUQfZ4sCno8T7cggnvDVuajSymDFYlqZLwMRHHXrn416DFfs2l83xRUej3UuDuVoiWCLSIm5BGWiExGbJWLVcdCTieB3g2OjuWeR5u2K9N1HD5YX0wvfm7yWfUm3+FgFhi51SSp563Kc3tAUEuPjYjZxzOS3ZSHgVdtnB66GPlr6pWGWXl89bD5a3HT7XcYWqRk2mjPNmcQlVVTLUsx8F6G7uTYmrIdgBzamO+bWHNzX4p0ssoflQkw+qBhIpdrgxAv7syh6ayDBc0HF/CKtDWx+E6Sm2hxaXG9gKNc7BsRZRqfcDZ8/a8UnER95dloV2BLStjo10J9RdbeOYfiE3Ny+VyekLNK0Lrv/0QtPfB16Z1gubJoy8jI5JJi6eCkSpr51ecDcqTceZxIHU8VlXMdeAipIukjNzebt8sjiC9a9X2Q86x6l7QDn1nQPYnIwUA4ULCxG6uL8JFGp0im8rytuFepbJwr5fP7K5rmrv5aMZzPGpZ2yap6C79kSFq8urs1RM4Yp1czcqEpA1vL3MNfy4Pz2fbE6FZriWo0bH5T9VxgVzU3r9mQSXSkTGH3FiIHH+HApoOs35RWDb4Lp+imE3VzlebA9NuXHVNyuSzPkag00t1fl3oobLAz+ClrVzThfITRPsOfFa27/drLk40hyN5CtK2xqcidKMZQc/EV6TtvVnMWt+EbDcQbvhXlfHlq8HJ5imcLfNwTF6c1Co2UJbyUne6Z378yuK2L9I62NcnIAEYZmZGqgFKanvfFokuzPCXh11buNqPVKj3PhZiaBCkc8esoKbBU9dBZLQxtdmgxaN7L6aqTQbjawlo1XZ6fJ7XIL7QJo9CdRcs07GOoIXJfSYdmVrhg0DnXSb+l7cFXpQUvV6D4HMoiBrgRF7gb96iN5FLAraou9vvKHQJ2rAK37huQObvbfyumaWJgZE5mb2FiZELmZuFsDnithdO3sxaA/cVkgE21Fma2TMhSRna2Cq4mjo4Wxns7YSkBl/8I2DwbqCgvgYJIsLcxVkpS9DLgNx7wBx64X3zU7eI6cEesmZCcEAREXijSlgFwazKCvaSmEwQEajXwB3JWOK8WsA83WEpUSEVSxqgWab0RGx+mgd73KlfYdpCQ4hYX3o1BMtYwIkmUF9ev6PgKCTrDducKCG4lQexAqyH1imCho981GMXYDWok28JLOZOCy4yOxQw97kNDIFVPVmWi2NcN0eLainxrzOfeJUh/Up46P6Qb7cKBZyVv7sQOsG/l2BqGYDtJttahoF++/DXH0hqxye9Opr2DnmbqriMvHPqlFlkWCEp2c0vapxnru7MbwbtCrEq7wzf8RksfVX2pKUgi1TByMmvbZSYl2dnd2WDF89lZGPWRU2bUYOJn3dl9EelpgLMDGY8i34buuyv7HHOXy1Zvw6e/0oJFTL8dvsGjv3i3iDF7x8fLbb4mvGrCB0eJlqXY3gFWa320JsKXtRxW8ApEB5wZ3j0I9Ls0Wbs13h/bd9Ojzt8UpnFdXNneXdgRQ/6Cq5Djy/jcsM5WEd3XkeYOnIx6yW5Xkg70rYv53C9wrrfDsQm+JhWDhsdVjd5OuuSJeAdv7+hZyTsGpfnVmzU3yznv3LtRsrZrFpqzY4YVcf0uK4LMjs/SYr8PO7UZEY4+AkXN7YVd+W6VG0Ebk1G7AlCb+jN3NnbpZ7Nqr76Ka9ydH+FZS5KRJpFAfySWD8XCjKUWRYYllHfdD/GeGgfnVwH3ppu7nqu2UNR9KPFqfsrokp2tw9s+nnZ8wqTcEeERtFn32ndXE4t3GSguw4sJtjPnbAmUpKCLIWPJKpvKN0j20uA9kA1n0yLsXhhgtt3xWVxgQ9zZ2qnbzWwiQIa+dz0mN7BN/7YI64XHvhCF6aPRqjDlarD0TUborsjMdILXp/2J4bsLSwMg49S4WSDyEx6MQs3UzTg6QyAKSDb0PeyVgHtoDCfd9hAZ+sWX85zaeHgQwhEPMQxMNKWBe8elxORFnwnr+x2diNlMVJhnMVShAL/iIa+0+wKIreI/uS7gxm+HKxlYoyk6mrhamLjt3yz+bRO7kIuzud3exnKYH3vwRezs3R1/7MzfS6kiIa9KJmviBDSwSZgA9qEbWJMpuhha76WVNAKW8iJTM3F0Anp22GHF5AwsrH+886yLibWFoJOJjYUdo7OJkTmTkd1BHzOiKuAFZMoG1i4eZ9RNDJ0snP86RWLu7GzvxMvMbAaIGS6GwLcyuzgBXsm8dz14RWDdVrlvW+6RfjgFDhhCgIEAWsbE/YeJxPqczeWydRKhiMzS59MCixHAc5Dfz7m1RBUgXsEWjfOVi54jUX8CPAf1/ZzjLdxSM0x3uVhYFLb+mMBV4Dno7+eYac6O9z5Zky/vqGGfjJ8KBJ6D+XEup3r1+mSaVETWoB4K85Pub5WBf3waDv3qMuG1VaFCjAJ5nU+DKN/O/vg8iZNhi/YY7ZI3TIyztT/S7n47++MTDaKiT0qfCZFOrbl/HbI8B+bb2R+fKfSxtXhIPZHcjQ+wzQRmpV++nf3xqbJDyNyVh9Nl0/IawizLIdePWwkd6AmFAMTYfGEIiOvChwrE1roBzpIJo+yJYgK0JRg4G/ywKwB1QJQCFpI/IA/w58zeYSnjH1BiYMpIFyNHRFI10vozdjhifpz/gWWzi5RFn7xV+r7CqFmD2UWxH+d/gJH3H7mk3PxR8GZb4XX4LwovkRT26voe+LvA18J/O/6vP1z9JOhS+naOdFEtv0pLhRPmXy/48ZdrKTFEgsoohKLvrVFjZcdHfbuhvfsFXgN4n39bNVjo+xgHLDh92OK2Ny4ChkNzA2cyA8e90vC2gLN/V9D8cJs6aHMT3fszP1fyFrX9yX0FechhNXDuBct4KL1kRW99PfXaMuYxzW1/11z2LMRkgOaSflQ94VoHwNmHQvsYQv6CIcTRNA71vgM0YFQAU4yfWai4/5KFwDmoC2PUvmL3gxTyoz4+LDwNFgsgWZAJ72MB9QsWWMD7OVaN6cOR6yCfY1d9P8xnYXkXdRlKXDYMvXmo4HaB5WnwkRQGxcde+HtP/qvDgSrTfSqG0sMjwrEMpdCA46dem/u65/e+BA9gtPATHx/A2Rah/Xwgf8GHXuhHswFGJEC8NmA0BsTrvcm6sYmRxd5QbmNgBQB1dLs6PJIeYHPm23TE/eempWT9b2IjDIqNjvB3Mx4l2IwHNuOBzXhgMx7YjAc244HNeGAzHtiMBzbjgc14YDMe2IwHNuOBzXhgMx7YjAc244HNeGAzHtiMBzbjgc14YDMe2IwHNuOBzXhgMx7YjAc244HNeGAzHtiMBzbjgc14YDMe2IwHNuOBzXhgMx7YjAc244HNeMc241UBfyAlvoY9BZvxwGa8/59mvNY1c66A6PMSiSQ6OCQl5Z1gM94JzXifxW24WBWfSfrCyJKKI8To7zfj+Ztiyfa7VsgW8jEtBz0blNpvxvOgtdEZM6SQS11x0vG9f2ZnvxnvsWPu+CMqKqnYcbuYrdal3v1mPE9ul0+paiuiGY5PaV/SkqAdNOMdbZmD/BvL3EEz3tFGPmiQVj2Yv7H5/RMz3kNhUGa8UbAZ799uxjvcTv+nzXgpIA1WpcK/bcY73KP/h8147SBZjP57zHiHo9MpmfFUlvXFccuXpSrTQnGkx69NnQafZZB8YET+42a8w9H7v2zGSwFpOHsu/B814x0eEf/LZrxRkGx2fpjxqMBmPLAZD2zGA5vxwGY8sBkPbMYDm/HAZjywGQ9sxgOb8cBmPLAZD2zGA5vxwGY8sBkPbMYDm/HAZjywGQ9sxgOb8cBmPLAZD2zGA5vxwGY8sBkPbMYDm/HAZjywGQ9sxgOb8cBmPLAZD2zGA5vxwGY8sBkPbMY7thmvEvgDGV3pKAU244HNeP8/zXgjOKxxkYySMlF1Vj5U+QZwYDPeCc14WxdD6S6iTMrG9TpDl5EG7BnufpjfPty/UPRVW1b0Jj/ckAq7Ztl+Mx7y67JKSj40qey+dyV53d2m+814KV/pGuvEcgTD0KAHCHcwOfeb8ez13o44b94SzBPIGjnDCTf4TyrjHW3VgwJp1fv3m/HwRECZ8bhFwJXx/t1mvMNt8X/ajEcgAspgdV7kt814h3vt/7AZjwkkC26Rf4sZ73B0OiUznk15omQRNo5kRDrdF6yl2a+nwUcYJB/Z/7wZ73D0/i+b8YB96e8NZ7Qi/1Ez3uGR9L9sxuMGyUZC5LsZjxpsxgOb8cBmPLAZD2zGA5vxwGY8sBkPbMYDm/HAZjywGQ9sxgOb8cBmPLAZD2zGA5vxwGY8sBkPbMYDm/HAZjywGQ9sxgOb8cBmPLAZD2zGA5vxwGY8sBkPbMYDm/HAZjywGQ9sxgOb8cBmPLAZD2zGA5vxwGY8sBlvYdRHTplRg4mfdWf3RaSnAc4OZDyKfBu6767sc8xdLlu9DZ/+SgsWMf12+AaP/uLdIkawGe//qRmvK7qMbR77k2ypGxoSQu16N9iMd0Iznq90PKOvZ6zIHbhz8Cv0XHb7zXjh6+ZsSaz6YvGkG+aCzAlm+814twNYjSTpl0SetuO44VZvDu034z1M7g+sEaoSScP5P/buO66pe/0DOAgoWNSiOHBgUHFQQSviKI5Awg5DVGzVKiEgRIEggqCigEZw4EJxVQVFFDcOoNYKKkptrXVeZ2u9buVWO7St4PidBNKbcwxfVpKT+/PzB76QA0n9fNfh6fN+ncPDHe073FbGeCZ7DJ7FJ2723PKFZ3friz8/p2M8JoqjYzzVVK8RkerVDuMxIV9dMJ6QhPGSkoDxNI7xmHNKpzGeiAisIhqO8ZgrU4cxXhwpC2rpaATjMXcnNWG8OcGpE8LKSpyWTFzZsUmRg54a8kmaT8xnkfYxHvO0YBnjiYjgLFq7GI95WrKL8ajVQ8pmgQLj9QTGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGqzXGOyr70HerWL4HT8bDk/H+NzHekR2/Nj7a/bb74tWmlwtP3Q8AxqsnxuM2nvtJW6sE7ka3IY9zVx91VsZ4YdvzXGccEbpm/bhm94vNvJfKGG+yXcXJ6UdtuQstxnd3Tgn7QRnjDYhv+sgjzcEllZ/33dntj8KUMV7B5LHlpeNMfbdlnmhu8p3lYDrGUw3q9IlUTx1PxmMyvzpgvKRVRIy3FRhP4xiPORd1GeMlZRCB1fqGYzzmitZdjJeUScxiq2YwHnN3UhPG83k8bfr1wVLPlY6XW2QtbL5dHfnsIOazV/sYj3kisIvx5GupenC2UbsYj3mysYzxthKz2a3AeL2A8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8fBkPDwZzzxgFcfcaX/S3KZrAxwGVAyfUSp9O+vPyEY9LjX7ImDuyA/df/jup9eJsySOzp0Hpa9I77Xrf/XJeMF/XXwpsrPzzu/w95d59zuPAcarJ8Y79dxx6J0xH7pv+SH5z4pAaztljLfww44CeycHlwOBRVEVBc2GK2O8S+1nbC9PivfZFzwz6kbkki+VMZ5FS4PjhzZY+mav7DyrLG2LkTLG6/pt89cmHv24yeOThE3G7x9Kx3iqyZw6MJ7qp+oZVoMA64LxviRivNPAeBrHeMy5qNMY7zARWBU1HOMxV5gOY7wSYhanNYPxmDuemjBedvcFNuuy/bxy951++KO4yFMd+Zwl5nNR+xiPeSKwjPEOE8HZce1iPOapxzLGO03M5rwC49kA4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeO9Nxjv7B6js5d9Gzst27iiu/cUURwwXj0x3tX9Xc35QkPnBU2vn9xe4X9eGeOtqWhjG3vPWXDo50KrLaUvJyhjvE+GxuVu7xjrtcnVxSh1xr97K2O8edLsXbfHtuAXvGg+vTwjY7oyxhs70Od0r2+TBQfCDF0fndJzpmM81aCudhhPNbczID5zz7AaBFgHjKf3Ewnj6f0CjKdxjMecw7qM8fRukYCV3t2GYzzm6tNdjKf3iJjFL5rBeMwdSE0YL6jT9qebLcWe0rIeJS7DRuipI5/fifn8pX2MxzwR2MV48rVULThLuq9djMc8EdnFeNTqIWXzXIHxPgLGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxntvMJ6L+9djHq867X54v5eHbZB/K2C8emK8T8e3NRgi8vI6OG7AyhV9TDKVMV6WcPD8AbulztL8MosemRaJyhgvYaj/8scLN3mnb4xo6/3U4qEyxrMP+Hvj/s0nvNJLPjAq/Ld5oDLGKw49dSp0/AiXTatGnW89V3pQW0/GI2M8JuSry5Px9PikJ+MZ85vJByUkJiSaL4wRyq42qRqHSmtEGx7ZRxP5lz2CFaGsNjzc+feVt3g5n26/suONw2rFdUUs5ec69w20+s5zne/t0JOhQ10U1xXB+My/NWzkN2Vc6ZlDSca/+V6uIiq095V9r3Hl1//7xkXb0oblvt7nmX9syKjTR6a1/OcbFO98zNqMl3a4i1PG2r96mO/+YpUSntLTIsZjzkWdxnj6fNLTzgz4DcZ4zNWnwxivMTELY75GMB5zx1MTxltgNvPPI28l3OV39p0r4SQ8V0c+HxDzacbXOsZjnggsYzzZWqoWnB0z5GsV4zFPNpafjGdMyoZryq/CeL2B8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPHeG4xXsCVs/vTjb9zWzA7KXmu2nQuMV0+MN3XkReunF5I9dw0/w81MFH2vjPGSxVl2E5qI3FOPpGybYDXWSxnjFbzNmmcumOS6KNBv5/1BT8uUMd6AqTH3LnsP8Sm6FOW/cMuRp8oY7/X66IrEUEuP3Ytt13XLWmpFx3iqyZw+kds1IkI+AyLkUwfGa0nEeO2B8TSO8ZjzVKcxXisisGrdcIzHXNE6jPHaEbNorxmMx9y51ITx7Nev8xti9plL/i//adWr5cM76sinEzGfztrHeMydnWWM14qI8dpoF+MxTzaWMV57IsazVGA8W2A8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgvPcG45k1KfP3kU7iby9o1X/00y6vgPHqifFKRe4dTqbM9EqzdC40+MyopTLGGxdjbeN6oqXLynkGE83EhxcpY7xdV4qnevWJ9Cp+vKmspDjwpTLG+3DbnQ2Zm1Z5zT0dnJbSOfG1MsabnHvi7oisUt9DcSWrc/PTzeqC8chPxmOCOjrGUw35DKuBfHXAeMe6kTDesd7AeBrHeMz5pssYj2tNAlbHejQc4zFXtO5iPK4NMYvemsF4zB1ITRjvg6kF2W6Tc3iFP/XwHXMlJ00d+fQh5vOx9jEe80RgF+PJ11K14Eyvl3YxHvNEZBfjUauHkE1SXwXGswPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxgPGA8YDxntvMN7KIJPgqJPlXuvSh90TH0vvBIxXT4xXJthqdTN5gVvm+C+iBxVeKVLGeAmZ1+euG/yZIOXG5NkT429kKmO8P5rkb7zoH+p64NvfxvKXLfpOGeNZ9e7/TeG5wT5zS0aMNR3VfYAyxrtXPPrH6POf8HY+sF8zxm99ZzrGUw3qavdkPNWQz4D43DzDaphfXTDeACLGGwaMp3GMx5ynOo3xBhKB1eCGYzzmytRhjDeEmMUwzWA85u6kJoz3orjApxM3WbD329RnB02uuKojHydiPjztYzzm7s0yxhtIxHiO2sV4zJOUZYw3jIjxnBUYrw8wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMN57g/EM50tnbHVc5pS3OV349pxFF2C8emK8gFuWLXwuVHjlPX56IaxcL0QZ4xk1H/iZx50i5y9W3t0kmpO3WBnjldw8+/mRk/15e/Rvf3fz4vDPlDFe/oq1ew7kB/NTl8/pWvLl/XHKGK/iyeLHoe2ee+z+u2DnnSuXKugYTzW30ydyu0bE5+YZEJmfOp6M507EeH7AeBrHeMw5rNMYz4MIrLwajvGYq1aHMZ4PMQs/zWA85g6kJoy3ZsR8/pwpV31XO/4YmNMyYIs68hlJzGe09jEec9dnGeN5EDGet3YxHvPUYxnj+REx3igFxusLjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4z33mA8n9BD3xdsi3bPGnYoLXSM/TRgvHpiPJObE7uad2rrs3HxJ3s+tr82SBnjxUeV20znGfMWD2jl6G1VkKKM8QZkvI6Ysy/Ue1940Ldtvnl2TRnjzbhx8Khdl6euOS2f9JotLQxWxnh7v3Iq39833ilZcnTnoCulOep7Mh4Z46mGfGrAeNxxJIzHFQHjaRzjMeepLmO8Y+NIwIo7oeEYj7n6dBfjHQskZiHSDMZj7kBqwnj2gaPCv2rc2Lu4eaedl3Pe9lRHPiHEfMK0j/GYuz67GE++lqoHZxO1i/GYJym7GI9aPSSoGKrAeB8D4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeO9Nxiv4hvD6dyRfh5S/nLhpjV3HIHx6onxZgdeaOKdne+cvHfCiQuWXbyVMd7y56UxggO7+Xtnr/oot107K2WMdzjFdMHIoZncxdfd1rbnzE9QxngT/a/dsVmU4LRwUN7eTm/S5E/NU7C3Nd9/8SZt5iW3YhOe6K+s61PoGE81qNMnUr1GRG5nUA23o2M8JvOrA8bTiyBhPL1YYDyNYzzmnNJljJcUQQJWelENx3jMlam7GC8pmphFrGYwHnN3UhPGE7Rz++Xef8Y656wNarpji5ePOvKJI+YzU/sYj3lasIvx5GupWnDGnapdjMc8LdnFeNTqIWRzLF6B8foB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeMB4wHjAeO9NxgvyM7SfM7sAMGBNwkblvzWriUwXj0xnkeTXa0DEp2c8m583jtdcPZPZYz3fOkTR/erb1yWJqTazmp6/IYyxjsQPDBmXdImb6n9g71xq0IHKmO8wR3FmYIT89x39O/9ssvaofbKGO/tvrjM7N6Fnmn3So0iHU8cqwvGIz8Zj4zxVEM+NTwZTy+RhPGS5gHjaRzjMeepTmO8RCKwSm44xmOuTN3FeNy5pCyopaMRjMfcgdSE8cwLTk/OWl/hmpr6oGLKuraO6ngynpQ4V1K0j/GYpwXLGC+RBM6ykrWL8ZinHrsYj1o9hGwC5yswnj31hoqpaeg22oOv+OfwL1zb+dTuN/fcHf5r5qScGWUgEAcprhUnfPpm9sQV3J0R1y+Z/v0B/eGbpt6S4JBwTuW2a1I160KiZZdlx22navLvRX3ntJjoWFFMb1neir9wqPgjJMHiSTOoeVt5YqhMf1+g+ZSdgleeiz8zH93qyaAT1f8nvTMEhnP40yJruyzjXPT0XvD09AqoaJfyGNEmzaSuWvI/iJJNuIli2ealV8O+ZTuK2q8kVRNAcSTGSFRHoHri9duZ/LDfZWvBV+1LD5tK9S7X6vgz4EcO1/b5d1sW3p9UeNdU7Wnn46mrFTzl8Gpasz3GhIVQ+320fNOvym5amCQ2PJgTFMKZTq04aglXd9eQHbu0g80KiXdur59/D7P61JkWm3FA1Q+/G1xAsIrgGrhi5cno8QnJJDWiTatGNSTTVjatIpWOxMp0VCdRFnFq8ZzfbrlmW886fVZv9+36nojqCMGIGEITWggGNYQwgLa2wmIjhJG20SHCYGFQuDwQxffXJqPcF28k6YVpzsmNL7nbbZhjRstI+c1VrDSRhiZMU2JWprSsDGvI6qY+LSwxtftwxnFCIiSTxZwETrgkVBJKvRb1aWx0OOdzRmIc2c/KLkTEToupuo2g9jCh7EQNjqZuLkQccYQwNIR6xSjqPiOBMzlK9ue06aHUS8WFiUVhnDhxeLhs0YqiJVFRIdT6le33InG0KDyk8uUrX0D+BtS3Ub8YhIcIqc/7OQyIpz6oXxniQ8Kpe5vIYM60CCF1eyPbFISRnI853s6qR1Qc/i9H8frjvutSu33uvjt3Jn3We4hUDaWHpoayBXEozWhDaVTDUH5PH0rZuFCDEfNPhjozdgP79Y2nPqodO4dqxy7z7aR+ryO+ERwdI2h399oO+tOtjTxkb6di8CI0NHjmxMFrQxu8xjUMngdt7KYLo8VCakAYQ+Yj+edKRIiQuqWvvDhJGBseo7iiOrjrLQ3WXLrGd14+9JybXX5RM/pNakDlj6o48yI1FJ0FMboOtOia1BAdlx6dOCROVW6yL6sIjfqy6sSeXSncMbT8le/er4SSO8PNGA9SD6B+TkVccRqKy5IYF4cWl3ENcXWjxRUuEQlrexYmlG9Ny/njE97Cu99+/df3243pd06Cqld6NxaBREOxdCXGYk2LxaSGWHiyWMJDIkNjwjixkeIY+S+A1KbECRZXJkHdQoTL7io54kjqUkStU3v0oUkbSSshb/nVrX6ZiVHP6BNpNPVW795ljY7RTGA9iYHZ0AKT7wxVgTV2ElGFuWnK9/6qMuxCm1pV1bxaRGQbePBu1P7jrqkz8yW5hnOe0H+T8ZO/zrvTyk9ko5mUbIkp9aGl9EHdU+pBS6mqxkn9pVZR8YNXtx65dyI3RzJv7sY37Uzo96O8/77Yu3nxJBrKqx8xr/60vEzrnldXWl7C2JgwSXStsrIasPgj3yFTeCv39+3svuelHf3Qc6p8oXdzcorVUE4DiTkNpuXUrO45WdNyqixqiWu3AHe1PHnDJnKPa9LMW3Ndt96/RkvKZITipd7NakS4hrIaQsxqGN+0MiuJvNAnf5WaZtA/dRVqC1dUVsTU58TfkNO69UqM9ufv6H/G8NV6b1G9/w9DQ0t7UbOqSii/qsokMEFeQqFlUlMNxWlUdCx1h648N2QFUHnxhLpjiqVOPupipOyOU14RkZ12ccJpnKiQaNnxV111pcuS6wln2o4XFEecD7r7ct1y+h26vLpSu9KKWhKTlVaqTYwqrdASU2tt5faDJ5ntb+fxpf3L94wdbMGrZ21FLSkYEVNoQk9Bm8UV/UOXux3dsM53obDz6DKr1fwGFlfUElZTYlim9LBQXWEOqaSXfunAcf190to4RIm7uDrUt7qilrFsQRxLM/pYoryiZxiY0UFQ9JXgUJ/Vdydkt3Krd3lFLaNnThy9NvTRY7m+ctbJopV0kRkv44bN1LWrSsobUF9RS3YWxOw60LNjp8AyMP5ns/id3m75E9Yf9t845M/6FljUkpclMS8OPS/NVVhm3OiQljHhK88FNs5PppyMWNOQCotaculKzMWangtrJRbT312yvZ9aeu6IsGv64FZ7n3qWWNSSWE9iYjb0xLRYY7ETlDs8WH7QJ8/C8f6GnKnW9a+xqCUmW2JMfegxabvIktV888WmgYXuKy8Un3Z6JSxoYJFFLYH1IwbWnx6YNqsszRzmbr7R543TtjOvvuRH9p3QgCqLWoIaSAxqMD0o7ZZZRHvdZv6Qft93x73YxvZROZENKrOoJawhxLCGKbqF+v8/6RaycYk+2nPQEZdNo8eMsv9Pv60a6hY6LyV1C/VNYaNbyCOlp7Q4sI33NlFY83Nfm5eqr1uIWSRraLeQlNQt9Ol87XYLdUkNvxAkuem8KsFA8OKjmPasdgtJSd1CsmQ02S3UztDx1et2X7ruvFV2/o+lf41lq1tISuoWkofAXrfQs7Zbxk5JiRcs2zwluOuMM2lsdwtJSd1C8qzQLUTuFhqxy08/926B14b2kdYHz+dbs9YtJCV1C8mHEt1CzH6Fj56cWlax2fvQI6vR3Ra07ctet5CU1C0kHzyd6hYKuHrisuuRDrz0U/num2xvrWOzW0hK6haSR6cL3UJ9ecvOP3ke6bzf9tRcv4ctPFnrFpKSuoXkcWmrW+ib0c6rMm55umyyGjv905SRUla7haSkbiF5LDrSLZTv4fKiU0Iz75zXRv6hS7qNYqtbSErqFpIHxlq30FtpimnYPA9+8pUtFvvNf+zKYreQlNQtJE+J3W6hWdwHNq6D8pxzOgZ93eXQiaFsdwtJSd1C8rzY6xZ6uyey9Hn2IO6i8W1ezxZ1PMlmt5CU1C0kz+ndbiFjrZWxtrxuqveJQxuvRbx25x4OTx/UsG4hRjWho2vOwdZXNnmvSN/8dKjP7+3UUU0YQoxSW81EDlMCd+6JF/Czv961p6Cg9AJrzUS5KaRmIk6qzjQT/TFz8rMVmYZeGVcdb/5gzHVnrZlInli1zUSyxDTaTJTh0yfv1NvDrkdaOT6b2jdxA0vNRPIUjIgpsNhM9Ojx/OFFt8Ld511qXfDR51O+Z7mZSB5WU2JYaCaqofjycmvzUPOScteC7F1tY+b4s9ZMJB/LFsSxRDPRO5uW8blf/zWcz8sdXOE+JszuV9aaieSjZ04cPd1qJjLxODxyVk6w4EBZd6eyFy/yWGwmkmdnQcxOJ5qJbtl4peoX3+elXHTyGPzb5cVsNRPJ87Ik5qW1ZqL0NRndVk1uzd0bduNFoY1jFpvNRPJcuhJz0ZVmog4JF4avOJ7h+fVkqwtL9GcZs9RMJE+sJzEx9pqJVi/t9HbJsGLvwlFjewyadPU+e81E8phsiTGx3Ez05vPTp5YVxblsv+1UsvpHy74sNxPJA+tHDIzFZqJfH13yP/ZGzM8bfa408aHRahabieRBDSQGxWoz0fOfJhlNWsEXFPXf3Ngg4Vf6kaftZiJ5WNU2E8nDGsb/PwAAAP//AwA= - Simple performance assement based on the following qualities of the types (No unit conversion is applied for now, so make sure that all your types have the values with the same unit.): floor area, effective floor area, residents, workspaces, construction cost, maintenance expenses, income, transmission heat loss, ventilation heat loss, cooling energy demand, technical equipment energy demand,construction global warming potential, heating load, cooling load, ventilation air flow volume + Simple performance assement based on the following attributes of the types (No unit conversion is applied for now, so make sure that all your types have the values with the same unit.): floor area, effective floor area, residents, workspaces, construction cost, maintenance expenses, income, transmission heat loss, ventilation heat loss, cooling energy demand, technical equipment energy demand,construction global warming potential, heating load, cooling load, ventilation air flow volume true iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvwAADr8BOAVTJAAAAipJREFUSEtjwAv4xRUZBMQrgXg3kP2MQVD8NxiD2CAxkBxIDcmAX1yBQUB0BdCwP0D8nwD+A1YL0kMUEBCLYeAV/4zFIPwYpAekFy8QFC8D4n8oGknDIL1lUNPQAMh2ygyH4X+YPgGFHznBgguDzEKJE0iEYldMLgaZCQagZAZNLYIKqv+fPLz8Pyw+DqyoqrEazEfGjx5c+r91+9r/SgbGYDWMQhL/W7tb/9+/ex4sb2jnALPkD9hscFqGCPwXUlT7//3z4/+xaSlgfktXy/+3r27/b+5shuO27rb/d26d/X/s2G6wGo/gYLCemXOngeVltPVgFgB9ATQbnGGgAtgseHT/IkIDFGcW5oHVsUvI/k/PzwGz3YOC/jv6+PwXkFdBqAWZDfQGKIeCBYi1IKekAGKBOMICGLbx8ESoBZkNZICyP1gAlwUaphb/p8+eDMagoHjy6PL/ffu2gNXALDC2d/yvY2Xzn1taAWEByGwwARXAZYGZk8v/c2cPgvHZMwf+L1wy57+EujZYDcwCDgk5mKHIGGgBGUGEjPFaAA4ipEjmkpL/3zOx+7+pozOYT7EF4EhGSqYgbx8/vvu/b3g4mE8FC4DJFCmjSWnq/r986ej/4NhosIKCipL/Bw5sxdSIhCMS4/9fungUnKLQ5KAZDQRoWlSAAM0LOxCgaXENAzStcGAAZDs5wQXSg9Pl6AAUfpCIp0GljwxAyQyUlkEZBpLjSWy2MDAAAAAHu7NVGNirAAAAAElFTkSuQmCC @@ -6205,10 +6205,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the connection. + The optional attributes of the connection. 3bfd6fff-62e5-4734-804d-1971af8ee0cf - Qualities - Ql* + Attributes + At* true 0 @@ -6622,10 +6622,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the connection. + The optional attributes of the connection. aea99c73-b382-45ed-b18a-aa8ed30485eb - Qualities - Ql* + Attributes + At* false 0 @@ -7024,10 +7024,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the design. + The optional attributes of the design. 3d7c19d9-0e94-4e0b-b04f-ebde9497566d - Qualities - Ql* + Attributes + At* true 0 @@ -7392,10 +7392,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the design. + The optional attributes of the design. e9acc5ff-1d8d-42b4-b915-de3f8c1f6cfd - Qualities - Ql* + Attributes + At* false 0 @@ -8035,10 +8035,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the kit. + The optional attributes of the kit. 21047583-629d-4167-aa6a-4cb2d3aa7216 - Qualities - Ql* + Attributes + At* true 0 @@ -8402,10 +8402,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the kit. + The optional attributes of the kit. 80560cc3-e537-43e9-803a-298bcf25702a - Qualities - Ql* + Attributes + At* false 0 @@ -8965,10 +8965,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the piece. + The optional attributes of the piece. b31967db-5611-49b9-bdd1-30b6eaf1e32e - Qualities - Ql* + Attributes + At* true 0 @@ -9252,10 +9252,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the piece. + The optional attributes of the piece. 1c707c6c-08f4-45b7-964d-cb440564438b - Qualities - Ql* + Attributes + At* false 0 @@ -9574,10 +9574,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the port. + The optional attributes of the port. 72195cc1-18f9-48e5-b328-53cca8b4b988 - Qualities - Ql* + Attributes + At* true 0 @@ -9862,10 +9862,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the port. + The optional attributes of the port. 97e0db3d-f49c-431a-be37-a83ef212b576 - Qualities - Ql* + Attributes + At* false 0 @@ -9894,16 +9894,16 @@ If none is provided, it will try to see if the Grasshopper script is executed in 51146b05-aceb-4810-ad75-10ac3e029d39 fe587cbf-5f7d-4091-aa6d-d9d30cf80b64 - Model Quality + Model Attribute - Construct, deconstruct or modify a quality + Construct, deconstruct or modify a attribute true 240086e4-878e-4782-bc71-8cc60f614535 - Model Quality - ~Qal + Model Attribute + ~Atr @@ -9922,10 +9922,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional quality to deconstruct or modify. + The optional attribute to deconstruct or modify. 196b81e1-a426-480c-805a-dc735d0b11a5 - Quality - Ql? + Attribute + At? true 0 @@ -9948,7 +9948,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - Whether the quality should be validated. + Whether the attribute should be validated. cb2c6b8a-c86f-4172-8e79-4cdc6e8a95ce Validate Vd? @@ -9974,7 +9974,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The name of the quality. + The name of the attribute. 22bedb77-ffff-41f1-acd1-d192f7acc91e Name Na @@ -10000,7 +10000,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional value [ text | url ] of the quality. No value is equivalent to true for the name. + The optional value [ text | url ] of the attribute. No value is equivalent to true. 9dc4890b-1d58-4037-b55a-5501f687cc83 Value Vl? @@ -10026,7 +10026,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional unit of the value of the quality. + The optional unit of the value of the attribute. 5374b35f-e1ba-4927-ab36-80c8df3c6bcb Unit Ut? @@ -10052,7 +10052,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional definition [ text | uri ] of the quality. + The optional definition [ text | uri ] of the attribute. f071e0fb-1416-4e8b-913f-0be7c5fd7fe6 Definition Df? @@ -10078,10 +10078,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The constructed or modified quality. + The constructed or modified attribute. 968d2f8e-2936-451a-a0c9-0296c4cd9daf - Quality - Ql + Attribute + At false 0 @@ -10104,7 +10104,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - True if the quality is valid. Null if no validation was performed. + True if the attribute is valid. Null if no validation was performed. ddc00d0d-59d1-4722-9ff6-8da77b9f245c Valid Vd? @@ -10130,7 +10130,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The name of the quality. + The name of the attribute. 7e236bf1-1b41-4b16-a66e-78e6c45760c7 Name Na @@ -10156,7 +10156,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional value [ text | url ] of the quality. No value is equivalent to true for the name. + The optional value [ text | url ] of the attribute. No value is equivalent to true. 32c40500-6c65-4812-b99e-b90e880cc7fa Value Vl? @@ -10182,7 +10182,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional unit of the value of the quality. + The optional unit of the value of the attribute. f473c427-f392-4b24-a902-17d1ab921cc7 Unit Ut? @@ -10208,7 +10208,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional definition [ text | uri ] of the quality. + The optional definition [ text | uri ] of the attribute. 66051a49-457c-4770-97c5-a5bb6ff18388 Definition Df? @@ -10400,10 +10400,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the representation. + The optional attributes of the representation. cfdff70d-86cf-4360-b0c3-eb96b5a5a9fc - Qualities - Ql* + Attributes + At* true 0 @@ -10558,10 +10558,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the representation. + The optional attributes of the representation. c30beca4-9748-4fee-aa82-b05552a1b6cd - Qualities - Ql* + Attributes + At* false 0 @@ -10986,10 +10986,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the type. + The optional attributes of the type. fe03aab7-f04d-4570-95a0-557a78e45859 - Qualities - Ql* + Attributes + At* true 0 @@ -11380,10 +11380,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the type. + The optional attributes of the type. 5d4ec8f8-f513-4292-8b15-50594db61575 - Qualities - Ql* + Attributes + At* false 0 @@ -17720,16 +17720,16 @@ If none is provided, it will try to see if the Grasshopper script is executed in c651f24c-bff8-4821-8974-8588bca75250 fe587cbf-5f7d-4091-aa6d-d9d30cf80b64 - Serialize Quality + Serialize Attribute - Serialize a quality. + Serialize a attribute. true 53b1b011-f8b9-4973-bd2e-2da57c7fc85e - Serialize Quality - >Qal + Serialize Attribute + >Atr @@ -17748,10 +17748,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The quality to serialize. + The attribute to serialize. 39c76f46-b31c-4c5c-b93e-3b0e0f4c0db5 - Quality - Ql + Attribute + At false 0 @@ -17774,7 +17774,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional indent unit for the serialized quality. Empty text for no indent or spaces or tabs + The optional indent unit for the serialized attribute. Empty text for no indent or spaces or tabs c95f752e-1922-486f-8fc7-058ca297922b Indent In? @@ -17821,7 +17821,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - Text of serialized Quality. + Text of serialized Attribute. bdec18d3-2ebb-4dbe-a2f5-d2fa1b70529d Text Tx @@ -18807,16 +18807,16 @@ If none is provided, it will try to see if the Grasshopper script is executed in aecb1169-eb65-470f-966e-d491eb46a625 fe587cbf-5f7d-4091-aa6d-d9d30cf80b64 - Deserialize Quality + Deserialize Attribute - Deserialize a quality. + Deserialize a attribute. true 847efc3d-4260-478a-b9af-9035eb95c04a - Deserialize Quality - <Qal + Deserialize Attribute + <Atr @@ -18835,7 +18835,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - Text of serialized Quality. + Text of serialized Attribute. 9ca606a0-8525-4e70-98db-8a76c2f39fe8 Text Tx @@ -18861,10 +18861,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - Deserialized Quality. + Deserialized Attribute. a4b9e89f-ead8-4fa5-bf57-7be6c8ee9853 - Quality - Ql + Attribute + At false 0 @@ -20013,7 +20013,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in f31d8d7a-7536-4ac8-9c96-fde6ecda4d0a - Select Quality + Select Attribute @@ -20021,14 +20021,14 @@ If none is provided, it will try to see if the Grasshopper script is executed in 3FsJXBPX1g/7rqKCfHYxVVGLyioqvlrJAklYAoSw1m2SDGRgkomTCRBUSl2q1arVVqW44YJVHtq6VqkLWq2te/uqPm2tVGuLrVq3Wtvn8t07SSCTTCAV7O99X/yNkHvu+j//e8655w7eQkJp0KBa6gn4uHA4HE/wdNHhhkJMO6EEJfUYoYWidFAMxfDjDatY2olRRIWSsIqHWexrEUmEsNgHFD2ZeqOxasO4xOVfBx0WVQTO80on0RIMLYVyXzhophr0oupqLk5F9Wq5UYdCsZt54ACzTEqQGgSHkv70aEtaWmWiOKqkUFWLbAlH1VOIFmBajAKrSCcJHUpSGKqHFdyBHHbtLkQoehy4KGTs4bvRwy56+wlRvZLEdLCZZYoc72QU1aXpULqEhsJdimhQi7xLMaLTo/hQykBqwgvVPjIwJwgePZoFuQBLqYAwmCB3s4AGplcEpm8e0dVc7ClHyEKUrvki+LoM/JwNZO75BKGxYL5kSXC8RzYAgDGUDyyxG8ZHptSlIEbC0KJvenARSRh0dpU9eQZKTZAWuOj2AkJnJLFCNWVZ92CRNIubgur1KMkVoVqURHBuukGBY0puCqZEtXqUm22iETfGIyEVwXBLyx4GFMfi9agGI4ZSqFIdriQ0DEh9s0AFbiaCG8q9clCFHqNaRC+qKUqnHxURUYhRaoMCNo0w6EHNCLo/f5GYl4IpSIQ0qxuuFK7Bg7FIWOJlqmekFWq/cDhYbxmhAMzhpiqlKIpzB3B5ej2hxABx9K4SlYXjth/GUvxEJKLXqwkdoKCXGQ+LrNvI8KiY8Ohh0SOjw6MiIyOjLFOyTPq/aEquZgsBP93AmKhGgRsTDThu3fM4mRrTEgJChabTdkQkHmLhwGjbjodwBQYc7Bl0tBY1UIA8Q8zsSUaNcqIY1Y6OjY2OHhmFxo1QjoiNjY2J7GoZtr0520DGsQJmlq/Gk+i3WVpzbyX/t2ijggFMoN30beFpIY2bM3CIMyElw63gboUjKjwS/msfBS3o1NHKvcy92CzYavtYLX3/lNzHUycsjK/TnP+X/wM/FWPpHvTusV2ux3DYe2CrKU1TQFPVsrH84GMqY2wvWO5pKocAWSy5uyir1TM0hgYK3t7dl7e46veBPeuXvecGkHVqql4ZBgTHKCOwSFoKwYDhgRIv8xhsFnwkjzvJ1IaL6bkIVwt6U3FLAD4otxSYEVBkAOvjIloV+FXVstpwf4lWTyFaJSoyYC04nnutIumqEkt8a7ar6qMJsu9YJ+ctxZTF1gLXDNw7jZ6VyYfRFtgzkzCQSpS2r+C5EfbGwIUrTqfs3tHL9Vt+4A9+JjEDWtjOl0dRJKYwgD3PcBl8UFFFF/WjCxr5kJyAh+BnDc8jHSsh6H76ABn3+h3+VZ9lPLOaXBypyaO4Z8Yv9d3Emwzd6l91XRHntJoCUsE+wrmsyoK2LcCBssJATT1FGpTUEKAKpeULlyC5GkKFFRiBiszaZFXPhi9uzfimLEY8O7/qPeXUH95vY1J2SnKvyEBwZ9EdIOBwmuI5nM0A3Qd8JrocTjqQzuH76RAS0UzAtDoDvRPaYmm4XI1yCTNFWghLEewosHNTeH/FLOEd9+TlHz5QHfnj4RvOcdMtAx9jR04XG3La0r6j5BwkMJHzc549OTmc4UBaxbOGzxKiOoJvUI4apdQgFgH/taAHzK4BV3EVKNztmAp4SRU7cCHk/QuXgm4n1d7dXVfvESdjAOedbW5sj1y2igU5Nmg4fxGa5jaheZ7BLNd2oAmBzIJGj0sUWMPDDkVN1L/eHJ20OWFng//7fqvPjWVAQX+xN25S5NmgIOS3hQLOQMGtHRTGM/aXyfq/xqXQMoo7hWsgce44W3i4UsJcD7gNdJIBA1/A6QbuSbAbUW4B2I2UGVp2LM9cnsmrHiSTLH9pce3M8/camD4X0MrAxim23dgZaM5pE82VDDTd20GTaa1o92lGz4SYM0z7eYhvnrJwnGj/rFE8BXFzJJNpWaBPe3CyqGcEztY2wfmMAY5HO+AMZ4DTGlBY8w2z5xsrSDc9DHmX+rwvqh1S/83BOYm5zINSa2hmD5Ww4BlBdaFNqG7y/U1QgbOm2e21hVV/iFWLgwNxmcXFYeD3NpHp5nF182vH5savihmxv9/tN77uQCDWUVQmmJ1ZEysqGtqZMVBpz5vx5dDAYAx+QCtEuzFgmMChAEq1tIGCvgmyqxTRc8EhA5glEN+yYya9PPakdudP/MWvT0/Nma7ebmeQMJVzTq5TIGtuE7LnmUTqXC/376KSyc8p8sRV7qu2lxecWPeUXq5TYIBezjEMOBOG/0Y3hyVFcCoO48ItLq81XVt9ueap3VynwDmnTThXMuH8O/xc7bX64k3R2pTthimXXt71+xtP6+c6BZ2tbaLzGROdv9PRTU/RfBBR90natO+ufziwOnxGxxxdp2B1oU2sbvLNh2fYhyvb4Vk687tXM4/8Ej/j2PZK79tpTA9Ff2Gei707zbztPVDQY/DEo8nv90yafrpum5tXKqLTYdpCCxJwuk8b2NscDMcMX5u+N2Bh4urdD4WBFx+f6+jBcA0A3Ztv2sa2wGu3/Ic/7WiUBXg3R8Avaf5txdCst1N2H007IHpS05fJpYQyHQny1mBVTPg9zd2xwR+cAPc7OAOCLBEXbenAqq8WOpaNNnqKMZWq9cLAhVVH608su/Om8E78x9L4nQn1UfscTdJOK1YyZ0GdA/jKAUyuA6BG2iUrVgLpLV5AOtz5KIWS4GoEgVK4/SHGvhIY9TI0CkfyooslKgsTqh5VNqxemCvZ+cFGafzVwd9Y5C4O5H5ptJGxY4q3qby14zzV5/Nd9vsIG272Sg0Y3OO0aT70dNvLqnAHlg00m2qDHkSUwKmhFk0OBJoayKqaH6Z92r1i8/bE5YGeX+lqqWsM1biU2WkEFLW3TWwDjo5uk7lAZ1yg0Xg2+9Q4H0hreFY4ubSLk/EpcJI3lVVc6TY8ddabnreXr/qjmYmTffANitrDydZydQZOt9rEics3E7GFUG25vJ4yVA9S9tAKt5oBVnDuUJNuTz+/IHnlsrfVNbdHLGKA42nqxh4hWee7sn+aqTIbPFzbzR//IQ2Q2aK6/79L1y/wV/dXHeIm7E1EXzyZs5fsvHT9xoldx+7I8RX/sz5F8eL4A+qOMvV/hCYbzZauH4H1Ea6f855FTR6OHB9RPZ8zR9RD/PYcuUK/Z1QxY7X+4K4J3NEiFDDxNq4PdujuQB+v0M0GkaiGKEFf5oLLdnjHr+diWgA/jukpYDFAaAG+kKgOBUdR8LsC6EeD6IvDnfKEj0IeqOOfOyKq2jZUrDuSvcrxrO1T9lDqJMKVnwhMdqCMzQtWHgVSb7uUvSUm8+QplWCzWyuWDSz/FAgIsJ5KMC/Wxao3NwYFf/Ry2gZyY5/y0VMeMsMw2NzeKKS0S0bbZEgHyVi5B4AxEUCVzmY2KxuBtNEuPQ+hcnUeqq5QdZAsOpNuWdGifnW9+WhNcNqSwS+EH/xpac5foIZLeruo2ZrozkANxq6OUYvkd0mHl6x6CuwhS5xF7wy7lxRo1vFJgIiaYwnZ7SrBEneAgNqyarfJkVPdJRRKOzLLex5eCoLAUcTqDRZYwzKs4xqubdRwoWu4tVXDLhFoMftOMsQP6hfYfmhkWNkx7lPtlQX/Hha/7cZYacRdz/NPuZc66mC/Mm8WHZuDbTxDk8JsuT0dWe7gy/OE3UedEqyOvbL/w89LhU44UR9zP4ECg54iNGzvLvmaRNZ9cbqYy2yA+Rt8se0F97PP2Lo4UlkNuLmNB48O7NZGi1v1eirlsBzk/wbN/LV8gO0h/RmnO9uEncO3gd3bEeyPZ25d1yPcnb9zbEj1el1qrRN7wvf/2p4I3/aqfm1tmOSd/j7c4ovdH3defGob+Trp3BzqLgzEp5W2W8bH0YFBGNiw86zr0KQdr1xXXH7n5sfWB4Y238IK4alUpgsOOcFN0OgAzCYnyFR0NzigAw31gV3AF6dMx1iUNHJRuiMF3VF4CHglq4DKBLpQIaTKdPhLAR23rN/FPmwFV1RpoCcSU9EzDQWlF8DC30qXigJ8e9Mvl0jEQhlcAHy8oaFvKh39AE6zkJcKPMOWBX4PERho++jEeXoO54WZ8HG59Vz0dYDhFImQJxcnb1pMiHtMCjlSO4aYOz6BWBKTqufXFv+UvTCwp+z0XO9+zYu1G/KS/vX1seqG4aU745Y2/Pjjkgtzj6/rlagIvS9aFN/9pdhN6+oj/1x75uvl2rvXSkv3vzZitCajzwPyyk3jq6cu/lrxzUE+L2LbjRGho1ZWX72/8Y5wcp/QHbVNyU88Q3ckLu0x//7RFeG5Ico1V7ZIi+Z9Wvv6rJdWl2jiMiYfrtcd9/1id0jQyd3JMy6uX5h3tunsVezVC3sW9cV/9t2tHyveJT9O/tRrzoYTh3oj/rLirZLxI4b0b1Kcn5p165Vefz5q7r75+qGjl9Kjf/HZdvBqr6KGlWd9+41be0uJd//x0d2mx8M8Pnxx38wl9TsTdqR4L82J2OTznfuA3VMnIkiWzG2P+vWAY1HU6zM2XikP6ykdNP/j+PHUeU72NnnNjSNLc26SvCc3kPq8lasn95uYOLpXj7qXJvBXh8QPjXqwpdrjxpvY48r7i0S7Vhz+5Tbv13kVzTUr44nMMcelp74fzIn4x6XK7IzDs93eOvPHR9UemiOrHrr8Wv6Z7h+VR0b7BRzJdz3X/PUH2xtn7VtwuqpibuBXtxbsjvKMyN4W4vPBrOKdN/d7Vqxa9fL6a3XXfBYt+3LUUvzjeN5YY3xDt+3CbbknDj7hf1l65KeCH18YUsLDHl6trOrT+3FgQNWBouCY7++RbnW/x0bPfF5T7VXz7tnGaydCa7q/q4uWuRm3oMe6zo5KUcbOXah7sMuFWj+woEpR/fupI9zRW2cv1H/x7RSX6xtTm7FBY4NSNh+KfOvMkMSZU1eOqTl2YXpy3psNospRiunLN9XWjMFnHticc/yPx/OR06FnIlf9kabLXqNXxvpNGP/2+Ikly4MHfLYvJuD1y4+aRNt/LE88nvBC8YP5Z4Y097q9rGJW0Na1yW7H0qc0uq4SHdmSGPL7uZcHXShW/LxtzbDmk+dL1y5pTtxSHVo6d9+0HncFEZLSYzFV79+bGDq39KTXit8uvjN4sF9d2oJB02KievH2JhQeLApOrSqYKUspykxYN+tSY2i/n1+pmn+OZ8jvp+6aJTg5/Maa3s9PqN51es35tXkzzxwY1O+URqYdog5SP1R+deiHi/dmHzz9+Pv3nvtCtXj288Hdh6bUVU15Y+VjrjbghaxpRTvClh8XTP+Wr1i8a+LYoPFlRV9c9Q6qnf1t5Yx5g+5uD9n7QRxVf7xbUP2noU+8soT7Zo9vkE/6vnxKmPvBgxUudfq+J86Oa+oOzZwkQSrczJ84jdVaXx4265Reuke4obTAP7XvgBG+qQipV8MarbbTjy6jU2+thf50ocnUtJY6Z/jsrL8/rCUnTNLgTNr8CQiNjtCCQ4XVO5zQMMPHSw4CcwrTOWsfg7Pggd78qmtrDrFl2kG03DQuizjYSmyVWWuRh5jkDPPLrOHseeuy+R28GcAlHbc70N8BUjXfPq0N3YYre1rbhSWt/du8d7x7/jlNUr21d80iQ0Gd02lr24Y2aesu5mnYHIZgUVcejhOlchJFW2Wm1zdYvF0AuL8F3sn8NxustJ0WV/jk2pdbJJ/49bvpVeH5H2aeVmh/SBLa52kDTQqlp28/YzMLW7C2YSGsEpCpBmsy6lAxBtJHra6WGbXYHukcRS00p+WtnOb4WrpujUHQ5JCitQ1f8mvFcUHbXb7LdJZWV8yvc8Dz3CG725JmE60ENORWtLJ05295W9sa0eBMIzjya8LTSXC9TqHhAoJEwQbzhpNmvKFqrmeKrmwT0/7t8IPzlPyovxecvebRzKTqRdLM47v8G5n8kDmVpXbMD06H+OHoyPEMCcD500yA2WwEiH/89xHA0wQbFHpYwvUOuhw5uJi3DFbpKYlJwvOj8RIFxs9WRuOG/JhUqUCbXY7kxGolidJYZYwMV8j19mWZsange1laaWSyKleqU2iUhVkxeLlKlE2lFEtLFKIyPC9GplNEx5Y7UyelWIUrNNlGJCd1hDBDF0XPxciXo7nSyPycSINMnKRWwbJyMJdCq/40avBzpHWbTESEGxTGWHF+ThyVnyszonJmG1lMkloZIyUUMfzS/FyJdVuxUpNYroxWlyjFfFyJxabk5yYZ8nNKnaljkIkSI/OssUpQGfNypeWIKK5UKco2phRTuFITiysEsVloLmgL14JJwbplxvwcFcBhGD1PpTgbU4jwIolIqoftAeZFSg1eqkqMS1JopZF5ObFF+Zm84aB/SW6UWZaAG4Be1AqNFAdzBfMlQN+8QomAXwrk0Xm5Mlwizi9BcjIKs7TZhqxoqRHJ5UcmJ8jUKlFillKTjaeL4jBEk12kEg4rlAlKC0GZRmIpE/AzkzMikyUC0KdYb+7b9ORr4sD8E4sQAY+QRaoLsgAOCBgXjElIgC4kCRkGukycqgPzamlnevi6fAy0E8QKAK6GvOhCQkm3LzZkRMdFKbQZhenyyMJUQTFjTKv2CSnFicX5ArVBlVOmTzGPm2zWuVW9TIkwslAmtMydHwdwivOQYxTOHlj5pyDaQgNSiGbqUKX1/vaQI2Wt5tU3LDwsXKlXI6TO9u9n3IDI37SDE1QYZfoLHcv52g8EQCTVann6whAChCbzHj55MgAMNQc85kM2feJnO2TfPFsa+G7cAP7iXNnHj5TfX2HYbR85iWm40Ek4f9fDl6EqgxKlE0pKEFHiaBnMc4AUEwJeBkNRrsLI1aBkIUzbwzogtYuSGgJceZhCR1Tv3I0POnlo9wZemLCSf3nlvV3TwxxM3P66B4qcteIeIGHRCKLDaawvPQQAaRPjDqON6x5Hr4X0hLbfhAwIpQtweBXB7mK7Lwy72HtGl6Q9m1cQI8fhk5kZONbFusjbzfHYOu6OXmB4mO8gday35V5A+g7rX2U4widUatAoUBISyJ4qEDJIJpQVMEX6pOD+eacF61a8NVKmCfyG+VKhENVRamfi1o4m92lImtqEJKRDdzrsldq/0/HU0tBaN3L2vsWRtgLh7oLJTPBCsYnVrJqxvfh+Sip3UDGN3cxcrWS9delOq+1/AQAA//8DAA== - Select a quality by its name. If no quality matches, null is returned. + Select a attribute by its name. If no attribute matches, null is returned. true iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAdhQAAHYUB8Bsy7AAAAnJJREFUSEtjwAv4xRUZBMQrgXg3kP2MQVD8NxiD2CAxkBxIDcmAX1yBQUB0BdCwP0D8nwD+A1YL0kMUEBCLYeAS/4zFIPwYpAekFy8QFC8D4n8oGknDIL1lUNPQAMh2ygyH4X+YPgGFHznBgguDzEKJE0iE/rd29/jv4u8Px7pWNhiaNUwt/jv7+YHl7by8/vPKKsHl5HQMwGaA+SAzwQCUzKCp5cb1k/+/f36Mgps6msEaGIUk/s+ZPx1D/tmTq3BDc0oKwWaALQCZCU7CoLQMEfjPJibzn11cFo6LKkv/v3h2HSznGhDw/+vHh/9dAwP+s0tA5AUVVP+vWrP4/8kTe7FZAPQF0GxwhoEJoOGIxIT/79/cAbNT87L/P7h3AUNNbFrK/5dQR2CxYDcoiEA5FCEIxMwiUv/9IyP+nzt38P+hQ9vBYiAL7t89j6IOhGNSk3FbADIbyABlf7igqIrG/9On9///9O7+/yXL5/2X0dIDi5NlAchsMIEQ+J+Sm/X/OTDiJDV0kBVSYAFaELkFBv6fOK0fWREYhyfG/3/3+s5/YWV1FPG6lvr/t2+eAbOxBxFaJAdERf5fs24pQhEU88go/r908Sg4ordsW/N/89bV//ft3wJMWY/+55YWgtVgj2SkZArCpo7O/6saaxCKkLCgour/kuqy/5OnT/j/8e29/08eXf7vHhQEl7fz8v5f01yL0ANOpkgZjRTsHRr6/9XzG/91LK2xygMxNKOBALSoIBULK6lhFQdjeFEBAjQv7ECApsU1DNC0woEBkO3kBBdID06XowNQ+EEingaVPjIAJTNQWgZlGEiOJ7HZwsAAAL2OtSpnJdATAAAAAElFTkSuQmCC 32c2719c-1847-4984-91ff-bd4183c5c6b0 - Select Quality - ?Qal + Select Attribute + ?Atr false @@ -20076,10 +20076,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - A quality is a named value with a unit and a definition. + A attribute is a key value pair with an an optional definition. 0dea0a36-6aa0-4e79-ad43-46e23b64c19f - Quality - Ql + Attribute + At true 0 @@ -20102,7 +20102,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The name of the quality. + The name of the attribute. 78ba8a78-1885-429f-9474-ae476a76490b Name Na @@ -20128,10 +20128,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - A quality is a named value with a unit and a definition. + A attribute is a key value pair with an an optional definition. 6e09ef0e-0cb7-43a6-aafe-e5d9226b3ee7 - Quality - Ql + Attribute + At false 0 @@ -20895,7 +20895,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in f31d8d7a-7536-4ac8-9c96-fde6ecda4d0a - Opinionated Quality + Opinionated Attribute @@ -20903,13 +20903,13 @@ If none is provided, it will try to see if the Grasshopper script is executed in 7FwHXFNX2w97IygiVcQrirthqMVRlIRgiExZaq3AJbkkV7NMbhiOliru/SJqHXWhONCKA5E6cFRp9bV1VtE6ClVbB2qto+W13zk3CeQmNyFK7Pp98Rc1Z91z/s88z/MkjhwZXyXBpMQf4GXFYDDswdtdLlYJcWl6NqZQ4jIp7EoAzbAbvhzhEO28KAwVYAo4BM6EL2dtF48Dm51AU+TadktPPbeJ/3zVF88EHr6hDgkKLBvHcmC/M3xokgisInDTNA/DxYR6TdjplISJMT4BNtJK0x+LKUXJeXIMjrDRbEw7N06mkKBi2NOV3M1SgXaWehlM0Ni3lCHw4mBZuBSHiycoZHJMQeCYEg6wBf1waVsOSpDPgYfecuP80fP/+d7RhYMp+QpcDqdpd8lwjMYwebwcI1tIqGzjUAnWeMTxOMEUipwSwV4gqORTtIi6aVsjZCo1KWy0YIJtjVOfHjZba5rtk1GFECNH+oGP2eBdCBaz/UAmk8BGO9Cw4tMrQ+1SwcEpj3KCLQaPcUrky2PQPJmqkQ/Ih3MVMpXcYLA9S0WIZAotTOT8CJk8T4ELRYT2vL25cSlIDKZUYgqEi0kxBSpGElSZYpyPxOB8TKrEkFQ1eyF97SJjUVysndlGhYnxcCUmwWXvEhhfxOTLJBQonVPAACQJFasmOozEMpU40djlJyIIuXJQYKAQJ0SqTDg1UKUEIwPJ9Vy5UawYPFOBKjRkhieFZ7CjHBK2OKjH5ZGENDw4fFj7RFkm4Bgklh+HYWKkG8JSKmV8HDCM0pon0PK+/otyFBeuAlUqRTI5YD0HDR7aPo8BzOC+zJB+IQNCmMFBQUHB2i1pN/032hLkS638e4BnYpJMcd4wlVisu3IUV5SQB3Yr7aMlfZj+en2QCJWYUCmwMCmmIgDP9NEwTTSWlywbj0nDpGDRVtonNLc9PXQY5mLA0D94IzvYmHXQJMhsTB0gm04czAyCf1p2UAfNKnrn0xEMnZMenjzq1ZT0xeFbJVfOu75wEVBOakfKhf5x7d6Dq3s2Kcf4TKiEGkWmDeQTdRtFcGC7vbodAqTVzbbclCZbYDfea8S9Uo+o7SqP0iHWqwfaAGTN2qpbrEwAeHqEChXjRB7QOFICxYFi0eo7N7gpGs3cC4xUEgoVn+iDCDC+9gMiUyASmQDPykNQZIJ6UfsoXCBo0uBWrjwwGJXyMa4Kb8Tz5R9bhNw6ftS6bT+8s0+c5mtik45xOH+8brftRyNQsTOLIBR4pgoIJUWnswGUArKpC/yc/zCCwUBYDMYONoPxgm2XgGfLSKQ7wd4qKw6DsYjtIkcVqCQdl8pVJOSQN62MAMFMFmGIjGwCylhzZISQ0aPCpD18p/s3PT/okcEqwOfcYa8se0o5vIOxY9uMEA91jNc8uRFdlySZSsHHDG2emfjUA3zCAT7V4L2WpYdP/jPQu5Oli49VM/j0GCnCCBGwV+CvRniAAKvEAiQTQ7JBgwBoUgE9MmHrl285yTwVUyFfIyz56bsNFGQcUzWTDaFJFbwlaBhsU9D0oLAOXMjBBDQ+kHWkYNuILEsXHnooBuXdEK+MTGTPrO/4c9nq8hIKFOQHAxis41BDFOzVKMA9w2W3O5xZmtx+dMwia7e08AEbWXQgWb0mSAkmQcqlgGTTDEhpFPkC7KLCkDEIgeUSyGREpRAjY/XRQ+JkmnG4EsEmqHDwATjOUCaBNGJIFpBGQoM8PdS7EpYfnRB8JH7aokyn0PRnVKjtANep6FiOThr1wHaZmWPj9bEnu/i73GOjc1+usATYi0yCXUwBm/TBzFZmKmCmtOCqATWHTx+ctz3x+PiZmMVz42cHli+8Q+XTFLCmIXYpRPPYKepdlw78eEB4KeEnHDs9f5glsKswid1pCnZ2zWD3HgU7QaOV1+VW3JBbaTHs4NjdanEHhFvQOWnw/EcfUa2hc5MHYYgkJ6t5JO+HLjrf88MAzpzWfUV+d+V3LIHkTZNIPmW7qpEEdyEzbGpXCGWj9cQEjfYTB/83Cdz1I/32X5xdHT997Loza77IdjHPklqPEBuAxmiptbDjqA3pTTpUGE6gdyeLgkpzlpSdDLUXTmEfqOJIEwq0HnBtYa+U1H7QLkLmy0GVCHCVgc6TGLOxF3LdQ34fzIrY+fWePUOux/gbaDtcYJ6BtQhk0MAah6wHlZG0NyTLWNi07aWOM3dkxK2a/M2FF3bTA9/QwloEhgSTMORSYdDen/5ONvTQk3lehZXxkVsH8Q72aZhz+Y1tqEXgXGQSzmIqnLav5fK/mZUM+Hjcs6jEoZGzvL68t3Zs25lvaiUtgk6FSXROU9GxawYdS9rBgQ1oie3B4JiV14QDneo327XMDloEq5smsXrK1tzU4fOs6W7qcdOvD0k6eS+84NSefMfH8Rdo5IJ6C/+7Ocf6PqzFnOP+dRfvVnCOxC7pxj7XriLgSgvdEsZmQCkP8I5iG1KrHK9hO1UO1FLL2lhcpSrAM2Lefn9W0fLn3b1KVy4xO66i9TXMp+UAlq5RR0kKCDS0ygGBV9BEqhpUKgD/bZIreio1INdTH6kmsfYujn6/dNkyrxY4Qnpk0nexWkqm1ho/iY5MZSN8OHEh5SwNmWyMCZX3D/M5rQd9E7Guf+3hz6tzOM0KlZNmFc8IlZKQSehSD87qLkoE013Tpgfb30Y29UXorRtdK2NU9WCphU8O3lVa+tkao9+r6buK2zBt2eUf+qzYJI/daIYoOb99ClpWIu8dfOrmxl3P23k/PZv5Mqy/5SRSX9bNlEhjtMvvzFHTj0I7O2O0EwLt2dWtJL4sd35VaTr7PtVGkzwHklNKwlAArY3gHgjSc9m4AIOYi8FMKCdyBabECDX4SigRfJFMBtJdWQqZxKwAM/dO3PWFbUdHTu3NtHVzn7bNCe7JACJH2AqjzbqNxk5kQCyG+XJEPohHYBL4oVG4InPhOXWTBt7+WFYWTFVmg7OKZUADoAoMpd7RvCIbhwwjh7DAEEfdzCwJi7miywgH76MMBp+M9WrIb2+M/LOvFp3C0PKIVayR1gfGPA6lsjVbJhNjqNR8K9hdMxLSni8Ta3LUkAMy1UtpWICWxozdRctuFR4Z9lm/TrI6f5fdtHsxFDGepFkRm3FZsNA3egJ3V2vHsqeVgbcs4ZvkG/FNLhy9yr7ybZHWN3EwhvyKipujZ9a94FVW7K0sG38rhqrsE1ApJqbi7mhC5nqwEDmcQRoZPqkjQSQBHIPUbqTVMgG8IHpB8MmeWFTl9ok/9n0Y2JFmK+YJC18BaJ4IQxewUZsTNClIKSAZngz21ygNdAKjRxc7Y3TJAGrPG/C9NIKRPyfCORYUBODSGCyL8kgXdXOiNjPfmO9XtyfL5LqtVOJuzRWzYj/wjmhFgkItj3DQ7ipCJgaH1ZZUfPDbH3+4cBRoDk8qAEn+RuG1coKNCSgh0mmKBQlQXAwo3giqa5IcA8lqcQTQak2Cb59EAFgkTWUVIxWovMkzV7Oe4z+A9fqvPrtszcoXnC1fWPntO5fj8leyno3k6C5zOW0G4DKvCDIP+XY4bVbXGRGxNV7/DE5zMnYBK0txYA3394spdjgc8nvkzx/pXsD0XxTSO0HjCs6B5VI50V3DiaBVgPFgYF87o9CtS4RMIpdJoc/Nk8KQKRlDdXPu8u5bfLk5g6CtUIRJs5mNj2cmqtRVS++HDHJzRsCri6bcR/Pp7W4IPiI9HSXLINLTkTDEv6kGwl/braljU/eHBIWA6pBgZvAATb/6b/1jQQLB4Y208TcyTiOw5ozV0ShwOAtklQlQ6IbwBKbngXo3JSokH5EamYiA4g8jAyNAhlkoU+TBkUkYYWRUkipTdyB07yhQIF1IZlP+aQQkk1YkAGFBpmiSAGN7Sia5uzFNk8Y2EkvnKObP1SFgzOtO1qMoOSAYXMGYTObrLqXV82CdYahYielD0zssuEXYQOZsCTY8S2AT8qdg0yWeDP/+eQysDjebz8Hq/Y3RmaZDJxOKwNR0HVLhrz9dj1jqIVRO1hlP4g2sARgaw8RhSw9eTzqHqbWhjnOPFOCETBEj46PakbCENRcY+hdwlro7CZ9I2kcEdOUAc/sfYAj1L89O4HOTXVRfHGGTevONba48kJ+NBzZAAfpgawBovQoCPLMT4rhuzu3Jsi1eFCcR/OsD347Qo7qZE/YCGmohKxY42mULXRpQ6CA5yaNGK0Fs5gB8WxUdUPDAmCk8Dis5Knr1EpeEJSleJ9sdwtpxrg8+Ji78tPZCP343VkbqCvy9Rb3j7lbvGuJYHJO2aX5B7Je9JJz+Rx955FSH9+Qk95BXc1uvz4jpOk3E2Twrv3r80Ixl3zm/+v3M9++O6o7P7PvLmoGTDk86U39N+U3a2Q2nU7olVUzKfSKVSpfHPQyJ/+zZimOlocM/Wx82bdt/N2ze0enEp+luA0bs4D7cYlXcsXbdVz9FfDgx1OtW93eO+2YdHKEKKJrYx7n6+Cph0aMRvlU1rQY/vuRXWN3q2pR228pDdxcuB4s5n/N+Xjt7+vDToz0K8tJ62W77wmPX5ytnN7itye6MVOK38w/e+PlR5res089T0S2Jc7+tSyuYcvEk59XtYr/SBQeHKMMvvEoTn3u6s8Cz5yBxdG1Z2LGuT3BJ7P2Lf1jJDzmPORNf0TUQPV/s63v7g4ZX3PpO7QU1i8NmbS79yEpuF19zlb8uStC502DP+v/O9vLvcGZZ/Fdbj88fzN/8u9K23Q7XDfefeCwY6SOvW2VVE2KTGO0axfRjHy3rfPzOSq9lwqodvmGXON/tbDPv+15V8u3tbUqK7oYdcCxhP7jZxfungi65t36ojxjlPaGD7Piesq/WntrwKtFl8/DhHN7QgUOsVWd7tHm5Z9Os0sz8V5OFdxXCDSPvzXpIOFxrGHU07ihjYzv7sobvU1/Ui4S13DbsZVFTNqUm7F0SVCZwTW8g1sye/IFLbslUK3vnsKpOE9jp5YxqeVX643O88DR8aFpfG9EJ3DW0W3Z4kdymw8XYy7s+90TXjD2ZGmvjP+Rz7uZK7w7ZI7sE7bKOtk7qvGySz69DT9ut6c44NIETf7tPw+MjS9oUT7khtBq1r6TtqZSfWtUp9i/eujJOsf90bj/0lc2Us3zv/BnLe+YXlErner/kjm1j/eOJJ0dt5+WMzDiw27a2Y95y0akqzjb7NqG1Qdcr3E5UZsxL3V6VcCXJp4e8TDTi+0lJjLO81d7LDvgfWJoiFPfMf1XgMmP4tSBFTccNQydllH54gjNk+9nQml8eBfzhnRXq5Dh7/LHe6L7HE+s6ll6/+MnGrePsfSSnW/dSzjhUXRTQnqkU8nh1u+uOhtYcq1FGieIv9SE21tTuGuecgXFc0mrOPakP6+MeEntCvtr+fzcGfoqwi2ZkjvT5qF/0I3z+obN+Y88Ifn3+7GrtuYllThn8e6eGvmpA39/9pF2fUSq/b16umTayarR90Ic1X1lvGTTOKqBDH+IT5jfvjL0SdzdqzfylAm6/bdO3zN7NnTLPa++YgNLfGkYO/G2DU2DBo+TLDSeTWPlHdq8r7TVo0K/LmIu37hq2ZFVY24Uh1o+63xBwNx0KWRTUueFsybqhh526uP1UcSPFJqRmvPvu6z02h3638NdC5vzwfh/1q60J6pkcPcB38pipM0Z9ddrq+bnbt6T/sV2dPvzsy71LjkR1njvQNk/p+LhWPmF17u38ck73PfV7Iyat7zioX2v7Lh0T5qybfMT70yOZSw6JB/fNLzldFHitD+se11f65dyze5LmjV/s+/PRgRc2D0jefidh/yXvd04Vrz14O+hebDdlSgKSErpa1OpB/5lhAv+zN3x7fe3y46jovvBewYuM4+xgZ0x1IdUiTwkvQk2XHrpL6Y4LbcYU32zHK7gtfNF3fm0Xd56SJciGowTa4CI5uRW4xylFqBgoVzi96XZl5CpjcJNt6jI38tRWU/8qhpEn/fpXRgjojWK7kTYNAxaGgxKo9hoL72fOJASUmzBZ5ahGRkDeTcF78uLfCi777Y6de2vSteGCovXafisj/S5q62IYjlW3Ny08WlC9wOqwE6fyYbtYt95tvlXvh9wuSQzNPHsWH1xflbpLtWKJxbKcZAWGNfWpq0JpLCwgapOlpqXwiHETQp6ivMjSh6yFvzkciafm72mjw1YxhmEHzyTy0eQBDPfsliQCW86TY1G4tKlOXD9vqh98Mxqb1K7UdLtuk7i4f7+UHPYnFR2ufaacds5cJmqnKRKGbx99Jsr3A70vWDqkIYO9b06HEBN0iPnSMXTVgx7xyyd9mmf/4PdRVDpA6TCkA+916MAwmw5mV9Jalg4whGycDnPYGtlqlBFTtRtuFBeVFvAZ532+9OEsZW0a070uqPRqDjXeRq+lrHCL12IwWBoWTADv5QZH55LAaIJLZJCfLrhE/FIzuvOBtOFTp6bY/j7xpx1UrQuFGIEcRA0gaTMhrdioUuMVk6fWPQQdtgGJGDgYBsLSKKKEgbIsnI/gYHkyh6VJdTHNymUlba87fij7ImenS52ifPPTO0b2bfhFCdhqLsDrItRZQJimyDcwFLtAb1caQwHRsaU3FDY0hkJfn+sbCvn+QczI6V8Mmyb29fwRdTmj7ScjeDTZJ0sZEkfjhoSOtk6QF0gC0tKrq/idie6/cHjTiA2FvZI+O/uGxkJP31yJXpkQsGkJt/KSR0Fi4pCqluak1gOSBgGCz6KtbioBvZv1lbo2N0WHiTNkNhBOAKJBC4oytm/76TkvOSW1X3Nr+kSXv6ki0UNFPwdoCVRemESlK9s9AcZClQQIB2jlgBReeBCDB9uzFQAKEUNHKRkOstX6mGRaYVLQFFJ04ZzGtK1UJclUa6RG1dlEHG1hrDHivAOD8GriwGQ6mWXPJE9OS6vxJx4dXVtUH7mgd2nXGU67h1MZGK5lSKqRltf5kBYxbFO0IP4SWjhoctOND9O3uaYy3q6knKAEMgnvPoUW/QmdJ46JnJnGna682vZd3laZQ6yKQDPFTdcIc5wey5vg/P0ahQFNsNzgq3QHSNHQmGCXN6rcoi8f+BNqt1pUhaBfK9CCKoSWVmHdBKUck/WrsFyN0aL+++3v9/Zziilc5L4w93nGGqpGjsUUQr0qOm1NEB2EHcnxAL9MFZAwCJ0AiCOiJJOBSrPcnDm/7VlQNj469pOe+z/rImMH0uzHAEZ1s7kK5UPNZXgnwCfDwMeZDXp9Wn4Zbs7H0e+3lA/jTO/DGCOYG6eJPkgwLUFshjPvS9x/iN6U/Ly8Y/3laQ6xqFyOS4WU05tUTvbkQ4INuZ8T3Hx9sF6mv6WWPU1zg/ACxP/WwJpMBL3V+v5OSyANoYXUfe2cJeeEjKhPOrm+59guaM+bQhpCA2lIs5DuPln435gpX7NKfv34xUVJ8OeWgNSHbQrSGLYx22gmpq0SMSWoPIAKRQJFnRZVfdeYCph6BUMTmWh5E7lIw2PQY0kwMJFLSLg0atntH1Bso88vf2WxjW0WYXa1TX5lhDryueltVdssKKiMOJvW9p9RbeP+D2C1U5zq9/Y6nmTvO5Q2JrtQ6PxXslqC9gdwQK5TSsCvoSqYmSpcLACKWilBFQRTphAGqhR4IKU1EM/iB/Zj9g2UA3YIjMMIsjoXFueaWyT2RM22VS6ct8S240RPIjq++w9h21b/tjhe7N3y0F3JCex9HdCA7aH+0rcRx8tfA3hoOdtIHC9/J+i9/P9xPPPieEPaFrb+H5PDLT/e8dnuxRJfy8Tx9DVdS7+OvxaQdJWxKEn+RljVz7ZgHK9o3yTvjkuPDVs4LT2wa3cfqYXiePp5BkugctwkKpf//XG883cZWa8KvGL2Deg2tKDkcPhfE8cjaXHfJC0YEf/COJ7+7278TeJ4jAqNwqCN44V/QYqGxgR7vNHXmskP5n8H6PV+tUE/7Wqh30V6MGREQf2ziTHFd3NjAz3Dglp6NS5mq0NNdN/4edD+EvvChnXaAJ3nGwVLaUD+EyKlr0crfVDfkFYWiYsy9L/h2NoY7A8v5XgWDuzGLhqVuO9//Fu1VDctWYFLEFjPYBgbtTX2Sy6JmEDFx0i8+KCQVIzlwi+ZAgRRBPjBGJKZRwY3wEWCHAOKRDGFRAZ1O6nnMKV5/uWqxI2LV62vDM+/4v9Ng8uLK0Y2buhfwi5zlfkJTQx1KsAyyMC/vET+Zpr+D+oZSa8as3JeZIiLRAYYuSwxCopfpbQnnjvabrJ7WEXkLo+U46krRLOoDEZ7WKvkZn0R/QRMS32Rk5qokJw2j3Xa6G/sGcMnII70ISADGbIKhMx4pGx76pRFqSt6cuYWtgveM7muH9V742ByQmSIGMfyLgGEBP70j3FIevwd3DPYbPBTVq8ZwfSE0gW/SU4mRCBX01JG//fO3pCVW+ocXNfwaj54IwYpkh9Isv0fAAAA//8DAA== - Construct an opinionated quality with a standard name. + Construct an opinionated attribute with a standard name. iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAdhQAAHYUB8Bsy7AAAAk5JREFUSEtjwAv4xRUZBMQrgXg3kP2MQVD8NxiD2CAxkBxIDcmAX1yBQUB0BdCwP0D8nwD+A1YL0kMUEBCLASr+jMUg/BikB6QXLxAULwPifygaScMgvWVQ09AAyHbKDIfhf5g+AYUfOcGCC4PMQokTSIRiV0wuBpkJBqBkRlxq+c8oJPFfQEH1v5Ci6n8OCTmsapDwH7DZ4LSMXQEKltHW+3/27IH/b17e+v/q+Y3/b1/d+p9fXoxVLRyDzAZnGGySaLijr/1/3+QeOF9WW///u9e3/3NLK4D5IAdYuLiCsYGtPUQdyGygN0A5FCwACgJ2cVkwW0xV87+crgE4SED8GXOm/s8ozIVohGKQT4SV1f8Hx0b/f/bk6v+TJ/f+v3jh8P9rV09A1IDMBjJA2R9okMr/pSvm/1+1dglQQ8x/eT3D/8eO7YK7Gp8FGzev/B8WHwcW07awQlgAMhtMADkNbY3/1UzMwb6oa6n/v2bd0v/xGan/s4vzwYrxWbBt+9r/3qGhYDFMC5CCCBtmFpYE04WVpf937trw39HH57+dl9f/lNys/w/vX/zPKir9f/b86f+nzZr838Hb57+NhwdaEBEZyWxiMv+bO5v/79+/5f+3T4/+Hz++57+poxNYTlxN6//CJXP+7923+X9IXOz/JcvnQ/SBI5nIZIqMU4Gun7doFlY5FAxOpiRkNGTMBA06PBia0UCApkUFCNC8sAMBmhbXMEDTCgcGQLaTE1wgPThdjg5A4QeJeBpU+sgAlMxAaRmUYSA5nsRmCwMDAAQleM8B0THzAAAAAElFTkSuQmCC baae0665-e28e-42ca-a556-8d38831cbb92 - Opinionated Quality - ↝Qal + Opinionated Attribute + ↝Atr false @@ -20960,7 +20960,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The name of the quality. + The name of the attribute. 809421d3-33b2-495c-a8ef-e1116582f2ca Name Na @@ -20986,7 +20986,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - The optional value [ text | url ] of the quality. No value is equivalent to true for the name. + The optional value [ text | url ] of the attribute. No value is equivalent to true. 5d7f4cae-7521-434b-9bac-9cb346ca5ec1 Value Vl? @@ -21058,10 +21058,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - A quality is a named value with a unit and a definition. + A attribute is a key value pair with an an optional definition. 69559e90-5c01-46c4-b0ea-a030c24a9190 - Quality - Ql + Attribute + At false 0 @@ -22038,10 +22038,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in 1 - The optional qualities of the design. + The optional attributes of the design. e8ee65d4-de44-4444-9547-ed8b956e2d03 - Qualities - Ql* + Attributes + At* true 0 @@ -22308,7 +22308,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in 7J0HXNNaFIcBkSFTQcVJVRw4UMQtaBdll6k+xUGBAtXSQluWE1FwgFtRERDcogwVwYGCPsW9917Prbj3erlpq6RNAoWWIOr74ZOmTZPvnLvO+edcHTo/ICKUzRP9gP6oq6mpaUE/hmHciGAOb0wkWyDk8HngkAf0MjgM/uiAt0g/58hmBbIF4C31JYcbSA850cHLuuCTjENNTryYTN6b9++W2ecLn2h7CNiRHHYUON4AfKl3CHSWQCPJy25sYYhPTBgbHK4n+WIDyTEmXxDK4oIjFvC3Jf/8lDebyw4QsQN/HktWCzSls4M4PI4IugsPAT+MLRBx2ELwBk3oODi1Jp0lgr8H3FR2dJ6fvuYNHT06Wxgg4ISBj0kvUU3Hhc0Ocw9jw6/AKDSZrFC29LgZjzWOBUHrFsAKE0Zw2d1E/Ci2wCo4RNcLujqAEf5eKUMD6as0foQYfj0pPuhCx0I3IvluDcnLWj4sQTAbfmdr6Fdr6P+p4BpG8PmhUvrMvq0G1x8KoUB8lS54Re5rdL0CwlxZMfyIn5aHv9xBwI8Ik3uzFiVCFMIXSMHBn6fxw2IEnOAQkZRAFwfmEJIrWyhkC0gObB5bwOKSPCL8uZwAkisngM0TsklDxQ5Fsqlv78bicKWfbC5kh3L43QL4oaERkLFiyGF8oYjNt+ILghGMGwxhczkkbxY3Yrz2MLa/kCP6eah1iEgUJhzQvXswRxQS4W8Fnat7hBB6Z3f43PoOjhRXjr+AJZDYH9wwuLv6iHsFP9ri98XAFpa/f/h6vfj+kCuR3AKYbDaX1IFEEQr5ARzIk4QaToFSp5f9g7gVPQcBSygM4YdBPqktwSI9ZtzPytrGqmevnv16Wln36NHDWnpJ4KJr2SVpSLoM8McY+k52qD83hhHB5ZY/s6M3sIFVufN3lbqCnbVVD/BfVxItgiuKELDteOwIEeQ6XSW+48KO8eGPY/PseNBJjaTfIHN52pKzyEAp5y/lIBRP/Of7pDELyFmhV87pf9QLRECoD7uL7O3X7wPO3vBXZ+LuD5roT0/qDPCJX0P4E3hdS/w6AARgwTZ0GPKrbyy7GNVwUf8O1CX/eBV+C7hzD3E5uj4CTijJR8BmQ+2NJ2JxoGYlbe3AE9B6KqoXOzAigE0ShbBJUDMI47KjoTZF4geRWCQRdCaSfwwplC2A+qpg+D1QF8AWhEItjgRZlBcQwhZaaTlyAgN/9XTq+k48oQg6xnaI4PzkeHN9g3dBmgzahradL3f8EDoG48J1mJyAceUPaYJDDSgikYDjD321ENHLUSF8gfBL7cDvsbNoamoU6CeOqqbWg1rfgxPJh+maw0eXQ0eG0fTCWAJW6BgOLywCxgy6cngoowQEQN2R1BgaGLxMoSFAQkbEJwVxWSIRm4d6x4dSXewP+CfZTy0MWNU15Uy6psxtodysuo+OO/xt4jEL7me1vPkRggA23ItCP+Mfk+aFWrRx22RMmnz8dX4bPfFhhCOBz1UW2WwICg36CaOoqWVQZJCpzYOOuCGQSUd9LD7tmRGhUN8CHEjeVQAy4ExsVGC7IrX6R1jHMDfw97Use7b9BLKp0dlhohB5YnR5YmhI1BREMgwXCYtm6AHaPDTu8ETAIX76PrhSOVtoUeH7L9+o5d+k6cEShUhvq96EHpM0nUTsUPAZ6XCrxYPRlv+QvtgyEGmJN2sr5s0NQesKZQeSAqVejWqZcaKRTP2vVuSFJ2KOLvGInFJFV66mYdQyJb4aCxmGJNu81dbCZpN0oNIRW64DTdbcaf560U3a2n/WX9z4vXdyPWhoqlRfrwXh4wTzkD2rtPNAY9uHQgqEP0LiCKHONIDPBTNOMKGB2kYYhw3ZB+pRWSISSwC6Xh4Pno9aoRqga87XjicXXqensJIafNnyxEzbjRUWBnXJ5e2LdrVyZtGg8yrsYuzaO+a3nBrklGpzP+LcszdG1exi1BZCvTG5RE1tNlW+PXXY+ZQaO/YbWWI2Daxx78WNbNsurXVdF803nBf9wW8lsm9wA32K/JiH5fWt4PdDNvGPgJolMAfs/kLI/1mhwkoNZ0N8XjVbZNvUfreWOyX9W6+lKNcjx178cmWpWdHF1PIgarFyY9lA6OgjioEHaP5sqJuVdkJakqG+gRPorOWnq/DLToFSUw8PPDxXvViXvqusqZtBF5PT0uPgxvGOa2Ac13OHeyI5V9ERv479xeLrhW8H7hEU68YM6L/sR7JGNZi3R2+z95PTmblCkw565E9qaC1I2y1CxPLnstHXbFrwl1ijNClruSalLtOkVsbmPb98+J1TZtIhsknefLXqjtrAOWKLodkISpNSi+0NHTWmlEOqXk2kPVGRzmg2jzPAa6/juiYmNx4X1SuuKtKeKEh7VojU7Aop+Xv39eS5i7MNQymaO5WBdBkFD+mj8kg1FJ86IpDaoCJduiRIwPcewVhX5un51ZjdtjL4bFDw2cjjq+6sCPBpScXjQ6dKmv/PZqzgbMTIiw0FQ0SgQ8aeJc6+MST77oblzru0r1+4vrbFDiQR8RnkZyNeSp+NkAdL2uBMyGnCZDtoPwrsMJJhrR7WsBbM3XcyccIHytq17yOaTvZyQa6KvPnQGt2HHS2SH9q0MBC2gz8jO9sQQecgBQlYwSDQVrkBbnN6/qy7rwJdUm6NavRp2KwCjCuTH+R8wLHKOpWDZJCLQxvkyO4ww0ou2LCmYRY+iJsHSxAhuPpO4G+wqh3HjrFERWD/ICPJI2aj+8ym642nZ08UIWe9UKhBKO9nLhXOrmT9t7qzK0eJG/qhrVZIzvBQILuA01YMYXvpPZEioegI+xdDYQw0fxLwefwIITcGlWF90u13yXtDXPbsu3FU6PZ9D7K1DoVPJ09xqNK7LxgT6N6xMSE9TRqqwuqrmogjUBATqR8JoDiuEBXC1UMLXh41SKbuZh4c7N9Y0AcBQVsSypKnQFP+CspR0oljU6BTiVjaarrSxJ0i+MgUBRa2WC7bGPRC0LoW2fOhWsds8enQ5GEjXFIfajg9DknfXsVmXl3TeJcbTl7KmWYIdNSPgqBShYZsIKEibsaoNO4F9nob+zrIOa7Xhd5NWM9HV7XBKoXHIwoejx5UyfCqiTW8Jj96l9ZtSJLrzqPu+xx+ZLRF5gfso8MEEDTospHjK26ztwfsoEA5icUjsX+eoNy5fvp5tF1MpUbayfErAr52SXTexpqr+/Sry36si5SjXu5YZaHyJeNtFlqAVC0G7iPlF5VgwlEPfVGpgbKoXPYtdlfmgn+cCtZvZJLvd7kmu6iUPa6sRaO0MaDZjdQxuqPY7UkRQtAv8ElsqSU7QpbqiGqaJr3XDH+x9wd9XfC1H0Hn7DohTKMeLd8Ooitctih5+I/lS7oNMlqP7heOthLE5xRTBU7rj94u/di0GzV7jfcyirB9NJJTjDynmAo5NetX3Pxx3G37NVruLKHxtO3K4ATGf2xO0Pgvs3zRwgFl+mut8qsbQIXzY+nZsGi9O+SFq5rbHKLvySZqwRI7pdwIIxc+PR0LA5L0qPXrXP5pzsC+Lc/w6rllZ3UjO0w05akk/zS33HJGPv+0ECZcY/mndp6WX7Vjl1JTzMZcn/nVdbJy8k9nPxnetri6gZmQnGT6xtt0SzXbZclciVOiJltuz0Ndvqgo/zTQYn2o/Uyq0ybLLT1vZ/drQFD+CUYCuipsJI8of1b+aa2b7vS33abYL597t/vgvYv0iMk/+S2W+Cpq/slvSfkOVAurAxW9uTq8TdFo57i4IZpfxj/OQfZDrpBJSYA7+ozUiMoSsiWzIl4gO7r8TaA2Bi82dGPsSJDrEIaxAzhBkLwG0sGEQksifij0Ihf6vsr1n6ySs+MSZ5k4LRdx9+zR3rEF47rl+0/waiUBZ0yX9J+xaOGg2zNrJucRtnOAlX38bsY0bsuG91l6J2VzHrOuLTnGZhXQUinDNIp8X/VV1vRVwbiWLvAF2ICo9hpxb6426fMj6u5B9A5mzY5rIJsMsJd8k3GtsPeXnctUs/e/Pb3clEQ+HpGANnvF6/wbAGcjcUDTQIWyvaDD4ls7n9G3Nbu1Ye29Xl7IHh5uUvJUOErvSODbBj089m3Xih4eviVkygOPfrNhAlaYmD4YaIFrkvzhO0c1hv+3c+1Gads4xZHdJ119NbYH0kPBueRtMUw1tgAhMWxbEBMS0/bn87ls1q9uGSu5gmYKfbghQNqCCZyOk1Dpy87j8DNN8NXVRNMomS3pETzQsirzE8tnVbTr3CJl04TItGLaCNra3Zn2zTZEd1LJIsUXd5ESULOLlBGPU4xeHprkEn/kXc9s06K1ylmkyIZ0q5tjGYm3SCGPrslFyqaH+g5RS+aQF8Sc7/5+8queBC1SYCSYixQYyZ+2SJGNWBGzSCEH4y1SyJzyixQdrA7Uvr3N5a1tmjgk34sfvnEGryniVnToHGEYSxQQIt9/1scgaCP9CNw7ggWIEJonSNYf0L8gjxdFQT/wQwvwi5XsMIdHDglmvt1LSaJtKo7gzm6CfqFy3H8eqezKb3m5hUmSLFRSGnRUjVrNPLUhvIYC3SWHC3UJqLf7dm/Om+Sb+S5LHxzWmlB27rZyJvUTDYVjMzJ222eP63PQs9OH6kqKM5aXG8I1ZWFlpEBHo+V6S6krVhKW8U+Hgv6GaKEPLmXtXXvQJjGdN88O/ffogtR8BC65U8ij86gQnWxgQhno1Kh46KjVmoxqyL1Jo2qTUfgd6jjvqHYG1/xXnyHuFoL4Amj2AyUmcLKXWke0Fyzv62q//XWr+w/OjyhFxtrhFkaRtzNF+cPjynILWzlDGmfAbaC62VwSGiEGiyvERUS6O/FTesZE8sbw/ClXGAxTFERUeURU1SACvo6NiCpN8Or+LrLgux8HTbUrG+qeO/rWsr7LP3soXRaccUYyEs0HKg65GORF6Ojh6mdwFZUFKysEpqt02e+49/8e+2eGL3n5FKfPrf6N36I6ia9s11Pd0NgZSQ+yAWoep+USlueAG8iGxnSVLvGNY6x0frbYwD7z9KG71mNmNFSdnLdTfnzylPh37vl2E6b7sY6RlIHvMAUPn1mNyFUN0r76fZr9jb775eN93QYPbE6YXPVyuRHJQ7bj8LgC45J0tw1+P7nqEfax1q6kxo7bHgxr/CbbwF4lctWMbxClDCy5aomavZraZeLkqkGk4SahCS/dd+uez3vR6PY55chVXSn1Mt/mznTe1Nq+lD0h5nV12+U3yfiFqkB8+R06epuMtjioGbnq3qXG5tZFR11W+n0TtmCdF1VZripDsafW+KgGR1ztV+mEDmu16U6eMiiChoxN8bLK1KzLI7XuXY/s7jj1CGfQm1N7lxKmZoUpgMcRsCnY/nFq1qBZ4b03jE11XFu2zHFFZ2EWMWrWPHV7cTNHVW/20wBHa0LNSqMa37ha34Ecf/a829Wgr1eJUrPCPC5T8Hh0ki529LBG3/b/mZBMZtylrmNtnxw9vV5fxM3oQWNuAKTS40E/lV/ytC33Kajph7LLjTySgbhSw69WQfM37Uq3MvLzbC6OOC4gY16aHGwt8cHKNvnXYBaDOQK/B8NH9RUCzPibg7wPPSVPP5Yfq/PK/bzs8gfruAbG8Uovj2Q/qIDA1YTBEYD4YfkeAtVUtrGOPQ6wfrhsj/KdM61LI6TAuwFD8tHKhUlkh7mnPuHNx1q/pxUdOejFtvweVs1hjvQGhAiwJgs93oKjiohbTb3ZAXxeYCUgXc7RWhWuO891ETOuYdzezIcYkGiVGeZkIbnOSo7JYyTaJ50QeXTstPyoMiDNp+BBui374CKuI/mEcASVYRR7OKZRvYjWlG3jzh8Zuj8Gy5EqFUySZZSgO/xSO9/XTqmmLZrviH28UhmMzKh4jMhURdS/VuKFG5zvBaAgtwKTDPA7SApzuXCiA3+klp1ZE7UyzPgoaWWoDzLmfYIdSDI26Ut6TBWXVdCuobIKHX+MY7GadaYnpjz84F/m1FlpJRQ6+tM9zc/NcFveJE/Dc+HcftX039Om9uLFuyPKw7djxjax79SiqdREBuAS0UzU5O4ceqMBp2iZve8V5x6OoldsBmk8qSEtQijih6LVOWsgPlT+VGqGktdkuKncmrJ1K6puzUq2KHWs0Db8QAbUosIgc5VIDWOIZZjv8VvXmFhpUgtGmqWsC3NbW7FhGvxehslxs2t4lZ9BS/dt2LLkWvh75TUzmfZbyWaGZTfjZvYodjOqczKjp2nt3T8kGlFXrXy+r36XXmtUVovLBLcWl2XN1eJ6NJY5Lf5cseMK7RVZq8OaWCtHZsRmmRufPZ3N3NSlc9Go+9+HK6MWV2PcwlPmNVWLK+9jk1advqhR1zuHRqyZqWFMkMwIRmKJi8TmD6vFZbtqj/98h7HuCzbrvVystc2bwFpcjXFrcVlKa3EZ/37phAmPJ/Mvn3KmJJ7N3NRthPF/KkknqH2FptbrqBjBjNs/oKMPqISlE07xHtgy1otc9jpvNR/iPnelctIJbVqmC2IXD2fm7eE4G1x5c7+aXSYZIMzCWth5gADxXipx6YQR517OnLB5HW1e3DOPvo0PL1RWOuG0rW7PUwVazCSNhtu5X/MNlEHxLC5FpCMqM52Q1XwZaV/9MYzZK+0+zL1itZmwdAJM4TMuBW3an5ZOiDBq+i2370DGElGyftbB2xHEpBNug9QqaOao4fMQEFw/TK2BdMLDI9Q9z5v9cN3EPDv77RSaBlHpBJjHA1weGtLRt2GdW77sutogkVfUhzat5wHSx+2bR6li+ZJRT7IURF2+ZNS3r9GnJLY+GHDa8WxX941H39hQuie9Uc7yRTY5Vt1HuQEyzKckPDTta/ApiQ1LCv9xnHeOmWp6yDptUOl3gpYvMBLMpyRgJH/aUxKmXx626nZ8Fzm7ZP1qW1HANWKWL/O1JL6Kunwx1obNJulAG9W5DrSLVdvwqcadHeMvvmHYXV99SxUdqAdw/Q1UjA7UA3Sg56k11oGmms97aEAZTS6Oe7vzP+Z2O+V0oLLTgWp2oGEA2WYqVrAD9BYl1BrqQHPnNDqU/GGM/XRvjddT1w/cSVAHCiM5j4vkEfXP6kB9rC/1eeNvycxyXhlvltaTqMfMtCS+itqBloCj56WCFhMAEa0DLXB8ylzV/477jsHBQ8p6j3lX6aShPtSlRoINTIbwODLhIU2cx9CMpB9jkcDOMRil1iM7TZ9AF9Fze2a1Lsopdcb+YhQtCy9yCK/S4Z8ZNHEEMxW1wjeIkK+Ui5DjNfeG8AIEtOsA8VWi3+DVd0+udll80rlgff9Gl6/k+yObNnwO+WTMUK7yQ4gzoTucD/1koLXtkjnQkSVEx3alm9VAq6zBWEVUUVfYwD/KWQKut4Jujo+Np6UNnGBHydTImtz3+Zci5GDMAHVaUJ1NgzGkwgHqhtXosVnbzriv6DzmVtKDazeq+xw0sFgKrsWQHluh1kQWk4iPDqnZsSE+Gw9xnPPvzn7WLL1wGTJI5MPHQORTMaK7Z/TCz7TNdZx1VPN8Zq/AccpAtAYX0Uaa3EiBJzUxlnQ50sgEOiBmTFluEsPVbWe9AfXdjhbpIAAZ/ToFRvOmDVVNhgA07xI0WYnaethZJCOEabkWixghmIWMk0fUDtBiRzQbyHni3BBxW4ZuQIITxuVA+kG5Ip54qscWblAXwA6FPhUAhShDEWep1AS6oxpH50ngDtcdvjPbzm7a8DTeZcnPoin/LqVWNv/1FsKki5VFhXLkICX42z7uhdc1tBLrGcXFqvgCGSuhbzGl/yB7sR3Fed6txJnjOlH/0ZRRL1ZB0MiaucPZJMLAPuuuv9/9gax51c3wvoNMqUfDCDGXfIJzagoIGltLBI2KUHo76fiYRvfOUjI3f974eeT980hKVVLryXY+yqBkjksJkg4ooNYzK/egVsWAXG/G5F7ZmcRY6/3xSOtrGaZE6fJK6tPFzoJar/O2Ntz2JR1o4zoXo9iufvTo7M8DKMVLT97dOMldQ2UaFT6eRiU2ruY0KlmPZgy5lLLEZUXjKKMYTmGMcmIUarYd7B30zjpP3Xqq1EyfQVOGRiUcV5Axocb2izuhHRYSoU7bNjRTeG2JyUICNSqQn+AgiZ1B+7NiFDam7EFf8pMYKz491zAz/LaAQI1KOJ5GBTKbpANt8pvNQCOGsB6Nacpj5tge1hyiE6ql2hloL9wZqPPfGajEKvVnLrac2bnAKXbR1gP5rJnTlTADnW01PDOZZcDM75IcMEHtS4Iy5lZ9cOdWZFXPQA+wMmLP3O7F2LV92qAP55f619IZqDMuJR8VzkC5th2id32wo63R2Tsshj3hG6Ez0D64M1BnaQfaFKsDTdlxe/iM/z467dqxfdeWcXdckaO0B4vH5srvqYnVb3aikMLAJ2BXC4DV7CQeH7oNEkv6XBeOfEP2ySuUS5HDqoZGNUAACQy9gAGRQUJs4jpDhGwB0OJJz6vRrp2MFepjWIH0AjzsDfW+xvDDHw3cWGB27coOQnyBnvhlL+ke69LXdcWv+/DDyr+KNCW3ywu6p8UsqhGMwEPAD4OCRZKtz7WlV0Xjc6FbAy9ZQL+O+Pzjhx5dwIpy4gVyoJnDz4apC14EU5NyL8HDERey768xzRtUo2ZxafzAcpJ8LW+4FsnP3+EisL+avNjRzOrcUmejw5ysSVc13HP9deoP/sb1VYmexQhXz9KwZvUsMwKnBzEvnKdnHIzs3nr0VaFyljqv/LpmerutpW8PDk+LLE1zqq6exQhXz2Jck3oWV6ce3f4pnelSvPDsJJ+o0b5E6VmMcPUsxn+gnkX2ST+C9CyNcPUsJuX1LM1+Pzn+1HnFveeOJ7mvq8frYDSn12yVyPFJQOEL1vGocvxYILlcWNlokPLl+HEOsSNcljVz2UY98viehc0Y5cjx7xwKDv3RMdJl8ap8i6mswurK8f0AwmlY8+YwUJFlJo04Of7Gzcu1xrVq7757anDDXNrLBGXJ8RsnegxdfnoXJfXrx8J9HP1IZVCcg0sR6YjKlOO7pLdcwPQMICd39bj8bb7TR8Lk+DCFpbgUUv84Of6JkGPhrpGb3WYsO2zVfMHEXsTI8cOAwBw0c1T5+UfoKBQTrQE5vu3x0jvttSdR4sYGNRAxowOJkuPDPBbi8lguXSc3r3PLlwH+CScPHUujLc252K+4r3FPVSxfYCF1EFYUsgSoSSfWXKZmU3DWCO96EynL13ydkZmvfkc5yxdZb65ujTiALAQrLREGpJOCmsrURHzo0266pbXLTPuikSJr+3sELV9gJBNxkUz7wzI1/VIXPO0rinHMfFkQNWT1sIfELF/ytCS+irp86QHk+BOlHWgLrA6U3L+ldrfMKJfd7ajbz1k7GyBupQENFCfH6EGxGPbyYofyIyGGoKAPLwL6C0QZOTxoSOKIQ95C6UZqPylXrs9sbjWGl/O9pdO0bvu/5nn4nsS6VvkVDXysslOobEmxzVVQr7lBrlj0NnjnI3n1EPC0+ujqIU0U9ZDsfmiy6iGs49JqaVjH66lYfYTX15HElhcbvZyhwTgJWxnVqh0+/TtEd9y/jsnX6/OMl7dEPtuiLzklEzolyqyEqfy6TsD6ICbwETWJkQfvWlMrdrZSYIe3dhKKKI0Q3zZB3c8PfT/ckrx95fOy3d7GR5AJU8lZncRnlbfOP6qxDgilYVvnUa2zjlTPi2UdCwlHdmgYNNP8OTeohHnsVicOiTLv5rjWJ3Rke+r3zoaQKaAkBFV8Lb9yCahNyh58nbzR7FVjNLBZHLbRasdmceW37aun+FS4EWIqHADOjGq1Ue31KX6+vs4bEyZtOPA5ykc5E+HHI3/0sTk61nFV/rB7vZu1rm4peNhoXFyjza5uKfhG3mF8ERRSEVYw3WL3/JJ+Y4+le/K2Fk0/LE0lETPdIm8vt0dUhtweUQWwk0umWy0xhTEytUplbkUuUIynIugoead8pbFKxERk3UX+QuSY1vOBXqzIDWU3Sqnuemy1ZDKGVsPvrtF6ut/NO2QJ9FZY0NPu7F2e9E8GZefOVmpf6j1B7iZgBPyH5C2C8tJCSFgkrPz+XJ0d2CJx+V/hz0+TBOxgliAQRAcUnt5+OhW7ftXCc4xEJ7WXK9Y/ouJeJlrUHjpYWay78PYMztgLj6NKiQz4SLpDFuQzMePR2/e6Nwe0B5vsdc079iYre+3qr8rpEGV7jepWQ92Nt8cmqQhGVt2gZjOKpAhqGNACwE1ZMgFABbfo3LicRFor6pwHe4tc/UvKZKUZ0DkqtT9XdbWcJXgbEs/fB8+ZqxvZbO8DkeCyecEieJMhNisgRDJXApvi4WIaSN9o+0ITStFdMh/0miNagox4usLnrNQWcMrghLmDMcxJxoWkOQosKJ1+RZfEHgOW2j9nkBVxmbHU9BM3zZFSxGX8OBR7ezzSfeC7rImcBYwFczNhGAtdOrC2xurjW+uHD9A1a8ZMahyXfdL6BFIepwf3QuJJo/we8Vih4K5o+8BLXK5qAYz2V7cGxH/qRc/VvFm2bWK3fwzcoAsBF4OU/mBeu/yzs+LXKxvZKJX0+hMh2Fy5Luyo3AYYVej1dX/2+qgE2hSP8BD5kewX9A40OXt4jpVyuvp6/nptOoU+dsywaHw0lZyxrLpz39JyXf1lWYfMOAQddaUo9GDrr5WBxH9Aa0V/zrhxDz3NJ1sc97Rfe3GHqZ9M6SjgJ1XZcVF2oFAGoNNgSyTo5zYqoDbIylJVWB0YiH0b3o/bA307btntr5AdO0abUcWufMfLLQ1Gysm9T0BHz0uFJOZYz/XP795mk2ujeKdtZS1NLsVF+FX6uX5jN0gPyCXRxOWE5RT1oHtrg8G4G/ROoUgQESDqSgoEmmTxLyQgSeYHcoJi4KWF9LyoNrjwvd0pxu0HjnsubSmbIFpQhH9p8vmsydDBymLeThP3X3eh/msVTVZrclqu1Gt5r0O7fWswp+BLlRG/bhRMWFFxoIdhSjbbjqH3bEqdoW3fTJD8fpVMXBr75uvR+IMr1EmME41k6n+1Ii88EXN0iUfklOo+a11AE/sqqOwvvwd1CQ1LoIcFscuwEDY0zRBIUqY/GQpD+BFcaDYC76vJgUZKrELXWt7Oww5vuum6d+n5p80WTjqIwKczVPJheXhDA1HgVbclAzpgioZNB7kwqmiG1twpUDqN/1nvW1wJHB3GpA3aEa4hU51SIt4sNbpdjCwh3Ij28xQe4BQkJ/moqyYt0CNANVzAHA2bCx1RZadeBVxG/BQkcX4CCgOCJPDvmDD2z9dgVCR34GFRHKE4MR/IDmKBBwPgD0RxoDUT5GVCNoiAYDnZ3chOx7f3Y7jv1uvXb7R6AnKP25ayXH3AFXiAs6MQrg8RRmu3ykDMxUU8G4FYU8mud53xyu9lcDEt77Ld4fD+mn0QiEyk3RgU2cDxvWBV+V46LpitCDD1a5nvnX3d8T/tfV1p68wjIs4+ejELAbaVHNgKnC9YZc5Xisv4KoKxVgWMByCG1pCIUBavm4DNCgT7oII9EqTvl/FQ6BV0hqbmjoZtN7o4Je7tn3o5tA2ygFP5C5AfJ+gBKuJVhstLHTEV0a6A11R1BDAunxfMEUVAgUTol2BWGKkTKyyMywFZ9SAo6UwS8EEkEMIHP8HDgfwRWuzDLhnIEYg5WkKOKYpis3kyPQD8iXLEIb/D6RRyhz/5z2LSVNdZGS++z11egNyvqJ4DK0yet0OYiniDx/qxeTdG8NapgPdkJG5oggErPUM4QSLCWM8TzD5tPzCDOvuas8M5m6s5yHiMN7g2edreQSqibY5LG7kNhW4FtL8hvRskKeFneAUs0K3K4VSUJskbisSLQjhQxJTHjSFFhUAfhd4BLTJZAmgJA0XCIJsJwTNvIJQTAyl8IAoBpDDxM1vgAxxooRkKcqbi7VngM4jjsAKwHRf8NfD3B4RwoEmt5HcBG1K8ccLCoGuDviGGw+YGgmQMtFIIYsOfE8BPHaJb28i8+8e43lscim4NzThwr/Ad0tpegIy8tb2EKrK2Da617RDWblCBtUORfT9fwBkPFqTcXy2puhYHJwhkB0MBFSE63C625/Uf30l3Xtl49dNmnzohS1fqeEmuA4WvSEV8HXD5eiL46lXAt1ADARjSlkM42YIwNniqMILLgpZi/F+Tml+Mcfs1ECiGTmRZDUuQfst2aD6+vsOb5jOcly87eimcvk62ggjEBCUTGqEiN/HFdRM2wk30K3CTTHWsdggPYrXBY1ANsmNYY+akF5lOqe4Fb9S7HOLJGAS6dhSDcFVkED6uQWIQBjGowCCLkAbhBwUJofYC4YjG6Ag5IAT1c4YMe7yUKqJBSBI9gRxWMHQx0IqFx4ZrdYLGxg6PABaHDkdxAsW5M5b0Y9Dp0U1w8kmjwr6+J5ziLw3XcirJRoZkIF2XXCm8f1SDP3YqHv7YBAR+w6rij6lt+E8N6PV6w9ofDitS45o8z2jRCol/uDz+4SrCn4iLfz4Cv5HiOV1LhEEAKQ54gr6ya8IraxlH94l2Morsgi7eaf45CvkMhaf0dPK9hSe3s2p4LcHllaJYDcuOgM7PIDTUo0rD0KBDrojNnU4dBDFHz7jt+HFKeDrP6HqlY9IaNL7y8yOXJTFnC1Q2d2moAgE8NvY+ggioBcn6CWhxcLTZClYMgzfw+NL4MzgeBU1CoIEviC8IxYrWNJr/3+tepU+dM199fKJ1pMgSOS+Hw9GVi0UrhRqIRWNTU1AuoGhEMJeU1fXN8W6OGYvHhaX1mXxaScFopYABwWhsMHRk+rG2RaN5Ob16JUzf45RezIxe7paio/xotFIYc3EZz0YyVnY42iLyaNaU4GzyWtvD6dqGKYHKCkcrhUw6LpmtSDK1LR4do/12Ms3/m/Neva48zuhFX1UQj1YK5FJcyFeRkGs6IG3jzp2TPbqFU27irp2u9IOG1QxIKwVYGS4wdeT043eNSMtWF65iRFopwEFEGht4YyTw3zEkLVtIr8ohaaXgNsfFbYnE/TcmrXgs7NG1dssSbm1jri8+3O1ux7xPVY5JK8XcNrjmtkOa+zcIShsefG5SGNaLmj16a3Tf4AOvqhOUVgpgB1zAnkjAf6PSNRmVPhUVv33V0ymMmbakTMqx18yqRqWV4ie+uH7CRvpJXQ1LN+2yYs3BZU0p8R6ZEwdNTO5V1bC0UizCx7VIDNIidScufYnq09N16Cdq3jHTcMfiRaKqxKWVwR+OS2Pyh+LSCP51JzCdl9ftpBb5MiX2rHbWAOuHZ6sSmFYK/0Rc/vOR/Gs+Mr1/Q3+tFQNnue0cfHqu6VpqYbUi00oBtgQXWIq0TggJXEQdUqcfTrt2+NWJr047l4Y2Hyu8dEeF6vQSAzqeOr0FnSB1+qWT3UIPJRuR56Tv4KTrG55VrjpdNs9QTXU62VDyJAVqFsXPhF7j6vQW6nOHrFjq6bD1TXR610UDZxCpTofpYKrTYTqqVad/0Xz55cuJdGZRI8sMv+mX/WuJOh3mgqlOh7nUbnV69ve0fxl9Emibrum/cBnbpEPtU6fDiLm4iFWrTm90fGzTtrwjzDiqyYMArxLH2qJOh8Gk44Kp3er0puNnP21+7gGjeM7Ap/7bYxvUQnU6zLgUlzGx6vRBTUdE3+sX77jw+OeUK1obSASr02FeZbi85NXp2r9hLmCXzYVb4+8XuhXwGkwYPuW+dlXV6TKTGtnN7JQxqcEUr8PmkBeva/9mmYImky73vdzA2WGpZePOFw5Tq54pkDWG7L4uyjCGOa4x5LXteMb4q22Xdwb1TanjM9oMo649/fFOwdcO/auubZdxBgOTe+dGtu3DLNT70GwEI6dQGc5gg+sMv530vQnpfLB/vaWM9VPOPGZ0amJEpPQd5uuAy/ev9J046XtuzLdO167uY+Q94X7qvCWPSpT0HXYTX1w3+TOk759DM1kHEt875doNf/HZ69gyoqTvsEH4uAapq9J3092fts+JTyDn7pq/6frzd6lESN8BfmzpO8BfZ6Xv5LvuSzaTU5jbAiJThWWlQiKk7zD+RFz8REvfww/uOdisLN51mnUTm9LrST6ESt9hXktwedWk9H2ioXBsRsZu++xxfQ56dvrQhlDpO9lcEtBGTb74WdBrk/R9beAJ9quYby7T7pmmpuq3O0iY9B2mhil9h6mpWPq+Mjbv+eXD75wykw6RTfLmq9US6TsMBlP6DoOp5dL3zsc9Jm5/+465wCEsresK59u1T/oOM+biMlax9N3sCin5e/f15LmLsw1DKZo7a4v0HSaTjkumlkvfV56Lub/9dTB1dqNnLYecPldQC6XvMORSXMgES9/tdJuf+Moe7LYu98ihhII9yQRL32FgZbjA6oj0fYFdj8Rpxx3sN0b6+HAOW+QSJH2HgWNK32HgdUD67lvYZ5Y7u8A1u7T5oXGHN8UQJn2HcZvj4v4rfa92LEw3otegjKbOjDmrG5punrk8hTDpO2xuG1xz/37Sd1/G+LP1Jjyk71pmdOSY0dQPRErfYcAOuID/St8JjEp/LnljmNj0i9uKC4F5iRnXmhIlfYf9xBfXT/4Q6fvc9esfzOCJqOsDBra1za0/iijpO2wRPq5F6qz03SDu5RruP/0YsRc9y4xp4Y+JkL4D/tjSd8C/7krfXQeq0/2961FWD0pmrAtPvUSE9B3mn4jLn3Dpu9cHuyNHuia47G09Inf8u9l6hErfYWBLcIH9lL63qWPS95SzmrrsejbMLQv3lmiUsW1UKH1XA7s05VAxpO+3N8qlC2tI+u491tnJtF0Zdam2a4ucAfXUlCt9V/JWV2QAcSuWaO/0WjgqVKPS9zWjdrTun7uTmX+w9aEk4wO3CJW+AzpXcemUIegoOyFAarlq1AFfL/vUuBFL/Ds9c6kt0nfARZ2Gx0UP0fRqWz7gRSyn+/HTTZx3TNR87GttG1sLpe8AcWNcxMgHe5SdDugVscTpKnMveW/zFdOz7i7qX2uk7wCMJS4YGwSY2pYN0B/3z87dzHGuCzW3x9JfPh1VG6XvgLEdLmMHBOOaTgaYOd3emijqT8nZwVLbaallRLT0HfDyxOXlWycKs+uZOm851yHNcfk2hx0t9VOPV1X6rgzebFze/N++MPugTgfYl86PdM9t59XHsZf/V8IKs8O0Y/BoQ8vzv4XZqxd/DDd0nX+fmWO/ofT2FMrhhd5VF68rwdpQQAXP2om/mzq9+1oLTwvyPsa6l3l7E/unfyRUnQ74zsflu+RvYXbC8gA91Q18r5dmuBYnzmG1WugzjDB1OnCTFFw3WflHqNO1NzAbjj6e4jTXM2nHuZaDIwhTpwODrME1yMY6qk4PH2G7+lF4pkthUIc7HYs7GBGiTgf4c3Dxb6uj6vS+WWtMh3+d57o+9s7md+n7owlRpwP8O3Dx7yFYnZ66jv/0wKkjzPlb3s2OS5/ygVh1OuC1H5fXoRpUpy/UyH+gdzXUMYtqPuZpYexwQtXpJZskMWfU/IhHDhxzri3q9Gb2vJxHdu/dloXl9ywVdrEhTJ0OU7uKS60MSU3Zweh7rsIbd8KLnRb8WDPjltq347VEnQ6DAcFobDB6yKZW26LRuw3WeB0sMnLevfZJ47vzhGdqnzodZtwYl7E5krGyw9H2ozrOOZt3kLmSuefSImrut9qiTofJWOKSsUGSqW3xaHOTRn30sydTY1uOtHApapxVC9XpMGQ7XMgOSMg1HZD+OP3ls5Ept1zn3Gx3cPGU1YMJVqfDwDxxgfnWDXX6W/I8rQcFHchrBE+PbCdrdidInQ4DZ+MC5//+6vRzlhO3vGqe7pz0wbiA0aKHI2HqdBh3DB5uKCT9tzB7NWNhLQ7bHiz5dJRZfPfpC5O2iesJU6cDc8MxaWxzJ/526vSt7pbF7ZzO2a8N0HTOaHn0GJHqdBjwfFzAS/4WZicuKv32Vrucm030mAl5x9n8d8ZbiFKnw36SgusnK/8MdXrE+3VfN8c7Uqcb8T+Q7dY5E6VOhy2yBtciG+uqOt3Oaefq+SF9qJsSnuzZxWh3gwh1Osw/B5f/trqqTs+/OKOd+ZmZlPxmW4XCHIutRKjTYf47cPnvIVqdPvHN9yPtL/Z1Shjaf9SmFzb7CVWnw8D24wI7JFWntwUXUYfU6f+2EDTw9BvgGut+jT/w3xP/qFCdXpIPrVA2Y6nTM3ZDR6OJUKev/Hfp+x5DL7jMWPtRL3rl2be1Wp2uth3ClIelv55fCB09ULPq9MNnJrUf6zPeceYCx05954XsIVKdDtO5jEvnmZw6XVuJMdnmu17xt+QZuUzfF7lIr++9scpSp8s4lWzoVxlOpUbDw9ZATryuXYsCthc/FKa3nZzuXPztyqTZRVFvVCBel7GAbIhYGRYwxbVAazltuzIdNytSkGis/ZiRfWDmuaDjr6OUpm2X4SabMVMGt0643HrKSd9rk+cu1TR2CeGqM9Nu6o6N7ad3TRXSdxkTyObWlGECW1wTMAhVxpdFN5y3IDnZeeY853+4HkkLCFbGw7w8cHmNqBPKeNboGVpP2ndzihs/TH/QvF4vCFLGw7wDcXnzfntlvFsf9tDhZ47R1h307rmftt6UMGU8TDsal/ZfZXx1Y5+pXZsydHtMZiz2KmQ9MFsgIEwZD1s7Adfav50y/rZ76t7Ng5McNh5yKM0wXcAiUhkP852Py/evMp64HMSSXX3bnnCxo+RqBy16RX6whChlPOwmKbhu8mco4+c5zLWxtX3uMrX9p7Z9s9avJkoZDxtkDa5B6qoyvq3ne6MpXD/3pPE/tpRNnr6RCGU8jD8HF39dVcb7naG5GNpZ0Faz0sL7HfnWlQhlPIx/By5+opXxC3hHHedbTXbdS84X9h9n70yoMh7mtR+XV00q4+v567XpFPrYMcOi8dFUcsYyQpXxsXsk8W7U3IxxCRzvri3K+FkDNponHHnqvHD8yIPZe56eJUwZD1O7jEvtmWqV8Wc/nBtF7tfaYcnIsStDd1GyaokyHgYDIt3YYBrUbmV8YVfn2AcTEslJoa2O19/QeV7tU8bDjE1xGbdWrTJ+OWlDk0fnDzntCTvz8sruLbG1RRkPk+mES6Zn7VbGO212Oe81qycleUCcdvcN+7NroTIehmyLC5lBrDL+S9nAFMb6Yc6rWk89aXjU0oxgZTwMzAMX2Ii6oYw/P/5z/JMz9Zh7Jh9K62Xt2IogZTwMPBAXOO/3V8a3a/bB4rT+OUrxg7KyaXMcnhOmjIdxR+Pi/quMr3YsbNmWjeE6J/Mocb6ljf2dXFiEKeNhcyfgmvv3U8YvG3t7TlC3cYwVcfOuatvnfidSGQ8Dno8L+K8ynsCotEd0r2G971u7LdBLHum8/spZopTxsJ+k4PrJH6KMf933y4W7NqX0wuuGn1jhLwqIUsbDFlmDa5E6q4wvNkjVvK/j6JKg/Tpqh9bDLCKU8TD/HFz+dVYZ38Cx33/DCwYyt3zIfnh9zBYdIpTxMP8duPwJV8abR2zyOXS0Pzl95ZFlm94XHyBUGQ8D248L7Kcyvl0dU8Z//GKxfOQSK2oua/7BwnevPqlQGa92EwJJLsGq2/6fXGXjGlLGq5eev5jVdDi54Fnk2am91z5UrjLeIO2r36fZ3+i7Xz7e123wwObVrdt+U7LDK3p9odvQUWNKjSrjM+/ta3K9Z7bL3M49klulFO8iUhkP0wE7uWLTeYSgo+yEQNc4w+OcwDWUdQZn22xM2W+rLGW8MriAjVyxudARTwzUtnyA5aaNRSWNdjrPPxxncT/6BkUF0ndlIObiIp6NQKzsdMBTH//CqISW9skDrs1cbJk5XWnadmWASccFsxUBprZlA54VNnlGfbWBnJC88Nn9ZTtHqEK8rgzGpbiMryIY13QywOtGyRPt150pUwfu90/80pRodTrMqwyXl3qdUKePHbSyZdq2h257zw80X/uj0QSC1Okwb7CHKzbvxr+9Or2ReVjhhR2baAvmxed/XjzjCWHqdJi2OS5ty79126sZf9y0c7T7hob9qKsbn+BNm3RjF3F1229KdnDFtrbd76ZO/1Gs9nlsOz3GtPrJFwdPHuRKpDod5uuAy9fzb912wvIAG+Ojn3rrJjuuG2iaO1+4pjdR6nTYTXxx3YT9R6jTd47uEzHwejP7FTGX/E5FtG5ElDodNggf1yDIbQLrThbgv9J2RVc422kFh69Ha5v5RBNSt/2mZPdWTPyxCXVUnR5uqHVMNOwdYxU3ZuwByoeRRKjTYfyJuPjnE6xOv5OR23e89zbnbbrOwQe8mjwhtm77Tcnerdi8UmpQnd5Ta3xUgyOu9qt0Qoe12nQnj1B1eskDScwZvXLQYzjmXFvU6SF3pnfhMykO873LduZxuTMJU6fD1EAsGpvaIyQ1ZQejn/qENx9r/Z5WdOSgF9vye1gtUafDYEAwGhsMHSnbr23R6LVaLkWNmo6gFBvlLKAOz9lc+9TpMGMuLuPZSMbKDkcn6A6/1M73tVOqaYvmO2Ifr6wt6nSYTDouma1IMrUtHn1q1n+fHYvVnDbM0DC7rjnWrRaq02HIpbiQryIh13RAeoya5pIupjecEuN0N/SP7T6c6LrtDyQBaWxg6nVDne65ICTTdlakS6F15zlR9S6TCFKnw8BBRBobeOPfX50e90Rt1KLnauQthoYNnqwMm0yYOh3GbY6L2/Jv3fbqxsK+PemVmzvFkzzLbGHRk4nWHoSp02Fz2+Ca2+63U6fz7g9Q+0i67rR2x3pe4pPk+kSq02HADriAPf/WbScuKt1Lr8OGjPRI17wxei0WL1/tQJQ6HfYTX1w/Yf8Z6vQhnGUbbGf1sy9a9ZL9vdfDNUSp02GL8HEtElNX1ekjH8+JzlafRZvzZMn5A7ZmP4hQpwP+cFwakz8Ul66j6vQbOU0upuxq6Vho8fbUApLrHkLqtj+QBKax+c8nWp3udHe3x8uJYc4FDeyPDZk2Io/Yuu0PJJFpbGApUnW6BbgINHV6/XGmnk83GztmRxhvHqSR1r/S6nQDsQRcfM8x8tJ0AwwLdK6ENF1slxhUExw/EtBmhrad63Sjj1NSh5gtxrkoFFG6J4tbWbplEL80iG4ORPcjVYau2lvoaJFConQrFNeLUVCRftP6zkHOSbrTtpVeU2+3moTUlmhj3TbkfRXL0W1M2YO+5CcxVnx6rmFm+G1BdcvivoAApUP4DlNQnLPkJXR0NQJfRZmBTuXl6FJ6ldaim2U1ezn44ya3zc97Ho0f92YSkVp0GM0GXDTZCDQVhf/NgGfxoMuWdmMSPOgorL7Nvnr6LtV1SffLo4zsDZAbE8K/yHf3TJZqKGzFpVAoV3Qdj8JoRPuC/AFKJPmSROxoEWkiKULAJY2SxUNiwjkkkHCCx00O9AsYZMHkFKShoGwS/H6AFp1l+0ecpm3jDlDzBc6jpmZGyoRRILeKQPMpVVTcAzSLcGnukyugrlXp3gqeXEjoiYlVxtP6dfJQb5dygbky1pke9TGnA9LThkDnlIczRKQiOKW4cI7JVUnHg9MHAQeK1HOgewGTuXL+xpH3N/Qtc5ZcnzagZyenNVfG+xSkHEI+wNCA/vPcKOHmIBWhOo2L6oJi2W4LvGw3LpnGiR5Dl5/eRUn9+rFwH0c/snKDnYYnV+kzrdvvJIPZbTQqGR/gwUyhPDe1fJ5bOpopIcntY9138Chbqmv6w6m3rpRwxxOW5IaRbcBFlo1EptxR7s6h4NAfHSNdFq/Kt5jKKrxfxVFOKRi24mIoVKzgGhHDXIJRsCNrhJ3r3GmcorZPrj2t8jCnFJxFuDj3KVZbTRnj3NCMHxtvDs2lZzTtOtZwyl37qo5zSqFTikvnmGL11ZQ50PnvODHh5qz7zKXTXXQmRO6cVr2BTimsTuOyuiBdPLcHnQPa4plZyDh5RO0ALXZEs4GcJ84NEbdk6AYFgTlQPDMA7r2RK+T6klOiQW/hxoJghkKfCoCghyLOouXICQxk834O96ikDfZ2nt/0VJZ9lvacxmdfN/wH77Lk18iUf5dSK/t8/FsIoD/0EwetkXvIrZE14MJTBh7A4dhQQJfOErGkNw/M1cAJTLYQFoQ3pIJfdgoEpwC3Mzzw8Fz1Yl36rrKmbgZdTE5Lj6tjHNdzh31bbuWqI34d+8Ti64Evt6LFfCsGRyCE4m0idijcfyKthGqVgaf87dtPJtO3LH68yShUA2kVdYqcIaCXKlqzP7rWblnCrW3M9cWHu93tmPepmmv22Hc0cWE2P9TJ3yfoCI9WDpJ6BZBae4PIRqBClLavyj8TumocfVrHZtc7WD1CTofVqfKUqBVSYsaU5SYxXN121htQ3+1okY4yKEXjUppKk/jgT1/Cndh4wfki0IlWApCByb1zI9v2YRbqfWg2gpFTiACkJT6VPCUv5Ucf60uq+M2EMJBk2/5tbbjtSzrQDpIGL9eBfrU84fT0/Vla0qRH8+JJuxwrHX3UEwf6YCGTfM/aFIN0p0rEHuFQeaW6Wa+DLl89p7V3Sy65+6UBQ1cN8wJR4pAeAezKuluZpAI0iEP6yRbHKHkDHXVUKA7ZFTGmizMDikUh3y7p3HLi7dYOS1s4nW//3C8ROR1Ev+V6HmhP68q0VNtVe/znO4x1X7BZ7+VirW3e1WypIISrlk/FWMzGQotZtcMKbRbZoXwMUkyu0hHIBWvzGCt1PzhN6zmswdhRSdOJjEDCYK7jgnkpt08kHhjjXxpQvJKYq7/3M9ArIE9jFe6d8tkROU/WQBEhgtdUcu8aNLx711co7thbQQEiDqBvp2ONLtRXd5v6467Tgd7aFIIfhodRNcFFRVIoqNgaXLKUg7wCFpXJ1ufrO7lMtHCefmWDn+jB5HPIlBusYa2xmDUMpDMukF4KBRJ9ZBbzAg4LWphjAhKv5MVvkupWfimFJUfQMbZpXf9HXLfWrslvkr4tyTRBbrSoD2McKv48ShfEU5FvDcJFiRzWKtIB+yKHNS6LJwsP6rx54n8LYRHPL+0In8eNgf6S9ukBLB4phBUJSX3E50EnenXLzvMT7G44rt5zcmLglEUye855gA+ijIKqQumFi3KkQjUruMjyWVCsCBryyrOUEyBUBa34vOhsBSk9LveeuN55yeW2vGUzk5sjJ7k0+JMoVbfYKoIbhAs3TKECFY7ycwgoLBcCzzetSBTJv34d4fGhls0RcsBoIsEOzc3YXIwh1miDcUznXLfZujf7sxdOOY4EJ57VyoNz5KgI3HhccHEK1ZqwQwXH5QeMg6ZcEDjxv375GQAHTcvYgRzMOdmE1jrDllr9YEz1nByZbmj8GUnLFT6hPC3XcSqiNQOXVpJcrQYFtS8W+NoXnDHYqPm2xdHhfcmzUnW4ix7efF0t2YtSUC3ARZWsWIqqLV6KCgfLaVvdnqcKtJhJGg23c7/mG1RmHaShgieXMt5J1jmosUy/D/A6R6H0FLl8eupnW6tucmp0Wkjw0ZSVjK1vet79ppfWl7DkFAzsOi6wl4rtD1S5BVCblumC2MXDmXl7OM4GV97cr9ICSCk3DxZA2Devr1hKSokrIAu9KUP/9TpHW94kwHbq1tiSaq6AlMKqCS4rkmL5pqosgcaNbTuK/nQoJXbPwYX8dfHZ1VkCKYVIZ1wivRTLMdXcGqir6PE9+n4j13WbC9yW6V6fWt01kFJYDsJl6ajYVj01vgiaZ2k93c+xuX1imt8I7YbP6FVeBCmFpRcuy5GKPSdJ/Coohp3q0ufbKpddxvdXh827Q6n6KkgpdINw6YYp9lCkapdBI5c1s2x7woyc3n6L7wmHt5SqL4OUQm48Lrk4xZ5vVME6KOb6mVtU+wjHGf06DH40dW1I1ddBSsE1AxdXkvzzgTW2EIqY0HzZ8Y9GjB0/Jt3vdtFRn1D9P8xqAS6rZGkGriO4CLQMHP3M5awyq1eOGzZ6LZ2ccMyn0hk4fXGCC8LLCUapTN8Kg71lJVJwgfA50dWSpHxeyfXNLttu3v3Y4+xgC+xLQkm60YWVrkjfEcKaUaKmVgAtEubKJt3UvKGjugol3brJCGnAFSqYdbv433X/x97F9htPZgiSM5L8kI0U46br0XkVp9265nzteHLhdXoKK6nBly1PzKor/bekicv5X0bzS7V+wGPJiqTdOpbv8STsKp13W5g+x1E0OMFxrf8Zr/56PaMJVf5bSvLl2GQuK1SFvqmsJlJMB53ECZM5icvvnqcsHOcpeBpqtoEo4T+AYErFg2CrUMn5PgouP/EY9b5rsHzkjTmMLREa3dY0GmFIcAYOZhWIyypBodrx15CPJIInAiEtHzuUP5YDifm4/GA+mMrKKkklxEjgs+BAaASkfQrjc8QiUvh5rUAB0KuROKGsYKBHDeMFQycZGwb+FkYGQ6cSP20tLWQTIODDD1D7wzuRcAQBXLb49OITwF8AvY0lInHZLOjfPXv3iYZ+oLE5ms2FZteQqkgYyuJy4U4Bmk1bk9yo6BZtypprmqGd4JaQ0lcw/1s2Mkin6RSAZkonVZkyBdeUOQpVuz+ONCWwi+SpajHDWmO7vj17REM/mLbrjWm7E514/+annnOcFhR5PabZpnfI1aUT+DoU44WqyHj7cY13UaEy+k54QQ+pyaoe6Vh4/kL8Exua/eqsD66zzC+fRD46UaOJXhjdE1x03xHoKlqXk5HoOOwoNG7gZRRo0MvoxO7PfpplkvnIfVtEvfiDMf6LkN3EUOhzKLiiVIRLl4aHy0ShfCNysQMtDlmVHQv7BRkdWzmtHnXalZl5A5oUIwu16UCrQoyyJq58FWFphYulo0LZRBrAwmXzgkUhYtU/0KdCnRIUzRGTgKYQoFQTpF7lgZxGpalxSMMv9BnViLZYjUz/z9OuYSUeBtAYIlINMGtcYAOrm1BsK68kFFYG0ZytK9r3/pDuusnTMDlz6yrk4yRacN4MZQntEdBZNZTscSm5y5VwV5BSR4zNyCqFamjXt5YWD6iMLV/O8s71HHoIOR/9Ve4VhReNryJew3F5BcjVMleQVzsEL1aEKIQvqBSr5KcHnIrJ211Wtxj/fm3OXmR2TZsiPpE8J0qEijiF4nKKkisxriCn9vhRLDxSY2c8dzmrbuG4arvHiv88H3UkNJ8PWMXG4rGKjVcsn98OL5+Px0VoYd5rdNZeeqFonZl7h4MHKhVi0aDzlB7agx+qASGUl6hMwuEQikIZfUr5jL4khqKElP6+CYX9246/7LDsw/U2Hf3HGBCW0oeJgdAKNrHLihVVVii20vz6pKR99Ayn+KlzjaMCHaOrGFtRCgUQW8GmYKtYBWVlBlduFno+epudSl3T5Thp3NGGTwhO7sOwAnFhJShWCvnPi6480R7tGHo0ziH5+mLr0E2d8qoaXVGKLVNwbZmjWPHmPyC8ctthSOPHjT1cC+/3MdMaf6GkyuEVpVhvP671LipWFVrF8ZXIW6n2y48JGbM5Rr632gyzqkZ8RSnsnuCy+45kR0yAJTzW8WxYZjJz28ylD/JjukVUNcCiFF4gwILNy0QxKUPVIywZS19o7F68y3GmZT/NO4uefqhOhEUpXFrhcumomFBBZSGWG1ajx2ZtO+O+ovOYW0kPrt2oYohFKcSscYkNrLZWoaoxFjbL3Pjs6Wzmpi6di0bd/z686jEWpWCyx8XkLl+RuCaDLOMfk+aFWrRx22RMmnz8dX6bagZZlAJsOC6wAPnSvDUVZYkS5m7o6tTPLZfbt8RzVtqpakRZlAIqFBdUlHzF3JoLs6jZdrB30DvrPHXrqVIzfQaNULUQgAWHWTBhQWEWiVqoE7iIOqAWcj2+7kHziV7U3Xk/zreJX75MVWqh9hDWuTQstZAndOSCnFpIS7Vqoe9v4puPnnuHmXX5kKDdVLUH1VALVdfxgJZqHmZ8rw90ZDGtxuRApd3b69DGzaKvG1dECn78YyGhciBAZjkumXSFCoEqFLK6xTYLKAwYwdz1pfWsfIs+VKLkQADCalwIGxR6Hl+ZEat2w+PLwg9OdF2WcDvzKyX2ItFyIMAqG5fVVoUeyP/zAlbPghucLo5Rs988m66nP089nzA5EDBlIa4pkeWl/8ar1P5dc+fHzj6faVuy1oTF0632EycHAsbbh2u8UoWKF6g4XDXf6hopYddQpz2R2V2Cu9yJJFIOBNAdw0V3WqFiBaqJVhW6jWkZnzSMmjno4oWuqfbTCJMDAVwXcHFdrSE50DbDYvW5Y5a5JKW97HNmiV48oXIggOUWLpb/aoccqGvC6q6W7y/Tt4zUNRrkG2dKlBwIAHuMC6yMKDnQ5LPXQ4zDd5Nnao7c+K/bKDaBciBA6Q0upY+EyoG8Rpak+r6a7D5Pn9p+3LWcNKLlQIDXN1xe6nSi5EANtgU2jPadQ952Y6Xw30elqUTKgSBOsfXoeJy0EJxqNk71I+rbgo6dFjqk9T3Ri3Rp2XFi5UCAlQ4uKz16zciBwgeZLDJ31baPXdZwdLqt2iTi5EB+khAKeuwObBq2mFYb5EDdimc7bN64kLpr/qALtwauv0icHMhPElrBJpauWPl5hWIrX44e+Y/68LtbcgHN6+Njqi1RciA/SWwFm8IGxUp9KDO4cqZXjPvxBTvoCbNeaZPsS0yIlgP5SYIr2LC2Klbr48+LroR/s955MC3QeVvvnBO9Ds0dTJgcyE8SXcG2ZZFiVUr+ADnQO/eHFi187jlPU2t3b/9E5iXi5EB+kvAKtvVKFauLouL4SoesQxbJ3snUdC/N6Ec9mh8iUg7kJ4mvYLM7rVgdFNUEWN6csD858kARbcOXvddNX7qoESYH8pMEWLB5Xa0pOdCnrY/mjWpjxZjTvWngOvdpfELlQH6SCAs2l/9qiRzo7hm98DNtcx1nHdU8n9krcBxRciA/SYgFm1gZYXKgdy2uXDw5l+WybviWLXkjZz4gUA7kJ4mxYGP6SKwcaH/IVv6jZ40o0xa+XkHpwDMhWg7kJwmyYANTRy6IazLKEv0tYLxZz5HMnY2sN3i36BtJpBzITxJlwQalhQRVs2EWo2L6zee+WvT1L2YZpR8oWE2sHMhPEmbBhqVHl8iBLMFF1AE50I9ura09EukuqWfUvlgeY3xUkRyoRMde/PAWqhwoVg86qlfTxYNyxh/Uc5+V4V6wdMyLlXYv3iuveJDsM3PVLB50G8CLLcYI/53WhY4aU2pMLbTc0LLBgKs88rykIC8nZ589RKqFYDLLKHhkHqmueND7qTqkYQwTx71Wh5bEvHrqSJBaCIbQkooHgU5Y8aDL66abb9E/zyhs5vXfG/9CotVCMCsuLqvZf4sH4cazrix5e+OBzjPashHjhzKbpzCJUgvBpkzHNeXWv8WDkLazEeXN3zr5ruuaO+zerWae8SdMLQQbrxTXeFdrU/Ggb5sdii+VdnXd0tul89GXTrMJVAvB6Mpw0anXArXQrqwfwhKflS6z+X4uqezpY4hSC8G49Gh4uBrXkFqofu7TWQ8mm7gvOMrRuRQW6EmkWgjGYo6LxVJOLaRNRCir9RcDnesRA5hF83qbLDu3KK2qaiGZObpshEwZc3QbXJ52cmIinZoJdLW5OqJXM4cE51nMu58cDtwIrYaYSAaij/WlPm/8LZlZzivjzdJ6blcGRAdciJ5yWiOdGgyDTWj24eudlb6MPAstDZOXw9WqqzWSwWn65WGrbsd3kbNL1q+2FQVcUwZOX1ycbMIqE7UtmGQ2rMcdx/hXzWemFR+/R6AUCebEx+UUI1eZSKfGYmRzx686wL2+mDrDOm76jbWlQ6onRZJxuX6pC572FcU4Zr4siBqyethDJbhc7FQ8lLEJNVS46JVf10xvt7X07cHhaZGlaU6EKZXC9CXhG9Swop8BHL6pDUol9U0jGJ3WDXacp9m8x4oeBaMJUyrBxEBYB5vYIxUWLlra7oZd7NGTjEU93Nd0D795gCClEkwBxHWwKdCJK1xEfd3q8nL6MepiozEzXPQCHxOsVIJhcXFhzf5buAg/spO1Tj3p24dhjFls2ue5e/dPIkqpBNsyHdeWW/8WLpIx3iHnISkTdi9lzJh6wKLtFWc1wpRKsPVKca13tVYVLsp5nSO4WbCXujIszcHjfEowgUolmF0ZLjv12qBU2l3MnmfTUI+xsySkzfJV842IUirBvEBwB5tX45pSKpkMPcnbvnGS85InuV1T3taLJVKpBHMxx+ViWUuUShfax/3oENLeKWXFJ3OTxj8GEqRUgonZ4BKzI0ypFNDB/ssxu5nkFdf+GdWs7EUEcUolGJMDLiZPYpVKUz07F3YvSnFd1GWeudbZU5YEK5VgYL64wNjEFS7q+q9+v8vrG7pvnXXz1AfD0JsEKpVgUHxcUDFEFi763rXN/oWjmzstf2bxr1nT+8h+qqaVSgAWHGbBhAWFWf4HAAD//wMA - Normalize a design for this document. This includes changing the unit to the document unit and rescaling the affected values. Further it reoders pieces, connections and qualities. Connections might be swapped, so that the connected piece id is lexically first. The order of authors is not changed. + Normalize a design for this document. This includes changing the unit to the document unit and rescaling the affected values. Further it reoders pieces, connections and attributes. Connections might be swapped, so that the connected piece id is lexically first. The order of authors is not changed. iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwAAADsABataJCQAAAghJREFUSEtjwAv4xRUZBMQrgXg3kP2MQVD8NxiD2CAxkBxIDcmAX1yBQUB0BdCwP0D8nwD+A1YL0kMUEBCLYeAW/4zFIPwYpAekFy8QFC8D4n8oGknDIL1lUNPQAMh2ygyH4X+YPgGFHznBgguDzEKJE0iEYldMLgaZCQagZEZcaiEV/wGbDU7L2BWgYEcf3/9p+TlwHBwb/Z9FVAqrWjgGmQ3OMNgk0fCcBTP+796z6f/UmZPA+OCh7f9nz5+OVS0cg8wGegOUQzEk+eVV/qsZm8H5IAsSMtPhfEkNnf/PHl8Fs73DQv/3TOwG48zCPITPQGYDGaDs/z8tL/v/9NmT4Xjm3Gn/r145/l9ezxCrBcLK6v9fPL0GZt+9ffZ/U0fz/8LK0v/79m/5X9VQA1P3G24Bu7jMfy4peRTMK6v0f96imWDF+Cx4eP/if3ldiEPCE+L+r1qzGKYOaAE0iPLLiv4vWT4PCc//f/nS0f+6VjZgxegWSGho/3/2BBJEyBaEgSxYC7UAHEQ4IllIUe2/qaMTnI8eyQcObvs/byHEdzgtAEcykcnUydf3f0ZBLhyHxsf+ZxWTBsvFZ6SCgxPEVjEy/e8RHATRB06mNM9oIEDTogIEaF7YgQBNi2sYoGmFAwMg28kJLpAenC5HB6Dwg0Q8DSp9ZABKZqC0DMowkBxPYrOFgQEA8Kt7SBN0rgsAAAAASUVORK5CYII= @@ -22544,7 +22544,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in 7J0HXBPJGsCRLiKiolgOjYrlUEEUxG6a1NCL3lkghAWiIYkpCFbEiooFC4pwKhYsgKKIXTg9PetZzl6xe/bzzt7ezCZRNtldiCRZTh/vxz3ZyW52/9/M981XZtaSLeLJExCh7BP4qWVkZGQOfm3EAnkcXxiZiEikfJEQNgWBw7AZ/ljCj6jO80a4MYgEfsRM2WylavJhw8O1waE//16NtL6X6rf2woz5Gxa/jbAIkiCJfGQUbLeCXxoaD64SU0952B+RxoclixHYbKL84rrKtgCRJIErgC2O6Lct+nxWKCJAeDIk5nPbIqMYOzYSyxfyZeApgiQiMSKR8REp/IApaIeXNmVzZej3wIcy3zqe1sHkqmUdNiLlSfhieJrqFo0s/RBEHChG0CMoCtMAbgKiareUIVKZ1DkuvnYIuBuIDf0eFbO6qqMskVwB20SFC9zYcHDjyu8yVh42D+NK4hD0ky3An3bgQgz4nT+LRAkq2gEeDv3NIsCjY76qNjyi8TW1Q3hiDjdZJP8safTLvSQiuVjjw+YMuSxeJFGBQs9nicTJEn5cvEz1xB29AsJpHEQqRSQ0L0SISLgCWpA8WsDn0Th8HiKUIrQIRQeidTMb4M/lC1RnNpMiCXxRZ54oIUEOhJNMF4ukMkTkLJLEYZhahSMCPi2UK5CPthiIREv5ss9NLeJlMrG0l4tLHF8WL492BtdykUvBJ13Qa1t7eTM4/GgJV6KUN3xg+ChmmGeFRywUn0tGJar5/Oj9hoiiQdeh+fMCEERAa0djSKUiHh/0HKmxT4yqk6v/YB6ljpeEK5XGi8SgD1oosajabHs4u3Zz7urWtUdXZ9cuXbq4qm5JddM16JZg96xht2Si1FrwxxZ8J5IQLUj2lAsEFa/sHQq7hXOF63dS9c6+rs5d4P860VhygUwuQfoKEbkM9OZOyu7shySHiUYgwr5CcNF6qm9Quz0L5VXUoFTowhUglI4d9HFc5Dz6+oSLf1q/rhODgWCG9mD1xzfrDq9e/4s+C4yGWuNz5/4B4lMcw3RxeNxccRwCUqlTU6/wL+r57YmWXaJaHfFdElge91tc3wEmgGyVbtUUammgGYQyLh8oAJUehV+Ap0MDGTQZOIHGl9K4NAkCxmu0AKEBtQ2tBU0Wz5XReFwhLRqh8URCIarMaaPA+KaJZPFAycBzpTQRsEo0sUgClK21j1Aq4wp5iJec/5ntlpzOvnZ+HbznWgwewZobHmThzxWL+cI4FRC0B2s8hGUAnzei4lHjsGTLQPTuFdYG1ZjmoSK5hIeg+hD8Plv07sK9ixasxScifl7P4zero2jG8IfnWTFkMgk/Wg5GAkbFM8EHY9BDbdADm5hGRin9jYxmgP9fzjAL4ieK0Ou0hPfT2pT1yKorQylLeFljPFk+OTeq/vye7ZgLB4Vs+8C7cQvzqLXDJPwEWpgEUROamXJU4wmNGYLEyHkIEA8US4JYgCQBlU0TxQIZysCVaNHJtAREAuYLcehngIVBJAlAodPA6BTy4hGps7k3Pybmi+GshSu30pbD+2/fb86Yk9h53uVB598S3LiGoExhUxUJp8xlGRkdAXRTwW8XJpawUcpy0PqSWUfMlXATIvlCsRwdMqoebc7g8YC1q9iP8HjZgRmFkoxMRIsVcGUyRIj7xM7P1/PObGjGXLQi+9fF+0KD1Hol3sPWCqu0U44r33Ap5SCNlZOKNM27POFyNTtlyjwA5Q+AS8zQ7JRgjgVab2KQqSaRRHzaBsgTgJ2AHUizq0BksDMhuMAezI07kVra32/y/dZmA4PYy7Bqk42IZfGaxNiaxPCQGGmJ5CUpEjOWTRDU32BaI5TBDvG578M71ZCFORN9fqMKg1rzQ6ZBXFm86rFMxnQZZ+ojQxLgOarZnLkQRVvxJGuFZABpZW+20K4314ejKwHo4RhVr8aVTMqy7R8OXVrNWeDfgt6CXXvlV3blagrGaK2yr6YAwdDUh7dRPio2pQI1JjKGJd4PA3J73gjc3j8u/Il75IsqG0NroFKBbZLRwoGBxupXdOZJQLie6jQuDU6G8Y3aZFebBTefJDN3/dGr98UPWxcRf7EGZ3OWMDFcKKsqwjkAEgf8ZkOMGhpyBWgRsNQ1JNlwrx8B5j6oKuQp7hL/AZMGbz9dGjzLf+rewuyU1J8R7NBGr6FpoiMEuu9C0EIEgN/leGO7bCFoGUT12FZNdsEEpL+65lUNbzxRNIL9o4IkaLESUQK+OF5YNtm/58Qxz3kTX7awcrw4DWuMPcF5+J3N2DO8UgM11jFzRGLWAtbG3c5iq+KM7OrOmqDEokklhu2xxpVgaqiOSSbCh+Ry+cedx5/e8ZvfNbR03sGjZzCQLMJEBIjCKkf0fLPZmYJ1uwOmywpT/K6uGqMLRImkiFJYGpbCnISRrVLlAMOQCMcmPqDky5aHdyStDNx9fvj++qc+9sQAqvflEgTDmxWh++G9Tjm8ywAJsYaF2Ih2FqWFUJlFDQuxx9zJv54fwvmlnEm7XWZvgtVVoTyuAGd6bU5AshP6eRpwe0Tot0IjEAtiXIJkGl9I4woEtBi+RBEequJE+kPjrLqXx8/xmxR/ObftltlLcW5Pg7XicFXnP08BJmvwOxXXRnwCLZ00bATZiKvL5IJgURwiSkBkkmTchzrotHHg2/HW7CXx89f59u58FRt781KeqjnJ8NLoQrXUxhq9mPVs4adTzPX0BjsdBgz/t7rz5Wfg8W1YRJPDF6ClCUub+XJ9FjAzivmyFAgJuFm4gLpt513yXrmIWTAy/bfJk02bYwCZK66hiYel+8kxfP7WpM/fiRIDasUSiSQxfKEy3ttNeRjvB89aEInHBo4c6PvGcnkykQRXNnMKR4/n/vaEVbzXboFoV9dDWNl4oidqysazUjOhrl910XW7k4qOXnPmPuX9tbJY9VANF0OuZT5NyheufR/IyD64Oz243sUxX69lqj2MTNgKNTIXyOKZhsk2A60OWJOt0iOE05owIAspNC1ceBh16HAh3POYaTev1lLfdO/9UYumCgrUAzHKq2hSGKQfCp1IKfRWmWvT/6i53vc80DbsUCf/dbUY5hH7/Dx0bq6N4LAOITLXRkYAokTX5nr47pK3fYeto2+8z5qSt7e1UHfmGtlU8Oueuw70aZnuD+c2bRxb3anx3wBMGJHOS4E6b5g+zPWE8HH1zT3/DdzR82jp7Tl3+1JlrtHnjyd9fsn3Zq7bHW92ONS2hF5q/WjFAPFRRg0116joxpKKbtK3ba7lB7sPjo7tAHId9R94SC+dp85cl0FDFUZkqIzMQStPT+Y69HzP/gduDArcXNC59UE/o0MUmmuUgoSMQkqKylybfXMJLOZ8X0d5RCQ7Z37zW/NtBjjoI4FlBFMPQUQJLCMYnl1guATWfa7z9sGflnmlL8g3El0tmaabBBZt5/z+LYU5/lORK73sM6/kVldNZsCYLVG2JgVma1IMlcDq5YSkmRYk+mSXR01YFpFaj6IEFopkASmStczvK4Hl22dbCe8h3b+oaYfLf+6SJlKTwEpZq+yruAmsFJjAWqBKYJkTKdA4wa9/zBzzirF69Uu5/fgQP6weCgWVE7QwJElWdZ+nDXoOFyhPAaywg9YI9H0ZuAbIIHDjYPGGtEoa8m3j5z8PjXfx21QfKSlZMq0JwZ1pujthsK2qRsiDraiiSMWNTvYHraZVVZFExtkxDPPwcNBL4d13gP+FdmQEkvwjLoIpmfe582lBAxYVJ9BWILs8sf0MVBpJNfuZX6Uq88kq6TDRBktORkPHBk/rxHappsqk9wCQ6HQjoyg8/RDVC7QGMdRVppYI26qeSZFA+MJQmgwUiUQkFMmlAvxp35oWI168vjjNa0XzfHPvuYWLsfNzNJmAQzGiUtfyRZq102OTc17rZ1/3WJKY1VsXFLczyChiO6JxJYansaI+DSBTdTOJXIBIcRmFLHM80jqS6Z/r8LJtpJtsOTY3pSx0M4SDiVLoxCSjEEaJrTHlsBQ6E54yQQtLQ5hehUoKGBqsYsSVTt7zZREcs2KvYrvZyVuc1jz6Si1QXdGwlMN8Ot50PWoAaJ3L0HBatKRSV0lFMcpxabiuaOiy70k+e1Hvy91C57t8+trxrBMepkwyHnSV9bUgsr5Z28t/mnb7tc/O7Vt3Fo24wcFO8YK4QkSgWTBJNOI7MGhieAYNeHA0nlwqA3l3oQg8BghAKjsaCdfpGTYmCdI+XhPlPP4xR7ONOLeigdUIjypPAix/CPRDsT49MXHLcFAVDo2k6rrGbdqoScGMaA70hKWw37ZoFaSVPxe6ZhwkFvMFdRSHQ1QF6Z/L3BXHw0Tiikexonz2FHyFw+H+9VAE2HUBFqq7YokE4NFUawl+fvvpUx22hDvKRxgDats/V93Wqg0PQl1T4ZA/0K58EGRCvsyGQsUIqIQWsEQxX84FRhxMR7kJn/82HSjhir8YJ0VHsyTqaM3OyhrcnXiCU9DS5jonMTtfzd2EfcNXxBdqFiIR+cmd4McrmeaBIDew0yIh/iQ6M7P3tjr3fvJdwn5/x+GhUxbBLWl6wPBoVafIMOp1AQzQFDwPmA6j2ezqTu/sNad3w8Ed4hc5fHgjat7CbSKneMLJdY03Cl+peQ5489kqOMHJc4eYbLtlz05zt1j2diH3enVTe88BtfuAWhCux/cStP6g4QSTFsl4KunQpAg8DYRE8fEEhBmblV7v77u3T62j7d72k2Lx4HaHWr6VTtXUVZsu8LCZZHgETK3ilzYhiBSqARhTAl0AF41JWXnfXza14qyvy/k91fhtLtbuKS6gCSdE9+EAU7aic0zH8zppMHjJVtm92kTqqO3thrSG024y13C3jk+abIJNY9UBSogHIvkwmq+pkIisX+sKZ4EpbwJSYUgqNRMu1yD7Q5Z2VmMZJU9/nMl/0+k24a3g1EqijVXlZq30NHNBzxGocyuzB62vGXWDYK9BQJxINbOFhg9KyMoHDjSM0NDsBXrYJ0bV1QOmXOsX+vtD+uSjxSmWfweeUbXXImivE4h2UI2hYKk4Tnxhxf2gt2tU6ejnS0DQC2MbcEVh9GTvydkf2gQuaz34esIV8dNKF2NYfdYrDM2uz9DUC9UNuFgrp8DPQNe/oD7wlzcArVMZFcBUphbtQhFQNRhTBTI9ApCk+nFtA7d5n1piw342mYACU5MCs1LtqK5YqqsdISQICP6W40JyZSq73efuQ6YcnbHKERZaQu8P/g2j8iCJDuPw5C7UIuv+Uf/KJYz849bLn2/wGUGV8kxpXsGJGqKuBJY7gNZ/VYt2rL65nIfv67m2vLe5jOlZzk3Hxpm110fOo6xNhYCexoyvrCMaZTFYzmPl4V9+7HlohHduV+P09z4jbHST81DvzdUNPTkqOyV+gL8dbgBPTzmPS09e102d9thryuBI18iFEVQt2kGRwGgcMRLT7yznoR41pijn4aLsq/g5D1dUbEoFWue/l/OYdW6/sef05Z57pQcKmUn1g/WS80hpDyhZsQhyHnRI2IlFWc5j9Ix7r4sPejNXrnDNyG8yK083OQ+v604jr788yZgY2yxg7B+2p6qbJu7AVhS148apaU6gtTGLupzH5KWBN+qaxPlMevfUeufO3Axd5Tx6NbtQ1kcw0Dtn+i9FZ9n5Y3RBkUZKEdsRdZnzeBB5OiPwnZQ1deGY+AFvFqRRlvNAKbiRUujH+t5yHjM+PHCt83GIz6b1i28YcSwF1OQ8jLophzlujJ/mDlqbswyQ86gzdKhfar9B/vnTe3HPPfqlLlU5D5SHEymPnqqSLetvzn1ZGHm7+BMtLmBiwvt+neLblOqtZMueRVay1ZllMPcltUVJ+6imQYHTtxuL3rPKruvGfZlsnybwkf7iv2qPn0P9zoVyXZRsNWWR1Se1YRnIfQnvWygYeiLFe8GQxRumurS9RWXJVmdSJB6s78t9GfLi3Q9rb46jb+nh38pnbd/jFJZswb5KXLLVWaVA6/733Bcv/9vLb1m4MGYOC41ycYl5oB/3BaRf0C6M676A4WSUsoY692X8vhdTm61K9cnwuiOhvTc21437cnzJb7Pzox/6r3Rr6sjwvdKhujHafwDCTKIpZ9kr0JpNofsiTH/aKOXmKe9Vv1wMSt8uKteV++IReDrpQvhz/1m0rOAx3qt8dEFxBSnFNXpzX9KKd4kODr3mvePd3gkHLrgFUOa+oBQ2kFLY9N25L7yIk79syrjtm5NV39nX2v0GNe5LGUjVosMcd7peDlO1ywzhvvQV7hqy57fXfntmdLmXv3PEAarcF5THGlIehSrrawO7lb63v7Ogevu7hnZdXw7cJ+Rk285cePpFZomOtrq7ldjZ/YRFFnP+8m3x/Vf90626inaqMujrjbPVXfG2NPbuF0NVQd96FbQGRm6Nb6azG/Q6wVrhfqt046FR7MpkU1t5kfostJIOb5NXK0UTpiLORnlMvVKOMhGrbzv4tSKu4tirReSSpNAVeTkxkGGZSlq2RNL6OGXzqobOpsySIU2y1oj9V1cmLatvRFp7mvT4/bL9lsDZZ3odsrzf74WOBqT6OK/igCQSZtQcNo4w639zER+HS3Zvcn8sCFi+NcLp7nTeO31EfFL6AJZ1iSI+KWy2evhCrxEf07nrfgjJrO+7LfMCTfBPq1G6ifioxy+rG/HpC6DUIwpv0OGinaaGivgUzC9a2YhxwHd1z09zfe8MD6Eq4gORtCFF0vk7i/hYTNvp8X7MU//SAxMejz1Jz6Mm4kP3VvZV3IgP3RcVm1KBNvjmFOinTn2Pdtw7ibVlcWjzUeUn3fQSMrcBDLMJQ+aNQWue4RRo9qmbi0au7kvfFhITPPNWwgbdKFB1D6q6E2qILIdIW5TZgtZcQynQa3tOfNqfM4pdaudx4M3lrnKKFCiKJI8USf53pkAvtwvbuW/wUXbR04B/lny4WkSNAi1rquyruAq0DBZU5qkUaMNvToEaDb4otbh6gVPoNCNjYe0W5/QyA/UjK5lMCTVsyaRDWT6jY0lgwJp/t17btLeIqRsFqr5qsLozUA5ZySQ9wJAlkw/rpwVE845x8mrFT6T5TnCiagbKISuZRJF8byWTxby5f1n/JfAtjn0eZHXzuglFM9CBZCWT9J8qlkzafXMKlJY5bMKVgiO+GddWPm+z68wwvdScJ0EFWkqgQKNSQOtawylQ/7i0u42zouhzXMzP713we0fdKNDtz7v/1uy9KWN12x0FvAnD+dWtOU9WRZBwKxTGgNYuhlKgbRa7rd/vvZ2V+lDS+Lmd9y6qas4hkrUMMiSvGd+XAlXPI1CkQFOVfRVfgU5CxaZUoI0gRDwFajbCLvhhvq13gdw2v59xTs8qp43q+otiEAEtWM4VAAWpuR6yLgFiJ/BJqUwi58k60WLgOjPFHzSRhJYgiuHHJgNFO1JxUfwa4ieNzgoLtzAXhvw1bvCk0UNJbkpTeY4P5gqqOvvcAeb2W8BvIVCerzVmn3+AltNabTjqHAbNhar4QPmIUAPgUsAPww/M6Xj22bI1njmdbVvFjy5phM2uEz22SbCgf6VFCOqFSNV15XcCQMXg9xCu1vgVtOzAdeWJ8HUYGI8oEhYAo4qeNF4kF8TA3AZI8/LBoEVi8MFNPNB+uvmDbV6Z1rGrLmzd444BZxmhPFmTXEQMDrnquvQQzV5SNPtx6zOI0DSBPUsIbhstj/qCBx/F3sB41pDe5QEzbWd9QnYHNcAqL/iHZiongKsfCodIKRzHUDCphMIwzPhC0/60wYqiiLE0uURAG6qOhxYgUn4O5M6QkXI++APNmYmA6gdH4X4lMiVafJa50iLPTkm76Lti7w5c13FvNtZE478RwiQCbzTqguZpUprnMTRNK1vdiqEJ3+mjoqcgVpWeFrJ20Pib0857T6p3uTNbPMMR29Nw3ytiEi7TE5wrpHBuYOCYVQKnOwZOzOe3GVbsb3zN/oYLaav9kKdOi8f5Tt4w+bFtw2Z3MJCsvrwpURMVO1ZPqO6Sonqo3UtWHCGrzwYOTK1UJo4P/k1KRr0srmrGzjhYD+9TOqc0ZuW47xS4ihozrTbGZYZBBcPH9A+ohVAzBhSTXCCArUJUQUHbBHvXKK6UJkYkcCNcIjvnVTf292GbNrEK8xyndAqM7aahkPgxVTNyOkG2lxTZfiwy3Vo59crUr7RyOsFwiBTDcSyGmmjm/t5zi27aIiRg64khK46fre/41WZOJzhPk+I8j8VpCDvn2t3yo+3zbL/pknPv0v6+2Otr7ZxO6FwhpXMDS8eQhs7ar1uvkz3ueOaOberpetVtfvUMnU5Y3SVl9VCVvmkMbwLPeR5o3Ha839u6flubbioYNSM2r8rOs5XCT9WsF4PdtSWBMNpXwXOG1Vy49Fulpv1Z13ip//bfdszveOr+eKLbwfGZweGqQoXv3YEBR+gzL2apQ41C15Bp4zN3xPQ/tMxNO4d5/Cr60ZzkUN91JxKPHztj/0MV6tZMwpIr95bV389c3bxND+V2gbjTLiNPFlHYkXCVQ0VvGeVWZVf5h/VpiX0E773zXv0+T54tsKTSVUa5wNgjMZfXGC6VTSIaqU8iIBt8DodEP3cbFf7Id4G5zaR9gU1mU+QnowgcmWQIOJhN7yqbQLhhxlS8PIEr7CxBuDFo2WjMl89XTsimzpjhAUlc71Wn37epZZ0qwRCq+NU4Kp2np84iIyU1G0OqsrnBxVoYVHweaviQBNFwPrB8AlGcKA5cS33ahfKiwTPh4QRQyAsKa/mK+RYa2oyRgOk8j8ZP4MbBqZsYZJLG0oaL4X+liXHgQqPi+bx4UKMLfABYtSsRicXAVwKJJy6Nx5fwBMrLKy6AfgH4GCjzFSBc8O+u7t2TwC9NzE9CBIo9VqUJXIEAVQagENiV5s/ElyftfuSrRQUnfdL/vtu8IH29Wo2QDw9PkD76EmQuqSBLMIKsbBpzBCtIKBc4+f3MsIZIzqNrlyTwSyg5d0LJMbMSe51YM99r7x/XuVd4N7AvljTzgV+HI7oEPYnuCKnormFEZ16J6LzV3B0JnwsEghEY6t4ojicgXKEUbQJzVa5cIFO1ONPw93pduNg6ZoUTPfvxTfPwvo5PsCGGCMW5OKZOqCdyz0nJmWDmThaVkGuHIafIlUFwfJBGg1vg0qQyEW8EQYz4VKeBrTdu4Ux1GizieI1SSz2GwhM1qYTK9EQFVqETU8HOKC0robKklsbMCIZd+BIZ8F2caQzVPz83CUVAC8QnS/k8MBKTaWIJIoXOM7hz2CqXgvENWALdOFwuVKxRrrC4ouLF0GwvjN0AZSDggqSv5PN1SWzsqDO8Rr33Zfis9OmTlWn2Crvm1CJCcX2cHsrXkyxakcqiI0YWtSuRRWtMDxWIeNyqzTu6DBlUp9abicyF0ZvdLnm8/oCdoXKU19GEwtGXrXInhdIfA8WqKgoPxGfiQCeqGI5QWCJ0x3So3lTvZ/zSLFFuKEuKrsPVlDfnfA4yN299LT/wdll0FUIVxuEy/VDzIaUWiqFWR/sFoD9iepcEUY5ctG9UgVTjbb/v2NZrNHsW32/0tgOxuzGk6oVgL6fZ10LETvqhNpSUWhyGmrX21FpiqFWxV8nruLFKcn73Wnn/5CzOETPsK+zMguBFNAkFifREaCQpoTEYQnW1J9QKQ4grl8WLJFVg9IO7x56c8DBm0U/zuKe2Rx/EKnKG4jKalBhy/VBKSSWjlDINQ8lGe0ptcKod+EgVOF36MehDEt/fKy3waZfuP57+F1sYF6y6EF6Rg55IzSIlNU+7dFgrsnQYMZXSrOmjcovPsxYtXf944V/72ul5tSwhD5EyToUfNR2Hxqm0SoT1r5gI+zwdq2YWLCglOKv9z+N859Sa4TxqY+9e1GXBRMr4FTGv11heOgxgXeBZHnU4vHXAQqeb/zR3PvGeqhSYSBnAImbAwb6WwHARrJFLIofNXxkUsMDB+syS5T86VTOCpRNUMlJUs7Go/h/CUst/C0V3a3Xz8d70dObMtM2/7v3aEJZOJJlLKskSrCS/+xjWoj+HXRxc35qVJ193scuea2ZfHcPSieyOkMruGlZ21AaxWpxNSyy6cIe1wPVa9kWrax7VCGLpBN1zUnQm2PmSPqNYK/5o0Pjft6fZS39wjPUIarD+q6NYOsECo1jEWOyxWL61MNaaw7ct5rInBezIlJe6dB5zthphLJ0IoxWpMDpihaGvOJaLfXDeHoc9jMzxl+aV78iNrk4cSydU3Emp9MdSoTaQNdYxc0Ri1gLWxt3OYqvijOyvDGTpBJsPKbZQLDbDR7LUX0Wug0iWTrANJcUWh8VmqFDWuPINl1IO0lg5qUjTvMsTLn91KEsniEaSIhqDRWS4WNbhJjTbxlFtmSn7F8RHvou9W41Yli4wobEsQkwgloXBZMhglvqW0tUKZukE1SxSVPNUJW/28Cb+4yVv3ZJC1w1vjjDXlsb/HPyzR3f9lLwBm4nuZYlf8hYJWm9plLyZ67PkbbPtKGm9Tss9Z9xoJH2d0+XMV5e8Vbe7eYBnX0wYOx0AWnNYBqppYxUNm5Bq9zogJb9vvuPTlvsprWmDXHJJuWD3BdJhSHA9dwzfvUlb9nxO8M6XP50dRlVNG0SQT4qgSKu1X7qLCBbukJv+OfWe56TbDxtPedR7M9U1bZBUCSmpXVqt6/reatr+St9nbd470TPr6KSIqOkuMspq2qAgy0gFeUCrNWjffE3brYdvvafdnuW3TV7Hs/eFppbU1bRB0R0hFd0JjOioDQeKp/YYv9py/YBV9lLR0Du8G1TWtEFyZ0jJXTRYTdvch1PWPDy7iTOl8Pzp86XFo6mraYNUrpFSwU4Zv7Vg4KJlI/2WSzI5BTsOL3NsOv4alTVtUBb3SWXx2CA1bYvn3b1ks6EbfdLOUzSf8if9KK1pg1Cek0J5VYNq2p5EXd7wm3Aza7qo4csQo5M2VNW0QWrvyaiVGbGprWlr9jC1+fLiZaw1p3cdtD7pKK8JNW2AGt2ETUbNDEPNUIHAtN/apNkf7+q161NRtuzYyf3U1bRBQpakhKwwhAwXB1z1MsAs/cArRtHM6/Vf/HFuEJU1bZBSXVJK9TCUDBkG7OzeoeU712kBK0+5NbvXoslqamvaIKkGpKTs2IaoaeMfHz1q85nzPqmhS/aM4rfcSVVNm1AZp8IPi45F41TU17SdahjpcP5Me2aavcfUpLPu76mraRMq41fEvPK029lBiwCWbbqjqU17q4DZ8QujVuYWTaGqpk2oDGARMyjSblsH3UWw2sW2Td17eK1vcdnZLPuT9SdRXdMmVEawiFHt0m7Lhu8thHUiqf+wN+MFnvkvOPXe+i0ppKymTagMYRFL8oB220t88zGsrDXz7WqVzmPkjBziFLTxzTjqatqEyhgWsexOYGVHbRAr/a9a3rRn1pzJH1jBrf8d253KmjahMohFjO6i4WratrgHWhg/8GBNLole45a53oS6mjahMopFjOXWt13T9sp69Kspjhn01b6/BiYJne5QWdMmVIaxiIXx2DA1bXOOWz4sihjon2Wf/VbyPvg8pTVtQmUci5jKq5pU0/Z8s9mZgnW7A6bLClP8rq4aQ1VNm1AZyCLEBgJZFNe09Swf3zFiVnfP2bXjT77s8DKjJtS0CZWRLGJsZlhshgplzbYc+NprwT+BswaHHJ+4gfaCupo2oTKURYzICovIcLGsB0ud6sy56ua5NKckfMmTDvFU1rQJlbEsYkz1sJgMGcxqVX58eGTUyICChZd7/MhxfUptTZtQGcwiRmXHVta0NYE38R+vactL69hAbj/bf1Nss32DD66L0E9NW6TyvRG4NW0pfLbBt3GLKi8rPtZkCmfzyGMBWfJ/l+lqGzf1ZbXV3fQcBUe4jRuP8O0Reih5e3869f5rJIiVebGw8ZjuIVMo3fEcciHexg1y0ds2br/mnRu88ZrYP+tg+qQF3lZ/UVTyhiIg3sYNIqBqG7f2p25+avhrE98p049db397026KS95QUjJSUv/fxo0sXvgkY8+7Mx26BS5N2d+uuf2/S6kqeUMFmUsqyP9v44aR3Bnhpi0jd3JYy1afPGPfsfuflJW8oaI7Qiq6mrSNm1n0m9tBuUeZk/t0f5R3+vJkCkveUHLPSckZbhs3xgAXmffOVuzNw3qeHp4f15KykjeUCvE2bpDKt72Nm1/y9Le/BfdgrJYLz61uyVlIYckbKotWpLIwzDZuVgGsOe+NTvrOrdu7+/m0vJlUlryhUNxJoWhu42ZBWaTQonzjb2dLfvAteHR2XOLUqAZfW/Km5g6pByB14Q75kELV3OXN0qBxxKFeY7Kb8WYPWFIa0kXsn9RCFxVxalDV37apC6hDSaFqbgJnaYAo491r9526mr4PnCEtH/N77JhNX18wpwbQYtpOj/djnvqXHpjweOxJep4uAI4kBUjVHnHDzX5KG+0/kr798C1k0Jk7Lymsp4OUSPaIA5Rw9oizNFAIcvaEwe2mDPvHt7B36b2179YOrV49nVp3U3+9uA66G8kWchCkYbaQU39TKkXldvQEZYwMN2JbJkZjZNSX23FeNLZMOBA2YMZ++rio4+8eUVZuh/Ii3EIO5aW/LeQ6e5dP/s37rv8K+Q2nzGwXqraQQxkQbiGHMqBsC7l2i2rPy97D8Ss9Q8s58Ggj1eV2KCoZKar/byFHGj5LOn+7+cHtbgGL35WsTx7Ba0pVuR0qyVxSSf5/Czms6IwHbL5Q0M/ca4e04aCHgw87U1Zuh8ruCKnsatQWcmu8HF16PP04IOOfBqN3BR3vRmG5HYruOSk6A24h1+rW8e3R/ad4pVzYPMGhvMXflJXboVgIt5BDsXzjW8i9G1ar9Kfxhf6l3pEOsxN9fSgst0OF0YpUGAbaQu5yPTtm/vaWjAUdjjo5v+loR2W5HUrFnZRKjdpC7kk3t6GOv9z0L1jk4BrQlbWBonI7FJsPKTbKt5DLeGNFq8P9hbnlwOoXN3q6TK4B5XYotqGk2CjaQs7u2Gvx1V5HOLPuumWNjLr3hLJyOxTRSFJElG0ht/bkqe7NAk/Ql7hJP5a2/zWXwnI7iIl4CzmIicot5JpmJD17t9vKf0v0oI5362WwKS23Q1HNIkX1eQu5pvAm8MrtXGa29rgu3sZeWZLk8PP7G62rXG5np6hvw6obzcK7ugQicK1C4R1WM+IKZMqSCzbz1r/xm+v7+PrM18nhld8iTjEe+EBVi/HgG9lhvAwW471mqscPT4DWsZhUvFElmSl3ElOgZVmevfWdVkaZ3RlFboWZj5DzxzAobCqBAKxC5QV6vn22lfAe0v2Lmna4/OcuaWJ137O6C+Ci04mCsftAa5BWBXouFefQaiyrXKrXJvjD7KwZz7wzE31DD37s+IHS3ekgoe0MMkKmmO5mXJU5HJhMjQQx2hBEit4cDZ2Ygs7VITyE86NqzZ9E1arUiVic+OhmTOh57xTTL2DGq/mlp1ak+WPQmYRLNB0C43CJfqB1YpJBC9OquK+fluHJqqBalXjyUly79X5zj3aoNyRlR3UDlTphNpaUWYbG21q1NLpMbN0xNw71POMkIrlYfQ6Mhk/QTyhiJ8q4CcG2rjbTey0d39x3ju9p5Kf8iVgTYBoGroJTjhznpB+Ga0gZ7tR4UaqWDDuTT1yq0vNWci4NinC29V13auSGbiMnrKpeuk4XzP4gZXYTG5pDr1JZdTtRPq4qfF6kWTs9NjnntX72dY8liVm9tTKjxiFinU/zUs4pzSTuNC/lKmomtcrR+VTM0anZSR1k6449LUpa1d7Bb+lHr8iVsbPHUJatQ8lB80lMzhTbu6i1n/P3JjLSSiS+20YH5TYK6Hbo6+ynTqhB+0lMLUy7/J4+DOi5O8vD5wQ3Zaw49O7IvAeZzyjO9KHQxpJCy9B8WVQNsaDJc4eYbLtlz05zt1j2diH3+tdaUJ1AXEMKcafme5oMb0JPh0Ral3LTPGcFH5g8t25ADKVRABTaH6TQbjKVUYBm8CbwogDWh83u/DuyPyP1IxKes+ztVm0X3cE4Gtb3h5Kxr8aiOxjeM/fmx8Qgws+TDVxhnByYJex4ONaraFODG9HR8+oT3R6O3w8OV3WeYg3Cc9kAcgn4jdLYWN4etParxiI8+LBaevttOgUODOq0lLF795mfXT/apWPHLO4Dg7Bm5T7+B0ePocGzpnKyn0wK/Xsaj1PdgisIbjmAdgGvd9JtQWsx86sX4aHcquzZR05c+/CS3TTvtRF/t7bsFryX0kV4kMshUi5XtPLsB2nkrMDkDQweGZz5ohnWz8BgIhDkBjG5an4MTpoafhofpUm/1hNapWb4z13FfDi8YQNrDEpjH5z5nY++ID4jhWis153riQE5nLbcflfYJ3Cd1SsO7+rpLhT79ygpaxYZqcZa7VwfoDEMgeMAcIERJJIkw4T15z8Uzap9nICCEwJLpEhPcyFUfhyBmY087sYbeeGE3zafQbezuuzALkmo7a+6viZBf66eCNJICTpptWV8JKavxXIT+CCNX7Ff0cLiAVOQ3ReNQud5YFQC40pDksQCPg+kX3miBDGYpETzwWwjuWJ2H82M4SNd+im9hDHiGqv09VZzM6fe2KXb5p7oTWjy9NQXTzdSnliLaq79VE+OQayAo6IGBjTKvMLUT0GdIaQhCWJAVMAHPValFIEkVL28whVQ6EBClYMPd/pneXe3fN8tZ3MKTzYyW4kB34D1+ZKoCHDnjixPJ/0IwZtUCCEa6+PIpjWByugLHOJQTypqAyoaH1k8F6XIBTfIRfUA3DdOqBIO9kx8lt0jfumwd/Qq/9KVn7wi27Caqqd0wYmajnJQ5QtuPk3KF659H8jIPrg7PbjexWovuIFwh5DCjdVYZkcGNxXdoA+3wMKZBvSx8DNHMR8BkQclTaVNVz/tS5eF4ogV8NFd+JRlHIrZAXoZICoJAjo5UNNEE6uCR2/r/XPR3Td9Wukn145u2L23arNV36wpFLakUqHID3YfHB3bgblwUP0HHtJL53UhFDGpUEZrtd5uKioU9AREBu0hbXCXTq6DaaMAXaTinEux2yGYrI4CIlDwlfCFcVAcXKXAlJOyGD4X7pnpTPMBk1sZF5Y5gDHj2pUmiuKBid0IhZDkEqCY0L9H8aUE6epjLl2cRP1tGNnptY179TwWjBFMrTANgYBDelExqaTAsUtXrHSezieepY3fvGhR/1Mr6QvcZq440suqJ6WxcJTULFJSulybQkylV7MLZX0EA71zpv9SdJadP6YKrqVxkEjngY2yZkrX8RluYKMF6jp+/doUlearbrQ7Md2vRBYU6JVez9tEmOPQmLJoN8rrECmvK9pFuw3rU3pddxp5/eVJxsTYZgFj/7A99XU+pU4oPiOlaKzfzaSJCV35qzDOs7nYc0XrlLQejrXaUxzzRlFBp5IYVWPtNpM2hFd5mmNV7v1oke+CWVeGeSDc+dXyKnWCkEaK0Em7XZwpcSunXi5Y0YI/PjBvvZPT2bEPQr7erdQJUDdSoP00t1b+7/qV1n/ntWJFTfWe+nto4VPk4Qzd+JU6kYI3qRRCtFs2YhDHsva96/GdbJ95FV38uGWQa8zRr3UsdYJvCCm+WO2Wl9RY19H6wY8bk1Lq+O4Z4+a7w7rsRHVcR51gF5NiH63dQpIa7Rw2uhqQNXmMO3tSl9m9BH3CE7/COdQJ8VRS4mrF3ob0Dle9Heqa2MfeZ0788luPBhc3pTTNi6KaRYrqc7F3c3gT31ia9744ddXHBSdYq3e1thWeFLjrJ827AwA2ZhGleWF5t8Swad6ZKSniIqfW3lNZ7pGB7d6e0VWaN2XZ9g+HLq3mLPBvQW/Brr2yuqXcsC7elCh2kfIraLFhGSjN61lnxfQfEsZ4L+nRTDQqem45pQXckEsTUi6ttXq9uGFd8uRH0wesrbPQc13flc4/LHVeQk2aF4XYiRRid4rSvIjXIKMPUx+xpm45UELvFdSI6jJuSIpOSsq3xqV5szY1bbCcX8jcdOqvgF9zbwdQmuZFCYaREhxW89O8ewL9TI/P9PLbeWFr8rvV602pS/OiPONJeWIt6n/bHZ//R1uTqbWn+cwKvf+q2HRrs5qR5kWFMJZUCJO02gbVIN54g91r2qXs6hNYXPBXt9HmZwd9dZpXF/Smk9JL12q71BrrjHv29G76V15bzw135jp48vttq1YeVxfUM0ipZ347idrfF729/GSou+eCZ5zhW9eLzlOQqEWBZ5MCX0FZova1XZPJ98+KOZsTxZYzSoM51C5agqTWkJLaYJBErXqtLkWJWrQC3ZQoNGEEX0tnw6I+UWuMmLskrbRnzX7Q+LZvVFQLapclNSHl1Vq7d/Ya1ivs5fn4cPDbaO9Z9wM7lvlF96MmUatYpkRKsTtVidqYNfFFA/9xZmROmLnHqO7SpTVhcRKdFJVvzUvUNvtQL6/2JZ8BeX36FrbPXJpHaaIWRRhGinDYfyBRe4L/MPjS8wSvzIm9zt26smMRdYlaFGg8KVDJt5SoHbK98b0lmY8D04qOs0wHPLpcMxK1imWLpFKYVAMTtfRi1rOFn04x19Mb7HQYMPxfqhK1KL7ppPjSv5FELbKp4Nc9dx3o0zLdH85t2jiWykQtij2DFHvmN5Sozc/vED7igX3AtpzBSR1zIgooSNSixLNJia+gLlF7J/1in8s7p3K2nV69MGh6/7aUJmoVi5hJUW1g/Q8AAP//AwA= - Normalize a type for this document. This converts the length unit of the type to the length unit of this document and it scales the ports by the right scaling factor. Further it sorts the representations, ports, qualities by it's keys. The order of authors is not changed. + Normalize a type for this document. This converts the length unit of the type to the length unit of this document and it scales the ports by the right scaling factor. Further it sorts the representations, ports, attributes by it's keys. The order of authors is not changed. iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwAAADsABataJCQAAAgRJREFUSEtjwAv4xRUZBMQrgXg3kP2MQVD8NxiD2CAxkBxIDcmAX1yBQUB0BdCwP0D8nwD+A1YL0kMUEBCLYeAV/4zFIPwYpAekFy8QFC8D4n8oGknDIL1lUNPQAMh2ygyH4X+YPgGFHznBgguDzEKJE0iEYldMLgaZCQagZEZEalE2NPkfnhiPgfnklLGqB+I/YLPBaRm7AhTs5Of3f8ny+f83bFrx/93rO2A2CEtr6WFVD8Ygs8EZBpskEKubmv9nEZVCEQP55O6dc3B+bFrKf20LKzBbTtfgf355MVwObDbQG6AcChZo7W79397bDscrVi36P2/hzP9MwpJwTegWFFWW/p81bxqY3dzZ/H/qzElwObDZQAYo+4MFJDV0MLCjj8//gvISuCZ0CyTUtf8/f3rtP7+88v97QHFTJ2e4HBD/RrFg4dI5wHCdB8frNy7/v2XrapSIRLcAhNeuX/Z/6Yr5/8+eOYAiDsRAC5CCCB3benr+F1ZWRxHDZoF/VMT/758f/88rLUIRhwQRnkjGhgUVVf9nFxegiMlq6///+O7efxEVDRRxSCQTmUzx4cKKkv/LVi7AlAMnUyIzGj5s7+39X9XIFF0cmtFAgKZFBQjQvLADAZoW1zBA0woHBkC2kxNcID04XY4OQOEHiXgaVPrIAJTMQGkZlGEgOZ7EZgsDAwCvVWXMSuuNdQAAAABJRU5ErkJggg== @@ -23238,7 +23238,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in f31d8d7a-7536-4ac8-9c96-fde6ecda4d0a - Sum Qualities + Sum Attributes @@ -23246,13 +23246,13 @@ If none is provided, it will try to see if the Grasshopper script is executed in 7J0HXBNn/8DZyFJQEbWOuDcoddU6soAECCDgaNVqSA6IZjVDpYpFFCcu3LgXinsPFMVVrataK7baWvdstWq1bv/Pc7lgLjeSkAux/b++n/TVG8/dfX/P81vP756rxFdJ9ApEqXsP/ri6uLh4gV9ltVyfJlMOHIpotDKVEu5KAJvhbvinEjzEeJ4AEUsRDTzEE9vta9wl5MPNPmDTvadBpfd8+kavPuIzZVK95EfeCRpkqAwZBvf7wosmpYNWpFWwzSJEm56coUbgbnfswgHYvjiVRiGWwz2N0avNKTsrCZEjEh0iLds3x0VanY+kypQyHXiKBI1KjWh0MkQLD/AA+2HTHnyxDr0OfKjEUUhv12W/VvLjI1qJRqaGpxlv0aVSDIKo49UIugVF4REnViDG/TWV4iFiAK2NRKzW6uVIG51qGKIJTUv3SQR3BzGi1zUyDDBu5an0BvjuRnzgRgeDB8Gu7YZt9koWa9IQ9Mh64J8isH0xvIcvVSqFkf6RZ517ePYGKHCX8oFbCJfxSZSoY8UZKn2Z5NGLR2lUejXhYC+OXpeu0phu8owQiWVy49PX1iIKmaqNRKVQ6AHuDLZapdUhqlCVJg1HybcXIpexksRy/TfefZAUrUxXtqteuk6n1nYJC0uT6dL1KaGgrTC9FhwZhrbtHyXgxMpSNGINJkF4y/BmPHF3C3/ehuMyUBkRnwC930RVCugMLJEkDkHkrKYsjlarkshAX9C6CaXGbmv+B/coflEasVabrlKDXuXd+8NIgfsCO4e2+zQ0vH145/DQdm3btm1nvCV40x/ZLblhgx7+CQTXRBQp8oxIvVxu2rIgCcog1KT91izsAt3ahbaF/2vN4unlOr0G6aZE9DqNWN6alaBPkcskMUhGsmoIouymBI1WMV7B7Pa8sVbMoJj0FxMIB0b2fZc5cAZ7reKX8/4v/KQ4CJ5odzF/fM+OsPWgD+ogPgUOsrKe1ADiM2zD9Se43cuwHQKCsFAZRvX6oN0elg4LmvlZU+7svom73kqu3cDdjk+yRqZgJWsQxIenUurEMuUHbQl7Apmu4SYiUr0EYenSERYYBmo5MhyMKZYqlSVm6UBLrJQMlgLRAG2Thh4DBjGiUYARxwISVUrSEW2ol0AmlX7QVa7+QqVWB/YhUXpZGce1r57GxM3/jjO+8/jcOs34CyhuvFKcTDLEdJcH3OXL0ek0shRwaS1OT3EBPim6qRH8N7sfH/yH7eKSzXVxacv1TJANVaF066N7JWDvcY6fWqwRKwbKlGo9ihkqY9QYcSQSRKs1CsONgld1oMQxMjoVK1Uu1ukQJekT1z1780KRLpC/OfjXFr4xGd08zB6L5GFdkyvFo1czWB1UU3olqfQaCYLqUfDbXe+6u2rN6/gp4Qu2/cGZ0tPPsBvXkeB5ViIrgciWAmRqDvh/jhkyl6/AXjUOmdFuU/FpEqdXAN0COxCxq0BksDMhpMDa8m7d/9YvgZ/9W1HpsyrXj+GHGh9R69KJxPhEYmRIXGxEcpxDh8SfWzkBjnlgd5Q62CHK+j68U4IsvLjo85sOauJBHgliXbrxsdxHtM30EOoQBTzHaDC9lCha05P8DZIBpLHe7G1bbw6Co0uBSFlSY68mlUxw/YlPOv/QW7BmmyB7xuCOonJ2ZTsF45KG9dUsIBiW+fB2kaFiwxSo0WITFOirH+q3HdTgRPT8+KtpR9K6RbgD02SVrveAXiJerxphk/pwpCBrTm7hL14eyC+SXkpvk+25iXgFAki35AyLSmHaCnnk1MN1RGPueh6rnbb7sZ1KwaUA6M9A8BNwiSMgu83P3NwRnbkYaDcqS7W/ILf7mreboneUdE0+vldbFfeoXgYtYT3OMOxILTBLEpUcet9gL9QyqXKVWAetk1olU+pYhjGiJaUvCGsrHfU4NDpv49tPfL5qOJ7slgj83cF2iwIY8UNMv+qDb0Qu/3FOeDwvcImdAmCng778KY9cADe3Kvk3FnbjYQJwpxKAKn+qy6SoaoLcSckp2n1dhuCe1h84UHIWUDlARSut9xa6oqc11yAK1VCkBQtEQTD40rJkSiAXOdCHLL0WykLM0iBqxCCXFJmOpRBrh1jnJ7xfoCqWPbgQtfNA6MjUQz+1or5roqsA91rbxR8CupPAbziZq+DyFuyZzbPSVaDqs/6xEAgweRJwX6QPu+sO7/fbA324xdPrncwL7dwPrw7g6US9GmuxMz5nJ4eHpM6MyO1Ub3G/FuPW2KsNHgEYk8EvgdQePgV7puNQuWKo3KxHVQWKDh3EBtmS0tLE3tD+tPZK1AF95ZzNc3+ItqFruCZYpHa8eigylO0Zvfj8irYHx4YfZYLabFpq+Tx7vAgPwkEeVnkR3ikqlRwRm6QW4BHGy1If4UZzhCt6hDvdEdZ6KlQ9xA/KFzgqUMmQ9o5rJ+c8Q8ZuFe67d37wu02rfyvnWLLTR2G78Q2DRU3mo7A8wN7ZRs3t8d/S3J2fx4T7dvHlFVe9/dP4W6OXOkhzZ/liQR655q5qS5BXfs3d8K/J2kM34iO2VKn1sHvaqFbMaG5z99BeHeSHOczkOiiANLhzhOZmx048y94cJtyYOqLOmT9iZjOruXtsbP24LispbuK+x91eLhJsYIIajP+oqdkX//1Pc+N7R9FXmxsPbdmWve9g8/PvlwYPcY7mLgk2yYQQNPfSENPo0pNKczdwy+nXbEdpTG7KPU76aeUr3KMEiEBGk8WRStGkoPWquznoa6lgKgLqYhD/YOcbUnSo5gZ/A8lthdYqNZ2YVrvVxhPNuRN77qrLH991Os0tEmNREcdamj0Brw7ADmaRaemsvmBvjL3+dX0hPJE1FGRsQWoJEMIDCiV9fGAfpr67qIudNVfY2jezpQqfZEJbJPY2oUUdJFnd7M6+N58Li5v0H3O3R6uz9gaAiQBQJ4CPRdYZryah+AgulRcNrJBEBEwVoX0FR4kUknk4iw+UDS0RKSUy7031xzAsJVPFJTAVx8FjcLXdswxBjT3gAtrRycRy4ADB5yNPIbQUNcryzZnC23k/O9H1dcg5HJkqCVgLBkJa4vhJ0DiGUQwto15Gj9OLSm/NuftsUZteubF7TsQfjHq/tCF+Ii1iuBow0RKUFl0euEYEHJdgRoklVrKQsgZM2jIe6T68W4ZVmiv6id/XxbwQ0aZn4dnFZ33wCXWThgnYTfZZ6wNsxdIDa0mdzO/Q2C4AiBtcBbgtRhcAanEoPl9Uj+AkCq/kjW4WSo1KY97brKJlM/oKd64ujGPfanXZuN+VYr9fPNrHCUqlkmH7h4a/kB6f6nrAh1/0MEQU0KraWcP9oLcLD6FLtLGaDW9mUKkgIADxFnCCEaMkmwFJNSMVzYsxkovfxj8SLZjw/pIoPj8PJxrX4URdMZwwDlzNNOrhLTLX+zUWc/P+djukuHOlgb1e3TYsi8EmHSY70SyGCSdXi5wyysOpwLfSm4gh8fPCj6wI6zpuHp5TBpFThkVOp/U9R6W2zOAuk/0+dOrRICETnGbTcsrnYR2xrEPRGZ7qHwzPBzVACsc8A+Msq+NyHusqE8iML/siCgjTqN5UGjUu50r3pGMP2GNPbs+q9Dj+J7NMPzJcZ33yuxll8lsH2mGlasRpaDBPSnV1TKMWr4rvCBbrXt+5MOfEb8QbIaa8k8HGCo5V2Q341HMOPy5rxn/V9XPjnEMlKujsz+p4t1k2LGZvI+6O8+2iA/AWggcTUhTT41RmrH0imjCRssQgRoVFBcCcSUHSBAx1mdTgdQP+KgWQTNkUmnXpkp+TvxykORYWNWVkj080HQfdobpXgnQ80X3WYu2O+eFwSnwNoS9Hgr0DSQwZ7I2e5IbMg8SQTbw8+yQi3slbyOnjtq/f407mhoxqP7xruv3uFPaMKUNI58CwDJI3CN1E0LAIApUyqVSlz6/WuJ3bIW7SmqyFLa/khuMzHViTcaBJonPoGsd8TNsd85/Jp7I5qP/sjKlsQnrYzPLSCaYRRpFkENLL5srkWitenukhKmqnm7m38Pz3ONlUxloVGlolSqevY6QTQyudXh+ddNwsSKcxxhFRqEEZUVnhhxXi8dw/bU8DYTXBhrYzIjpOaF6bdOhEwGaJwolwjHAG0gpH9lEIx8VEOO621zNVxdUzSWDLpNLJirw4VHC3N6doQcyOP/yOd2WmmmlHK++S+QGXY+d3ajAg/fdRSnurmaDQtLRCyyQ4rzaWzFRNUqt0cnCghZoZ84yQk2pmojELAGtmlhIC2Vi0k2Nulc+/OjtQevZERGePqMglESkdSoJ+T3ZgdiArFJuCIs0OZHVGU8X/yw6UiSbneVK3vgt6x+au2zNu2LrCLAayA0tGbx0y67edMcs6xTc79HShzt6oNwxL/pNGvVfbojNlDs8OiGrLQtQj0jmF739c9fK3zLEMZAfMoz8mOMG5MWpO/lzHZAfiLobXuzgCiRk/YI1rt61ZfzotO9AD6yqk2QEWx3SeyJdKo+qeXvqiwb6vorOze3m8/ubeRnw1NJqQhnafXKFW4Yq1CBbpKKXIcNOHIC3JTUTAgyHAexKztGpEIkuVSVCv2Ri5wkkk64LWZjmpi8dIA6M2bMibN//vYzMo7ps4wQ+3WqtdW5lMHWURTFZ71C0malcvLDYlCVndSUJW88jQPGRV7+kSGpGzN3KMvE7QLbHfGUshK1MhqY1zYD6wL1AXxcxCLizI2Dc7Ym3CwyDuzoUpzJQp3K0n57UVLRYeeDk1qH/Pn/n2KpXWmI8ygUypoMaWQ5aapXIufGFnA+EhGBqkUHyv9W606ltv4cTD2z1v9E/VmU8BgvOIVGQWqZgXSTNBJYaWinOiQ7MydFR1Wh8f1uqjEasNwoFWEZ2/TkGfnLzO5lyn43M5/WMKf7kXxGl6Zz++A8O2iKLqw7zOb40Fg9Sy+DiCQVeq4Ia0ygkdJ2Ida4SsWSYpffPwzFuk14lT5MiHykCCkrdq5Ngbm3fCFAas0FGbW4hBn5lOefr9q4OaF3/VPOyfdyVy7LCFOyJ7p55z9JQnDGpOkE55nuH9q4OaSoxPeT7M9xz0qv772AJ9Uc6ga7vE3iKxWg0K4UyfnoFA5+K76aWlvNYxW1Z6xoXNnT2eiek96L1eJZ3e28+rkEDH70x7n7AaHaIKtimujeyRLWcg0Nmj57fvVdJJsDfsy8szd3eLZ4ITDHSoOTkq0BmASPxC1dy4cUfqnfDeUreh0wKdy1hXIZ8G/R0FhGlZ/49+GtQ8YcDUNKh58aK9/a4elloimwZdq2jMl2f2NkIP+G/Vj6d03H1Ke+1BxOgXfxbrKuW/cFD9eEkUXf04O75i6scPH4384eyW3KgNh++tfFfavS0zgdkbbsjBUpeL7DFZn3nUabmxs71z8gK6+nF2dIXVjy9lzZI3FM+M2BQS8abIJ07FbP24eWaJCWqU9eMotf/VjzP55o/5K/HOqR93SaKrH7+abJoXrEyluQfUquIR53c1fnr9d5fDzl8Oxj1KpSjoVXGUUuvLV5oZS8exOBHYTeVgvdJgOJtz4visNNBmC+sUtGdC9c7r7h+M3Hn40h8d9E8zyG+OaEbBRmtTf3/waBZwcHnDTAxia7WK1TGI+Yk2lF3Wj5Rp0EyIQUywmB1KBy4jBGwphaeo2Dh68CudKnLh0rqrl/04eirejeYQez3Hohtt7nzaqQuz/sR8yEGkbvRjm8ONJAT0YKmNnLr9+XbLo0sC9sZe15JvvswaiufEJXLiWuT03drPWGHFMRFzdpVM3T7vn7lMcII2g5qTbeFGFUOcAA0rGp2RcjF/ccpZkUaJK92UylV3U9VZ5T+3Ms7MrM9q8AMPxy8eGdLkDjv/lSNWxskaD+dTsDJA4oz1XLTgtcJWxhl4JOoB7+1w9sTlg9NTLgbfYKaWRDs2dcQ3NYeJlvmF3d+18J3C3iE5AUAZTVlLMgXsGceroJVxbra8ffPMgFecWQNWx76+kxPjpJVxUCSTaZFM/ximJCpwZZzljUqndTmbKVyaMHxQ/8FTip1U5bME66vkK+OsQMWGKdBAKgW6ZWDs7f5jt0RPDBr4aU6NIvxiel5JCFwMj6g9PSn4fcLTgCwAOuWMngm7PbY2i3VqcXbV3JXjL4qFWcUpv/uvYReR3Q6BLbbd2kitEbAsU7kGrUiYaWbDeegzXHOtSDfEaxu8OMNzwtQItAuG5yd9RrVHyD/S5tX4+7td+LLhgSWf4sd1kk6sIbG/SczbX8ghj0s1rpuCvQXOXvHKuGwg+rg2aN3GSTpEzdLKvkFQZxERS9JZWj2qAmRodTe8AKlw6k8V570ddjVq59wmytLpu/AvrXvAZiukhBvKpohWNmc+Htn81cNUNmjwRSObeh8sIvYSr+UhE7AgRBj5/nV0Ycc1Z+8dj43CDxn0OYhi4Vl0HrJWRtaY15gbOT5KPvNX1vSW9haiQqldp5Xac2dLDY2Ywc/elVmCkswVPKnghLnHLk++Gh45Kex2u27zuQes0ucOUHZoCRtUdllkk8cu7dABhdnKoP9csHGsf/qGb3wqC/Zv8sqZ/Wy8whHBRklHE7NKCDbQGu0iboUFG/fq8istHvAXZ312589XScd3YibYMO/N9uaMO9FZ4CxY0VDAraBg48zLBgkNPfM4a3OuX4980fy0k4INFEkRLRKnG74KDjbMp3ecE2xkcU0UKCHYyOKjYsMUaNV/dfVNl+O5D+s3/pU7bcQuX8Xr/HWOrr6BOpO6+qaI+7/qmzLRTB/Y9VRgQGHEpJXSBitOdF3toOobiUj/uGdrkXBerdjitCMTKjNRVQKHDnVVSQHX4dU389rf3Jf3lyxy6YU/AtxiVd8zUH0Tv2B6e5fvW3Lny55+cnT1nNlMcCqi5XTGQdU35ol9p1bfwK5CXX1TpmWrUWnZFm9Dam5kuUfs4P71GqmXdhH3MH5okUIsokzTpRMdVXcKknVFiFir1xg8VTl68oeVqKzzQV9oozN8bo0WjP3Jv+HMxEr7KO+KOJUYq0yz1n0IxJxQHfjVJFgpuJzXdmud0HIW3yeHtciRzYiLWFOtR/NFkn6bmanxYHjdhRLICfYz+EZPJcKyZ3A5xe1cm1aaqv7B9TS8mg2C+ljyd0rNgm78WKPoA45YtPMTE++bwIBVF2WAjbXqVGOtxvUp/KpdfuAt63DjwKbjw/iWFg/3wRoJ4um1OpWCbAlxX8Mu04ZcKmPbzKjYsAa5+WLh5V2D3ErorlQKDk74uUDo4FdinN4LpsL7LmfrymqhHtyd/WvmF6hFqywvJ+7reMCMrEq++Ob0J+qgU4IxiHR9vwct3jO3Krn5eudWqgpKiY0CAyGMZyaxGvBuyCQ2x2NP/Sczr/BW9V1dWviuwxyrV9r3AqRlaWauP50b1JHDkqKnsGRESahlCNDlwFyJdSwxsFugfkCJfruJfBUCv1cRD/8eMzJ6xqYB/fKW/liN7M6I44OvtCiM9VNZGUm/rYldveXI9MFFri/sdZGWc6kLRUMCLnD/juljFFFIuXQWqRgqQGsxKU1z6OWXJhPaDooLN3ZqUo2dkiZBvNw9DTmz5/3TrPr6BbOsHjvePfViOcgcWj94WnFYXxvOgbxBXZW4DZqFgLMlUkSCfjgMVPEOAcqMnPE8n+zI00uyIhefPjspWhotIL0fIuSecotDps61Ncdqa6rGFkSfej3xQslnTHxVoSfFVxXmbVXyN/H7GWdJa5XLDpHTrwBDZLcQOwzav4f7z3PO9qBtcf3//DmAOSGadw87jRAbGqE4cyNUu3zvH8B/WD9SqsPD0dcNQOiD4Sanab52IfGqRJRxYotR9s+VA29Ge0+NXnVgfpZr0SYPe03IGnTam3w8JC66xB06a5bR7f2kXCaEBHAFGBDr5WQOtJxyYsQ4wDgV16frUBkHzyHVez5YHyjYoA9c391t0WdWG4cAkUqKyFmkSgpOTAVQAG0JjtTqNHqJrjXUJsZ/sOCKyyqpLDUDmGmMMynml2Ml4WMnr41fULDy3tTixdNoboo48TSqp9jqj7rACrfF4LcRcHxBSKLCVS2LCVVudCM+NBlOtWHSLtOwIMtGSoG8j82O7/bV1g0DhJvv/B7mO+bbBtZpVvee8h4W9QHTH3qBFURLsEJU4qQ1LP5aSVrxRoWveZ90BIxBjelAZGnTVXo5qOBFYOJSBqwUle/2OnFFmmcDsWB85QjV3GOnD+PLzXtjJxPJ9ZaSkLM3GwfRFNKi2YhD42YBTU3Ys5TW6qmHvF7XD6x/xN5Ts88tdsQ3T8prT5igsI2Wwm4cBXcLFL7CjS9DIruf4W2+kSy9Rs4aYI6HFafCjgN+DvK1Xgb+ASb/4JgEo9FQ46PD0JKzVFXP7CJzVUSOuzDl3acxZ/HrRHmCbqUn61Nko5EJmsW0NA/haHpYoInXVvDbuEZ6BmLW9LRN45/Ud2m4QbRmTfsfu7+NxK9f6dELtEmE00vnIDjHaOGcwsHxtACnIw6OtOzbrKb9TUbsb+SJ3XZPu7fe1ytyfeJAZNP00Nf4ecEP330louKnOgjVOVpUpbZ9K6AxZFVm4MC8ktHEycDfacnMmJB8ZuLzA7wJnLrsLms6NrMjjLB3lnohZsxIp5CyYEnsSuKnA+iocJOhgpHh+gfUQqgZA4oJXScW1EChCgraJti7hom1LLXhHSwqO9dr0YNWDYID4/Yfk7e8E5UQSlBIJKuRkho5RpAV0iLbiEfGrJUzX8ncwd44LYZttBh24zF8jGYu0z9XLr6zg7+fvbRyU1HJg3KbOUZwFtPiPITHWRF27pPiFW2bHHsevfKU4Er37sre5bVzjNA5RkvnFJ5ORRo6pH9oUK/PU7mzldMbpx2LXGifoWOE1TlaVqXG/F1deBP/ieB5bOnthk+7/hm5bvR1/rdTRN86LHj2B4m1aWhlBUnwnFWDbx7iVETw/HMKpyh+qlawpPGMQz47VN0ZDJ7Nvxdp7+tiEN90Si8MzrLPrsDgOeBk87g8/xv8afvcK+8adfO+M4NnFE0+LZolDgyeXyc/9y/s9Cpq+tMTDceVLCx1UvCMUlhJS6Hwow+ev9ruMUFwmifYFNaz7Xhdv1lOC55RmhtpaW6r8OB5KS/wyeXQ08L53n8XPLn4uJGzgmcUzm5aOPg8aEX6FO2b5C1fJqgs2Hbp8F+fNam3zLnBM4rqEC2qYxUVPJtPdzoveGbXxoxZW5KZIZcSWBA1++MIng/N/FU7UncyYuPYhMgzi7P2OC14RpHl0yJb4sjgucaSpaKYxx4xu5aPL/1k6W+FTgqeUQwraTEUEoNn74/MzJkvcGxeXY5GFc4KqFHEG2kRb6v4gFqYWd2/Zti26EW/7n3XP/eB3FkBNUpnNy2dYucF1Cf/aB50pXihsDhxUpe+y/3cnRtQo6wO0bI6Zgyo68GbIAuo37Q4LXzw/EdebubdaTmsIoHVAbWfIXZNgBVdxPrzEKqwyIpwGi0Ss6oU/WXaHwuCWPM4K3a17JvP3dmK8gZJQusECWJtaD0CLs3QwzAvPYhnHlrngb3XCbXodDqxNa5Loo9rY2CdfY21Z62bKHZO/u3wwfomZulB8kd2T5BYDqvNF8Swd046E1sRjNQ/y8pBF4G2JaxuahpWG8hZHVRHDrkxcl5xfeHyr2/+vWn5qg1OnZGGYHZz6MB44PqUJXcjUCg1qjAUCzmCPt6lh373WyVakPMiKeaa2g+HwE1IdLbgNoc8e2su3bMnc20JpTvgxlO6XiFWttEgYilc6xwWoxqPtwLQYq74xdfnqsQtUTToEN3tPD4GNL02iYonG15MoBpJiyoPh8qSr1DPtLhKl6FGrGAyqHHS6C/3NI5e93OOV123APwq5j7wjQNWxdUwQCAFtEDwL6dbcg+SzfxTjUwMfE1KQAbn1HCQAhErYS0z7GOpYvh+GraHHOPt+khDd8Gi2MKNMVtVfbpOx2H0RzH2NpxPooKUDupbZ2hR4s2alwWU/fBmTS5WmsMDyltprAHHlX+zVEp5BviPUadLxEpWuhj95A3aDjnRC4NcPC7p+kXv77U09LvJ7U+aWUF4IokVdBTK57QoPXEZG28LKOU4lBIQ/hjeyPpg9bClVqQycRpotXxoDe2Ss537+NfFn/soonf0nzbpu4w2E/Gl9zz0TCJcHuIguFV4dHBr4eBWsgBXQPQhQKSZjvqboSwO9rcPe5QqMLJBDTa0Jhh24JshcooSnKNL97Z3y4pdnRc+qYdPvS54cAavlghOIHMQuEa04NrgwPlYANeNFJxcJRkCXC4AzvC3D/0MggNuGSKVUfpkQZnszLtz3wonLgyrNu32ebM1LGPRBkneIx3iIFqdaGlxcLTQtJ5tb5w2JplTw9besWCD49i9Jku2v+DuPDJXnhGiHo63wYbkItkKPGAuraVjUMXQouplW9a1IV3WlQZLdk/ZqX+Wv+QsV939Jb2SVmhNHOSWIGH+de98LM4hndt2WYbGOTZlXNmmGdeysWZvvvXTQw+8cuLlgjUt5i/c9XeGm9PyrSgwGP9QA/PAv7fMTAAknrS3ScEpt4gt23bXXekzs7hcARAjDw8DIOqHT8Y/fAVGQLX9i5dnPxrAX+Eyeyf31c76dkZAjLAaScsqD8/KESGQ+Wd87AmBGCFSQEukCE/k44mBzBdksTcGYoTlGVqW1/EsP7ogaOag0oAfhZrY9TN257zxVu4odxDECMvntCw98V7Bxx8FbWsdoh/4TXzEgl17Ogz/odqt8kdBjNCFURA13Vp4us4Ng143citsX9tfsGV65TGC47qa5Q+DGCHXiJZcGzw5J8RBjXJ+ipwkmRM/f1+j2nXSRvmUPw5iBFcnWlwcPK4KDYTCs6V6burZuNwlSIBsT+uf7QqEGGEVQ8uq7EuW9alm4Pq4NRkV8yogZketzRuGTUpdbfUMnK9hgou4Ng30gOrTfIXN0gQcNPnkK//v7LG7S9wC3njFifx6qYEtqW6HZLoNbLYWajDPJQtWssLptnnm020uPcDeyzZVsrbCdTbUn7Fttu2ro/cVy5uP5BWqtRmPm2rN3qoifWD35AzLk20MrwXlEgLQUNewNgF7bathbWKq51BuVs+1/ZitORedPyFiWrNRc+InsL916lwb5JJPy8W2AtZg89IeyIYib1PnReXFp89zcqoNnrq387Q4J1WvoghW0iKwrXq1vY0BJzUhn8Opv0q8+rJX3Cr+8mzPzOXOnnGDpDbSkrKtMvUXVxwqmQQtPUEUqsEyUHsiV6WpoOtqXgyF8mLBM+FmhV6rw5aiApoLfeFACj+YJGHJFOI0WFClVqaBJgar4X+1Q9NAQ8PSZZJ01jAZyBSB4SrRqNRq4JOkQP0ukWkkcqx5QwPoBcBhYh1LjojB38M7dBwOfsASD0fkwJdWSllahVguR5UB8J3bsURcCmUp9UmoqTodNX7aDFn/HE4kvscLJWSCFDpKkLtpBWlbFe0JvCChXGBJWhnDj0RyncLbDgc/Ssl1oJScB/fJnsuf3OeuPzxJo8oZalaMKYSXIxGdwkGiO0QrumM40VkKygWWEhxW5jRY5K+kn1jvlpZbEL/1dKeBpx/3x3+b1rti53QhuVO05M7ZNBHZFEdOSVwaUqsDsQlFqXh24oN3PQdFb+TOWFx3bM4IfH9KgicSqSTpHESllJYK3qO0FDrPdyV4RjA5L9PoQPwBI0Dsr2W7YASoTs/QyiRgJGaw4BK2sKQV3Dnciy7+K8N/3XGYDK7Mil7DtDF08Xf0k5BillysSQO7je3S2FjvQ0ffDm/6NHr7EP0/Dy91wK+j5t3b0D5JD5U5SBZXaWVxy6ZJyYa4HgpCb7F1fsfkU0HPU7p/IZjzqqS2f52V+JWCK8Vi7ZDE3I6yVfdpoTwizD1aVHjY8r6mBcEGSwRtgiFtpjH5CDe6W6PTWkZ337PHnnF3Xouyn8z95fM5qtFWFAu79dI5htrftNRe4qj5wd5uW6KiBa53aRBs5KJ9wwpSZ5MSApb0lwpz9keKfvhiRw8cqSqJ+OaIfS1R3dIx1N7RUStx5ZtS87edWn18Ety6XhX69dXaGa8ORBSk7emXkjZit1kiGzZCkshWOYYQ24NPR8gLRyjAdkINcITEel26SmMFo0UFvB0xk96JcjbITs355uhVvCLnGJoh+YSv3kGUfGgp+eEoVbadUiP6NCE1J8nBQN6KcV2j8m60rrt2yMwdzi2XgKQq05IK5NtULtGArlyCmsrDs8Fjay9URo/m9ayxfu3BSw5eOpqSRxyWpyLPmvZH81Q2FUv0MC2WKHPH7KyVWKq+mrpnRWLMgdDIc5lBZ75wXq1EHJa/ouZl47tpNiSw9uj57XuVdBLsDfvy8szd3eLLmcBihMFKWgYkL6ZVTAbrbPjGgE3NA7mbJ+5RTB7dKcXZFRNxWAaLGpWNL5j9f0thxd31/rTBxExO0cCcEfUiaiwsbwqLEUnuppWkjS/D/edzWHUbeH36RY1Z7M2ZIUcTLx58Vu4cFiOyO0QrO7M3052bxDL/BJAdSSxG0J2iRXfOtkISe7JY0xI6zEyK6RC5aO22nYNVXeuUO4vFCJZSWiyXbasA+belsTiBP63Krr6FW1Qz5tqfQ6sU2JHGYkQYV2mFccu2opLy5rF+LRwxklvpU+7EdfdqZF4c89SePBYjVO7TUnlErB1xXiLr8YVzotmXdIKVc4W1mr7fH1nORBYj2P6mxfYSj63iM1nc7fXmt8+Ijp06fsRnexXe9xjIZDGC7R0dNpDJwmGrqFQWh3/X9ZOn6rjC6d8vyb+ZtbzcqSwmEKGpLGpEXnhEFZfLCi/avWX6jk2Ry9vXKAz4M7uOHbksRjD50GLyw2OqyGSW+Trxzi15i8OSWdSoAvlYyRsL3gRZyRv/3M9rH4Y+FqwpTJw7atzJZKtL3vwNNWZknzaCQWxdKt1nRdGb4aNF5C+pfVl/bZN59yMK+0SMLPy+uor6lkgK3/haqz8iWw1bZ2InKHybSlb4BgqAbSl8a2O29An6VSbbSt9clt0dh6z9XbTg5qpty37bnI2vS6V4aHe+0nLxm/mXuuwtfgvG3sD6mbRfNrZ5pYlmpr4xxs7q8rc/787IWzJzdfSB1wfnBlddIXRq+Vsw9qoVNRnblpoIMc8eGuiQk5hzuWXNC81PRsyr1maU5E1RXWcVwAVjr1xRQ7BtzYmONqYP6RiJmjc9dHXNHcHm62cud1rTeayzS+CCsVeuqFnZtujE5XLlDzFi/8oM4q3W/xzlLJgUle09fNfOA/2qOK0ILhh7V4xalLYtl3HKugSi82VX/hTiuzehJ8+rXUQ7PZqtP3EseITzyuCCsZfTqIVn2wIdQroMolFk5X+5b97A9Jf5L1Zy1l7fO7WgqhRxZh1cMPYuGjU62xbkYOPRyZBhZNzgZhJoYDM5sR6VY+dt86ohWriOM1h8Sop/HdujNziPBNcwB+GCL5dR47JtiY3GtMksOlu4LCm++NzBVpE7BhRmXDhz9YXV6SyVg7A0osVi2wIaPPNsFlzLEiglkMAykAAuhBx6lSCNCrOjVlPbMfQf18pPuojGlBRLFz6OYDmrIisYe3eMGpjda2jg86TYu55WIDosHJp+ePth0Wj3bcXnxoy4gI9k0KUiyJIykpaOoRRDS6mXvXVrzfCvzhpegzXN9NGh+m715sE1fxTxZj3uxn/2fSH+NS8/3ofGSF59VTmI10BaXjIcL397kzNmOSw6VuIrA7YM+6VfxOpOGVeQ736a5syKLMhJS8spE8epHLm+JvRJLDpSA841/OVu1wHc+e/T4/d3efOTc2uy4EuGY+hYZU2wbQmbRnQ1WXRcFAM7BobVH8qetoqfd0S2uLbDP3JNl9pDUyh/kTIZYPsiNhzTuqwPXwW3tzIr94+BQ/ffdI8ZHTY3f1LjTWudWpmFplaoidm4io1NuZVqk5Oit7ZKjZ+8KO/2wtdNHzixNgvNrVBTsHE5GyaTK5P6+sf9upIdPWvT6E17vd+f/giqs9DkCjUsG9ez+f+XXQnrKFy1S7wkbkZ8uEyadiXCmfVZaHaFWpY2rsTz/yC90rTxqUhp1Yv83CEtml6/3jTGqRVaaHqFWno2rv3j4PzKt1WVBbLGvuyJz744OmfcZZWTS7TQ/Ao1OxvX+nFMguVavxl1NkT6cyfHvVnX5tvUzeVNsDDCCyZYqHnZuHpP+TMsglNbu8YW6wRbBzyrlV392Xx7MiyMcGlEy8XGtXkclmJZ8tUf330xaDB33YPEHfmBu7o7sVYITbFQE7N/eZ7y5li0Y1NHfFNzmGiZX9j9XQvfKcqfY2EEUwwtJrMlSis6yfJ1x04lG/vKOMtj9r1ee/CWv51JFkaADaQFJsMDq8gsy28Plg999KhV5IwXW0Jav8977uRaITTLQg0qEw+qYtMsvxx59agDL080Yc7sziv8W3o7vVoITbNQwgJplv8DAAD//wMA - Sum up the qualities of a type for each piece with this type in a design. + Sum up the attributes of a type for each piece with this type in a design. iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwAAADsABataJCQAAAo1JREFUSEtjwAv4xRUZBMQrgXg3kP2MQVD8NxiD2CAxkBxIDcmAX1yBQUB0BdCwP0D8nwD+A1YL0kMUEBCLYeAR/4zFIPwYpAekFy8QFC8D4n8oGknDIL1lUNPQAMh2ygyH4X+YPgGFHznBgguDzEKJE0iE/pfXM/yvbmKOFXNIysENEFJS+69qbArGgoqqcHFeWaX/cjoGED7ITDAAJTNoaimtqfj/6vmN/0ExUf/dg4LguKG98b+znx9YY3Nny/8vHx7+//75MRh//vDgf01TLVguPDH+/8mTe2EW/gGbDU7LEIH/TMIS/zduXvl/1rxpMEVgzAjEeta2/7UtrP5/fHfvv5G9438WUSkwtnBxBVr44L+SgTG6BUBfAM0GZxiYABCLKKv/v33rzP+olCSEQih28vX9//D+RQzxF0+vgS3CYsFuUBCBciiKBktXt//Pn1wDhz2yOMkWgMwGMkDZH0UDCBdVlf2fPnsKihjJFoDMBhNIimG4sr76v4S6NoqYg7f3/2ePr/5nFJKAizEJS/5/8/LWfzMnZxwWYAkiv4jw/07QVIOM+eSU/z8C+mDpivn/K+qrwHjVmsX/7945959LSh5HEKFFsgIwLxRWlCAUQbGAggqYVjU2+z95xoT/e/ZuAifTDZtWglMQSM7K3f1/e287Qh84kpGSKauYzP/2nrb/LCJSCEVAzC+v/D+3pBBFDBRMU2ZOxEjSKBicTJEyWhvQ8Ncvbv5/8vAyCv78/sH/qsYaDAOYgJawictgiEMxNKOBALSo4JVVBLpWBSvGYxB2DC8qQIDmhR0I0LS4hgGaVjgwALKdnOAC6cHpcnQACj9IxNOg0kcGoGQGSsugDAPJ8SQ2WxgYAEKSoBFhZVlKAAAAAElFTkSuQmCC eb68495e-ee77-45aa-a111-781660237d79 - Sum Qualities - ∑Qal + Sum Attributes + ∑Atr false @@ -23358,7 +23358,7 @@ If none is provided, it will try to see if the Grasshopper script is executed in - Name of the quality. + Name of the attribute. 290d853a-efa8-458f-9099-707ab35b1fea Name Na @@ -23410,10 +23410,10 @@ If none is provided, it will try to see if the Grasshopper script is executed in - A quality is meta-data for decision making. + A attribute is meta-data for decision making. b3ebc892-0f86-4d10-880d-aafd4bc008e2 - Quality - Ql + Attribute + At false 0 diff --git a/assets/grasshopper/components.json b/assets/grasshopper/components.json index 9a289da01..2301633cd 100644 --- a/assets/grasshopper/components.json +++ b/assets/grasshopper/components.json @@ -1,4998 +1,4998 @@ { - "Util": { - "1": [ - { - "name": "Merge Designs", - "description": "Merge a list of distinct designs into a new design. All designs are normalized first, so the connections align. All the pieces have the name and variant as a prefix to ensure uniqueness. Make sure every design is distinct by having a unique combination of name and variant.", - "icon": "icon", - "nickname": "\u22faDsns", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "The name of the design.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human description of the design.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | name | url ] of the design.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional value of the design.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional view of the design. No view means the default view.", - "name": "View", - "nickname": "Vw?", - "kind": "View" - }, - { - "description": "The optional qualities of the design.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - }, - { - "description": "The optional authors of the design.", - "name": "Authors", - "nickname": "Au*", - "kind": "Authors" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Interpolate Designs", - "description": "Interpolate between a source design and a target design. The target will act as a blueprint. The result is an interpolated union design and two unmodified but filtered difference design. Piece planes and connection values are linearly interpolated.", - "icon": "icon", - "nickname": "\u21adDsns", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "S", - "kind": "Design" - }, - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "T", - "kind": "Design" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "t", - "kind": "Number" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn (S \u2229 T)", - "kind": "Design" - }, - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn (S \\ T)", - "kind": "Design" - }, - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn (T \\ S)", - "kind": "Design" - } - ] - }, - { - "name": "Move Design", - "description": "Move (translate and rotate) the design by moving all planes and centers.", - "icon": "icon", - "nickname": "\u25f6Dsn", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Contains a collection of three-dimensional transformations", - "name": "Transform", - "nickname": "Pn", - "kind": "Transform" - }, - { - "description": "Contains a collection of three-dimensional transformations", - "name": "Transform", - "nickname": "Ce", - "kind": "Transform" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Flatten Design", - "description": "Flatten a design.", - "nickname": "\u2193Dsn", - "inputs": [ - { - "description": "Design to flatten.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Types that are used by the pieces in the design.", - "name": "Types", - "nickname": "Ty+", - "kind": "Types" - } - ], - "outputs": [ - { - "description": "Flat Design with no connections.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ], - "icon": "" - }, - { - "name": "Remove Pieces", - "description": "Remove all pieces (and all associated connections) from a design.", - "icon": "icon", - "nickname": "-Pcs", - "inputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Ids", - "kind": "Text" - } - ], - "outputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": null, - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": null, - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - } - ] - }, - { - "name": "Replace Type", - "description": "Replace a type (name) in a design. All variants stay the same and must exist in the new type.", - "icon": "icon", - "nickname": "\u21bbTyp", - "inputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "ONa", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "NNa", - "kind": "Text" - } - ], - "outputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Vary Types", - "description": "Change a variant (name) from one type to another variant of the same type for all pieces of a design.", - "icon": "icon", - "nickname": "\u21b7Typ", - "inputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Name of the type of the piece.", - "name": "Type Name", - "nickname": "Na", - "kind": "Type Name" - }, - { - "description": "The optional variant of the type of the piece. No variant means the default variant.", - "name": "Type Variant", - "nickname": "OVn", - "kind": "Type Variant" - }, - { - "description": "The optional variant of the type of the piece. No variant means the default variant.", - "name": "Type Variant", - "nickname": "NVn", - "kind": "Type Variant" - } - ], - "outputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Sum Qualities", - "description": "Sum up the qualities of a type for each piece with this type in a design.", - "icon": "icon", - "nickname": "\u2211Qal", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": null, - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Name of the quality.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - } - ], - "outputs": [ - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Num", - "kind": "Number" - }, - { - "description": "A quality is meta-data for decision making.", - "name": "Quality", - "nickname": "Ql", - "kind": "Quality" - } - ] - } - ], - "2": [ - { - "name": "Normalize Kit", - "description": "Normalize a kit to this document. This normalizes all types and designs and reorders them. Types are reordered after name and variant and designs after name, variant and view.", - "icon": "icon", - "nickname": "\u21d2Kit", - "inputs": [ - { - "description": "A kit is a collection of types and designs.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - } - ], - "outputs": [ - { - "description": "A kit is a collection of types and designs.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - } - ] - }, - { - "name": "Normalize Design", - "description": "Normalize a design for this document. This includes changing the unit to the document unit and rescaling the affected values. Further it reoders pieces, connections and qualities. Connections might be swapped, so that the connected piece id is lexically first. The order of authors is not changed.", - "icon": "icon", - "nickname": "\u21d2Dsn", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Normalize Type", - "description": "Normalize a type for this document. This converts the length unit of the type to the length unit of this document and it scales the ports by the right scaling factor. Further it sorts the representations, ports, qualities by it's keys. The order of authors is not changed.", - "icon": "icon", - "nickname": "\u21d2Typ", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - } - ], - "outputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - } - ] - }, - { - "name": "Simplify Design", - "description": "Simplify the design by replacing all ids of the pieces with a list of numbers in which the pieces appear first in the design.", - "icon": "icon", - "nickname": "\u2192Dsn", - "inputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ], - "outputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Sort Design", - "description": "Sort a design by reordering pieces and connections to appear in order that they are discovered by breadth-first-search and some times flipping connected and connecting if the connected is not the parent of the connecting.", - "nickname": "\u2050Dsn", - "inputs": [ - { - "description": "Design to sort.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ], - "outputs": [ - { - "description": "Sorted Design.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ], - "icon": "" - } - ], - "3": [ - { - "name": "Convert Unit", - "description": "Convert a unit.", - "nickname": "\u21a6Unt", - "inputs": [ - { - "description": "Value to convert.", - "name": "Value", - "nickname": "Vl", - "kind": "Value" - }, - { - "description": "Unit to convert from.", - "name": "From Unit", - "nickname": "FU", - "kind": "From Unit" - }, - { - "description": "Unit to convert to.", - "name": "To Unit", - "nickname": "TU", - "kind": "To Unit" - } - ], - "outputs": [ - { - "description": "Converted value.", - "name": "Converted Value", - "nickname": "CV", - "kind": "Converted Value" - } - ], - "icon": "" - }, - { - "name": "Jaccard Index", - "description": "Compute the Jaccard Index of two sets.", - "icon": "icon", - "nickname": "!Jac", - "inputs": [ - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Set1", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Set2", - "kind": "Data" - } - ], - "outputs": [ - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "N", - "kind": "Number" - } - ] - } + "Util": { + "1": [ + { + "name": "Merge Designs", + "description": "Merge a list of distinct designs into a new design. All designs are normalized first, so the connections align. All the pieces have the name and variant as a prefix to ensure uniqueness. Make sure every design is distinct by having a unique combination of name and variant.", + "icon": "icon", + "nickname": "\u22faDsns", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "The name of the design.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human description of the design.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | name | url ] of the design.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional value of the design.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional view of the design. No view means the default view.", + "name": "View", + "nickname": "Vw?", + "kind": "View" + }, + { + "description": "The optional attributes of the design.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + }, + { + "description": "The optional authors of the design.", + "name": "Authors", + "nickname": "Au*", + "kind": "Authors" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Interpolate Designs", + "description": "Interpolate between a source design and a target design. The target will act as a blueprint. The result is an interpolated union design and two unmodified but filtered difference design. Piece planes and connection values are linearly interpolated.", + "icon": "icon", + "nickname": "\u21adDsns", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "S", + "kind": "Design" + }, + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "T", + "kind": "Design" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "t", + "kind": "Number" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn (S \u2229 T)", + "kind": "Design" + }, + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn (S \\ T)", + "kind": "Design" + }, + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn (T \\ S)", + "kind": "Design" + } + ] + }, + { + "name": "Move Design", + "description": "Move (translate and rotate) the design by moving all planes and centers.", + "icon": "icon", + "nickname": "\u25f6Dsn", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Contains a collection of three-dimensional transformations", + "name": "Transform", + "nickname": "Pn", + "kind": "Transform" + }, + { + "description": "Contains a collection of three-dimensional transformations", + "name": "Transform", + "nickname": "Ce", + "kind": "Transform" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Flatten Design", + "description": "Flatten a design.", + "nickname": "\u2193Dsn", + "inputs": [ + { + "description": "Design to flatten.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Types that are used by the pieces in the design.", + "name": "Types", + "nickname": "Ty+", + "kind": "Types" + } + ], + "outputs": [ + { + "description": "Flat Design with no connections.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ], + "icon": "" + }, + { + "name": "Remove Pieces", + "description": "Remove all pieces (and all associated connections) from a design.", + "icon": "icon", + "nickname": "-Pcs", + "inputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Ids", + "kind": "Text" + } + ], + "outputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": null, + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": null, + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + } + ] + }, + { + "name": "Replace Type", + "description": "Replace a type (name) in a design. All variants stay the same and must exist in the new type.", + "icon": "icon", + "nickname": "\u21bbTyp", + "inputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "ONa", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "NNa", + "kind": "Text" + } + ], + "outputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Vary Types", + "description": "Change a variant (name) from one type to another variant of the same type for all pieces of a design.", + "icon": "icon", + "nickname": "\u21b7Typ", + "inputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Name of the type of the piece.", + "name": "Type Name", + "nickname": "Na", + "kind": "Type Name" + }, + { + "description": "The optional variant of the type of the piece. No variant means the default variant.", + "name": "Type Variant", + "nickname": "OVn", + "kind": "Type Variant" + }, + { + "description": "The optional variant of the type of the piece. No variant means the default variant.", + "name": "Type Variant", + "nickname": "NVn", + "kind": "Type Variant" + } + ], + "outputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Sum Attributes", + "description": "Sum up the attributes of a type for each piece with this type in a design.", + "icon": "icon", + "nickname": "\u2211Qal", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": null, + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Name of the attribute.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + } + ], + "outputs": [ + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Num", + "kind": "Number" + }, + { + "description": "A attribute is meta-data for decision making.", + "name": "Attribute", + "nickname": "At", + "kind": "Attribute" + } + ] + } + ], + "2": [ + { + "name": "Normalize Kit", + "description": "Normalize a kit to this document. This normalizes all types and designs and reorders them. Types are reordered after name and variant and designs after name, variant and view.", + "icon": "icon", + "nickname": "\u21d2Kit", + "inputs": [ + { + "description": "A kit is a collection of types and designs.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + } + ], + "outputs": [ + { + "description": "A kit is a collection of types and designs.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + } + ] + }, + { + "name": "Normalize Design", + "description": "Normalize a design for this document. This includes changing the unit to the document unit and rescaling the affected values. Further it reoders pieces, connections and attributes. Connections might be swapped, so that the connected piece id is lexically first. The order of authors is not changed.", + "icon": "icon", + "nickname": "\u21d2Dsn", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Normalize Type", + "description": "Normalize a type for this document. This converts the length unit of the type to the length unit of this document and it scales the ports by the right scaling factor. Further it sorts the representations, ports, attributes by it's keys. The order of authors is not changed.", + "icon": "icon", + "nickname": "\u21d2Typ", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + } + ], + "outputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + } + ] + }, + { + "name": "Simplify Design", + "description": "Simplify the design by replacing all ids of the pieces with a list of numbers in which the pieces appear first in the design.", + "icon": "icon", + "nickname": "\u2192Dsn", + "inputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ], + "outputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Sort Design", + "description": "Sort a design by reordering pieces and connections to appear in order that they are discovered by breadth-first-search and some times flipping connected and connecting if the connected is not the parent of the connecting.", + "nickname": "\u2050Dsn", + "inputs": [ + { + "description": "Design to sort.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ], + "outputs": [ + { + "description": "Sorted Design.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ], + "icon": "" + } + ], + "3": [ + { + "name": "Convert Unit", + "description": "Convert a unit.", + "nickname": "\u21a6Unt", + "inputs": [ + { + "description": "Value to convert.", + "name": "Value", + "nickname": "Vl", + "kind": "Value" + }, + { + "description": "Unit to convert from.", + "name": "From Unit", + "nickname": "FU", + "kind": "From Unit" + }, + { + "description": "Unit to convert to.", + "name": "To Unit", + "nickname": "TU", + "kind": "To Unit" + } + ], + "outputs": [ + { + "description": "Converted value.", + "name": "Converted Value", + "nickname": "CV", + "kind": "Converted Value" + } + ], + "icon": "" + }, + { + "name": "Jaccard Index", + "description": "Compute the Jaccard Index of two sets.", + "icon": "icon", + "nickname": "!Jac", + "inputs": [ + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Set1", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Set2", + "kind": "Data" + } + ], + "outputs": [ + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "N", + "kind": "Number" + } + ] + } + ] + }, + "Templates": { + "2": [ + { + "name": "Linear Connections", + "description": "Create an array of linear connections (for n pieces this creates n-1 connections) where every piece is connected with the next piece. The spacing units are connections.", + "icon": "icon", + "nickname": "\u2026Cons", + "inputs": [ + { + "description": null, + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": "A bidirectional connection between two pieces of a design.", + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + } + ], + "outputs": [ + { + "description": null, + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + } + ] + }, + { + "name": "Opinionated Attribute", + "description": "Construct an opinionated attribute with a standard name.", + "icon": "icon", + "nickname": "\u219dQal", + "inputs": [ + { + "description": "The name of the attribute.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value [ text | url ] of the attribute. No value is equivalent to true.", + "name": "Value", + "nickname": "Vl?", + "kind": "Value" + }, + { + "description": "Contains a collection of boolean values", + "name": "Boolean", + "nickname": "Im", + "kind": "Boolean" + } + ], + "outputs": [ + { + "description": "A attribute is a key value pair with an an optional definition.", + "name": "Attribute", + "nickname": "At", + "kind": "Attribute" + } + ] + }, + { + "name": "Random Ids", + "description": "Generate random ids.", + "nickname": "%Ids", + "inputs": [ + { + "description": "Number of ids to generate.", + "name": "Count", + "nickname": "Ct", + "kind": "Count" + }, + { + "description": "Seed for the random generator.", + "name": "Seed", + "nickname": "Se", + "kind": "Seed" + }, + { + "description": "If true, the generated ids will be unique for this component.", + "name": "Unique Component", + "nickname": "UC", + "kind": "Unique Component" + } + ], + "outputs": [ + { + "description": "Generated ids.", + "name": "Ids", + "nickname": "Id+", + "kind": "Ids" + } + ], + "icon": "" + } + ] + }, + "Selecting": { + "1": [ + { + "name": "Select Kit", + "description": "Select a kit with a name and an optional version.\nIf no version is provided it will select all variants.\nIf you want to select the default version then use the empty text.", + "icon": "icon", + "nickname": "?Kit", + "inputs": [ + { + "description": "A kit is a collection of types and designs.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + }, + { + "description": "The name of the kit.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional version of the kit. No version means the latest version.", + "name": "Version", + "nickname": "Vr?", + "kind": "Version" + } + ], + "outputs": [ + { + "description": "A kit is a collection of types and designs.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Design", + "description": "Select a design with a name, an optional variant and an optional view.\nIf no variant is provided it will select all variants.\nIf you want to select the default variant then use the empty text.\nIf no view is provided it will select all views.\nIf you want to select the default view then use the empty text.", + "icon": "icon", + "nickname": "?Dsn", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "The name of the design.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value of the design.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional view of the design. No view means the default view.", + "name": "View", + "nickname": "Vw?", + "kind": "View" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Type", + "description": "Select a type with a name and an optional variant. If no variant is provided it will select all variants. If you want to select the default type then use the empty text.", + "icon": "icon", + "nickname": "?Typ", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "The name of the type.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value of the type.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + } + ], + "outputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Type by Piece", + "description": "Select the type of a piece.", + "icon": "icon", + "nickname": "?Typ", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + } + ], + "outputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Connection", + "description": "Select a connection with the connected id and the connecting id. The connections are symetric, so if the conected is the connecting and vice versa it will still selct them.", + "icon": "icon", + "nickname": "?Con", + "inputs": [ + { + "description": "A connection between two pieces in a design.", + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + }, + { + "description": "Id of the connected piece of the side.", + "name": "Connected Piece Id", + "nickname": "CdPc", + "kind": "Connected Piece Id" + }, + { + "description": "Id of the connected piece of the side.", + "name": "Connecting Piece Id", + "nickname": "CgPc", + "kind": "Connecting Piece Id" + } + ], + "outputs": [ + { + "description": "A connection between two pieces in a design.", + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + }, + { + "description": "Contains a collection of boolean values", + "name": "Boolean", + "nickname": "Fl", + "kind": "Boolean" + } + ] + }, + { + "name": "Select Pieces", + "description": "Select pieces of a certain type. If no variant is provided it will select all variants. If you want to select the default type then use the empty text.", + "icon": "icon", + "nickname": "?Pces", + "inputs": [ + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": "The name of the type.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value of the type.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + } + ], + "outputs": [ + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + } + ] + }, + { + "name": "Select Piece", + "description": "Select a piece with the id.", + "icon": "icon", + "nickname": "?Pce", + "inputs": [ + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": "Id of the piece.", + "name": "Id", + "nickname": "Id", + "kind": "Id" + } + ], + "outputs": [ + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Fixed", + "description": "Select a fixed piece. A piece is fixed when it has a plane (and a center).", + "icon": "icon", + "nickname": "?Fix", + "inputs": [ + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + } + ], + "outputs": [ + { + "description": "A piece is a 3d-instance of a type in a design.", + "name": "Piece", + "nickname": "Fx", + "kind": "Piece" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Port", + "description": "Select a port with the id. If no port matches, null is returned.", + "icon": "icon", + "nickname": "?Por", + "inputs": [ + { + "description": "A port is a connection point (with a direction) of a type.", + "name": "Port", + "nickname": "Po", + "kind": "Port" + }, + { + "description": "The optional local identifier of the port within the type. No id means the default port.", + "name": "Id", + "nickname": "Id?", + "kind": "Id" + } + ], + "outputs": [ + { + "description": "A port is a connection point (with a direction) of a type.", + "name": "Port", + "nickname": "Po", + "kind": "Port" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Representation", + "description": "Select exactly one representation based on tags. The tag matching is based on the highest Jaccard index (|\u2229|/|\u222a|).", + "icon": "icon", + "nickname": "?Rep", + "inputs": [ + { + "description": "A representation is a link to a resource that describes a type for a certain level of detail and tags.", + "name": "Representation", + "nickname": "Rp", + "kind": "Representation" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + } + ], + "outputs": [ + { + "description": "A representation is a link to a resource that describes a type for a certain level of detail and tags.", + "name": "Representation", + "nickname": "Rp", + "kind": "Representation" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Select Attribute", + "description": "Select a attribute by its name. If no attribute matches, null is returned.", + "icon": "icon", + "nickname": "?Atr", + "inputs": [ + { + "description": "A attribute is a key value pair with an an optional definition.", + "name": "Attribute", + "nickname": "At", + "kind": "Attribute" + }, + { + "description": "The name of the attribute.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + } + ], + "outputs": [ + { + "description": "A attribute is a key value pair with an an optional definition.", + "name": "Attribute", + "nickname": "At", + "kind": "Attribute" + } + ] + } + ] + }, + "Scripting": { + "3": [ + { + "name": "Deserialize Kit", + "description": "Deserialize a kit.", + "nickname": "Txt", + "inputs": [ + { + "description": "Text to encode.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + }, + { + "description": "0: url safe encoding ()\n1: base64 encoding\n2: replace only", + "name": "Mode", + "nickname": "Mo", + "kind": "Mode" + }, + { + "description": "Forbidden text that will be replaced after encoding.", + "name": "Forbidden", + "nickname": "Fb", + "kind": "Forbidden" + }, + { + "description": "Placeholder text that replaces the forbidden text after encoding.", + "name": "Replace", + "nickname": "Re", + "kind": "Replace" + } + ], + "outputs": [ + { + "description": "Encoded text.", + "name": "Encoded Text", + "nickname": "En", + "kind": "Encoded Text" + } + ], + "icon": "" + }, + { + "name": "Normalize Text", + "description": "Normalizes a text to different formats.", + "nickname": "\u21d2Txt", + "inputs": [ + { + "description": "Text to normalize.", + "name": "Text", + "nickname": "Txt", + "kind": "Text" + } + ], + "outputs": [ + { + "description": "Strictly alphanumerical text that either strips characters or turn them into underscores.", + "name": "Strict", + "nickname": "St", + "kind": "Strict" + }, + { + "description": "Titelized text by capitalizing and unifying casing.", + "name": "Title", + "nickname": "Ti", + "kind": "Title" + }, + { + "description": "Underscorized text by lowercasing everything and replacing spaces with underscores.", + "name": "Underscore", + "nickname": "Un", + "kind": "Underscore" + }, + { + "description": "Kebaberized text by lowercasing everything and replacing spaces with dashes.", + "name": "Kebab", + "nickname": "Kb", + "kind": "Kebab" + }, + { + "description": "Pascalized text by capitalizing and removing spaces.", + "name": "Pascal", + "nickname": "Pa", + "kind": "Pascal" + } + ], + "icon": "" + }, + { + "name": "Truncate Text", + "description": "Truncates text by length and an optional termination.", + "nickname": "\u2026Txt", + "inputs": [ + { + "description": "Text to truncate.", + "name": "Text", + "nickname": "Txt", + "kind": "Text" + }, + { + "description": "Maximum length of the text.", + "name": "Length", + "nickname": "Le", + "kind": "Length" + }, + { + "description": "Optional termination to append to the truncated text.", + "name": "Termination", + "nickname": "Tr", + "kind": "Termination" + } + ], + "outputs": [ + { + "description": "Fixed length truncated text including the truncation text length.", + "name": "Strict", + "nickname": "St", + "kind": "Strict" + }, + { + "description": "Fixed alphanumeric character length truncated text including the truncation text length", + "name": "Characters", + "nickname": "Crs", + "kind": "Characters" + }, + { + "description": "Fixed word length truncated text.", + "name": "Words", + "nickname": "Wds", + "kind": "Words" + } + ], + "icon": "" + }, + { + "name": "Objects to Text", + "description": "Converts a list of objects to a human-readable text.", + "nickname": "Objs\u2192Txt", + "inputs": [ + { + "description": "Objects to humanize.", + "name": "Objects", + "nickname": "Ob+", + "kind": "Objects" + } + ], + "outputs": [ + { + "description": "Human-readable text.", + "name": "Humanized Text", + "nickname": "Tx", + "kind": "Humanized Text" + } + ], + "icon": "" + } + ], + "2": [ + { + "name": "Serialize Kit", + "description": "Serialize a kit.", + "nickname": ">Kit", + "inputs": [ + { + "description": "The kit to serialize.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + }, + { + "description": "The optional indent unit for the serialized kit. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Kit.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Design", + "description": "Serialize a design.", + "nickname": ">Dsn", + "inputs": [ + { + "description": "The design to serialize.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "The optional indent unit for the serialized design. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Design.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Type", + "description": "Serialize a type.", + "nickname": ">Typ", + "inputs": [ + { + "description": "The type to serialize.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "The optional indent unit for the serialized type. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Type.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Connection", + "description": "Serialize a connection.", + "nickname": ">Con", + "inputs": [ + { + "description": "The connection to serialize.", + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + }, + { + "description": "The optional indent unit for the serialized connection. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Connection.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Piece", + "description": "Serialize a piece.", + "nickname": ">Pce", + "inputs": [ + { + "description": "The piece to serialize.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": "The optional indent unit for the serialized piece. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Piece.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Port", + "description": "Serialize a port.", + "nickname": ">Por", + "inputs": [ + { + "description": "The port to serialize.", + "name": "Port", + "nickname": "Po", + "kind": "Port" + }, + { + "description": "The optional indent unit for the serialized port. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Port.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Representation", + "description": "Serialize a representation.", + "nickname": ">Rep", + "inputs": [ + { + "description": "The representation to serialize.", + "name": "Representation", + "nickname": "Rp", + "kind": "Representation" + }, + { + "description": "The optional indent unit for the serialized representation. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Representation.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Attribute", + "description": "Serialize a attribute.", + "nickname": ">Atr", + "inputs": [ + { + "description": "The attribute to serialize.", + "name": "Attribute", + "nickname": "At", + "kind": "Attribute" + }, + { + "description": "The optional indent unit for the serialized attribute. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Attribute.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize DiagramPoint", + "description": "Serialize a diagrampoint.", + "nickname": ">DPt", + "inputs": [ + { + "description": "The diagrampoint to serialize.", + "name": "DiagramPoint", + "nickname": "DP", + "kind": "DiagramPoint" + }, + { + "description": "The optional indent unit for the serialized diagrampoint. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized DiagramPoint.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Location", + "description": "Serialize a location.", + "nickname": ">Loc", + "inputs": [ + { + "description": "The location to serialize.", + "name": "Location", + "nickname": "Lc", + "kind": "Location" + }, + { + "description": "The optional indent unit for the serialized location. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Location.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + }, + { + "name": "Serialize Author", + "description": "Serialize a author.", + "nickname": ">Aut", + "inputs": [ + { + "description": "The author to serialize.", + "name": "Author", + "nickname": "Au", + "kind": "Author" + }, + { + "description": "The optional indent unit for the serialized author. Empty text for no indent or spaces or tabs", + "name": "Indent", + "nickname": "In?", + "kind": "Indent" + } + ], + "outputs": [ + { + "description": "Text of serialized Author.", + "name": "Text", + "nickname": "Tx", + "kind": "Text" + } + ], + "icon": "" + } + ] + }, + "Modeling": { + "1": [ + { + "name": "Model Kit", + "description": "Construct, deconstruct or modify a kit", + "nickname": "~Kit", + "inputs": [ + { + "description": "The optional kit to deconstruct or modify.", + "name": "Kit", + "nickname": "Kt?", + "kind": "Kit" + }, + { + "description": "Whether the kit should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The name of the kit.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human-readable description of the kit.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | logogram | url ] of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional url of the preview image of the kit. The url must point to a landscape image [ png | jpg | svg ] which will be cropped by a 2x1 rectangle. The image must be at least 1920x960 pixels and smaller than 15 MB.", + "name": "Preview", + "nickname": "Pv?", + "kind": "Preview" + }, + { + "description": "The optional version of the kit. No version means the latest version.", + "name": "Version", + "nickname": "Vr?", + "kind": "Version" + }, + { + "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", + "name": "Remote", + "nickname": "Rm?", + "kind": "Remote" + }, + { + "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", + "name": "Homepage", + "nickname": "Hp?", + "kind": "Homepage" + }, + { + "description": "The optional license [ spdx id | url ] of the kit.", + "name": "License", + "nickname": "Li?", + "kind": "License" + }, + { + "description": "The optional types of the kit.", + "name": "Types", + "nickname": "Ty*", + "kind": "Types" + }, + { + "description": "The optional designs of the kit.", + "name": "Designs", + "nickname": "Dn*", + "kind": "Designs" + }, + { + "description": "The optional attributes of the kit.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified kit.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + }, + { + "description": "True if the kit is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The name of the kit.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human-readable description of the kit.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | logogram | url ] of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional url of the preview image of the kit. The url must point to a landscape image [ png | jpg | svg ] which will be cropped by a 2x1 rectangle. The image must be at least 1920x960 pixels and smaller than 15 MB.", + "name": "Preview", + "nickname": "Pv?", + "kind": "Preview" + }, + { + "description": "The optional version of the kit. No version means the latest version.", + "name": "Version", + "nickname": "Vr?", + "kind": "Version" + }, + { + "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", + "name": "Remote", + "nickname": "Rm?", + "kind": "Remote" + }, + { + "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", + "name": "Homepage", + "nickname": "Hp?", + "kind": "Homepage" + }, + { + "description": "The optional license [ spdx id | url ] of the kit.", + "name": "License", + "nickname": "Li?", + "kind": "License" + }, + { + "description": "The optional types of the kit.", + "name": "Types", + "nickname": "Ty*", + "kind": "Types" + }, + { + "description": "The optional designs of the kit.", + "name": "Designs", + "nickname": "Dn*", + "kind": "Designs" + }, + { + "description": "The optional attributes of the kit.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Design", + "description": "Construct, deconstruct or modify a design", + "nickname": "~Dsn", + "inputs": [ + { + "description": "The optional design to deconstruct or modify.", + "name": "Design", + "nickname": "Dn?", + "kind": "Design" + }, + { + "description": "Whether the design should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The name of the design.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human-readable description of the design.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | logogram | url ] of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional variant of the design. No variant means the default variant.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional view of the design. No view means the default view.", + "name": "View", + "nickname": "Vw?", + "kind": "View" + }, + { + "description": "The optional location of the design.", + "name": "Location", + "nickname": "Lo?", + "kind": "Location" + }, + { + "description": "The length unit for all distance-related information of the design.", + "name": "Unit", + "nickname": "Ut", + "kind": "Unit" + }, + { + "description": "The optional pieces of the design.", + "name": "Pieces", + "nickname": "Pc*", + "kind": "Pieces" + }, + { + "description": "The optional connections of the design.", + "name": "Connections", + "nickname": "Co*", + "kind": "Connections" + }, + { + "description": "The optional authors of the design.", + "name": "Authors", + "nickname": "Au*", + "kind": "Authors" + }, + { + "description": "The optional attributes of the design.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified design.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "True if the design is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The name of the design.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human-readable description of the design.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | logogram | url ] of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional variant of the design. No variant means the default variant.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional view of the design. No view means the default view.", + "name": "View", + "nickname": "Vw?", + "kind": "View" + }, + { + "description": "The optional location of the design.", + "name": "Location", + "nickname": "Lo?", + "kind": "Location" + }, + { + "description": "The length unit for all distance-related information of the design.", + "name": "Unit", + "nickname": "Ut", + "kind": "Unit" + }, + { + "description": "The optional pieces of the design.", + "name": "Pieces", + "nickname": "Pc*", + "kind": "Pieces" + }, + { + "description": "The optional connections of the design.", + "name": "Connections", + "nickname": "Co*", + "kind": "Connections" + }, + { + "description": "The optional authors of the design.", + "name": "Authors", + "nickname": "Au*", + "kind": "Authors" + }, + { + "description": "The optional attributes of the design.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Type", + "description": "Construct, deconstruct or modify a type", + "nickname": "~Typ", + "inputs": [ + { + "description": "The optional type to deconstruct or modify.", + "name": "Type", + "nickname": "Ty?", + "kind": "Type" + }, + { + "description": "Whether the type should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The name of the type.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human-readable description of the type.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | logogram | url ] of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional variant of the type. No variant means the default variant. ", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional number of items in stock. 2147483647 (=2^31-1) means infinite stock.", + "name": "Stock", + "nickname": "St?", + "kind": "Stock" + }, + { + "description": "Whether the type is virtual. A virtual type is not physically present but is used in conjunction with other virtual types to form a larger physical type.", + "name": "Virtual", + "nickname": "Vi?", + "kind": "Virtual" + }, + { + "description": "The optional location of the type.", + "name": "Location", + "nickname": "Lo?", + "kind": "Location" + }, + { + "description": "The length unit of the point and the direction of the ports of the type.", + "name": "Unit", + "nickname": "Ut", + "kind": "Unit" + }, + { + "description": "The optional representations of the type.", + "name": "Representations", + "nickname": "Rp*", + "kind": "Representations" + }, + { + "description": "The optional ports of the type.", + "name": "Ports", + "nickname": "Po*", + "kind": "Ports" + }, + { + "description": "The optional authors of the type.", + "name": "Authors", + "nickname": "Au*", + "kind": "Authors" + }, + { + "description": "The optional attributes of the type.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified type.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "True if the type is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The name of the type.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional human-readable description of the type.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional icon [ emoji | logogram | url ] of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", + "name": "Icon", + "nickname": "Ic?", + "kind": "Icon" + }, + { + "description": "The optional url to the image of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", + "name": "Image", + "nickname": "Im?", + "kind": "Image" + }, + { + "description": "The optional variant of the type. No variant means the default variant. ", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional number of items in stock. 2147483647 (=2^31-1) means infinite stock.", + "name": "Stock", + "nickname": "St?", + "kind": "Stock" + }, + { + "description": "Whether the type is virtual. A virtual type is not physically present but is used in conjunction with other virtual types to form a larger physical type.", + "name": "Virtual", + "nickname": "Vi?", + "kind": "Virtual" + }, + { + "description": "The optional location of the type.", + "name": "Location", + "nickname": "Lo?", + "kind": "Location" + }, + { + "description": "The length unit of the point and the direction of the ports of the type.", + "name": "Unit", + "nickname": "Ut", + "kind": "Unit" + }, + { + "description": "The optional representations of the type.", + "name": "Representations", + "nickname": "Rp*", + "kind": "Representations" + }, + { + "description": "The optional ports of the type.", + "name": "Ports", + "nickname": "Po*", + "kind": "Ports" + }, + { + "description": "The optional authors of the type.", + "name": "Authors", + "nickname": "Au*", + "kind": "Authors" + }, + { + "description": "The optional attributes of the type.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Connection", + "description": "Construct, deconstruct or modify a connection", + "nickname": "~Con", + "inputs": [ + { + "description": "The optional connection to deconstruct or modify.", + "name": "Connection", + "nickname": "Co?", + "kind": "Connection" + }, + { + "description": "Whether the connection should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "Id of the connected piece.", + "name": "Connected Piece Id", + "nickname": "CdPc", + "kind": "Connected Piece Id" + }, + { + "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", + "name": "Connected Piece Type Port Id", + "nickname": "CdPo?", + "kind": "Connected Piece Type Port Id" + }, + { + "description": "Id of the connected piece.", + "name": "Connecting Piece Id", + "nickname": "CgPc", + "kind": "Connecting Piece Id" + }, + { + "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", + "name": "Connecting Piece Type Port Id", + "nickname": "CgPo?", + "kind": "Connecting Piece Type Port Id" + }, + { + "description": "The optional human-readable description of the connection.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional longitudinal gap (applied after rotation and tilt in port direction) between the connected and the connecting piece.", + "name": "Gap", + "nickname": "Gp?", + "kind": "Gap" + }, + { + "description": "The optional lateral shift (applied after rotation and tilt in port direction) between the connected and the connecting piece.", + "name": "Shift", + "nickname": "Sf?", + "kind": "Shift" + }, + { + "description": "The optional vertical rise in port direction between the connected and the connecting piece. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", + "name": "Rise", + "nickname": "Rs?", + "kind": "Rise" + }, + { + "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", + "name": "Rotation", + "nickname": "Rt?", + "kind": "Rotation" + }, + { + "description": "The optional turn perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", + "name": "Turn", + "nickname": "Tu?", + "kind": "Turn" + }, + { + "description": "The optional horizontal tilt perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees.", + "name": "Tilt", + "nickname": "Tl?", + "kind": "Tilt" + }, + { + "description": "The optional offset in x direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", + "name": "X", + "nickname": "X?", + "kind": "X" + }, + { + "description": "The optional offset in y direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", + "name": "Y", + "nickname": "Y?", + "kind": "Y" + }, + { + "description": "The optional attributes of the connection.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified connection.", + "name": "Connection", + "nickname": "Co", + "kind": "Connection" + }, + { + "description": "True if the connection is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "Id of the connected piece.", + "name": "Connected Piece Id", + "nickname": "CdPc", + "kind": "Connected Piece Id" + }, + { + "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", + "name": "Connected Piece Type Port Id", + "nickname": "CdPo?", + "kind": "Connected Piece Type Port Id" + }, + { + "description": "Id of the connected piece.", + "name": "Connecting Piece Id", + "nickname": "CgPc", + "kind": "Connecting Piece Id" + }, + { + "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", + "name": "Connecting Piece Type Port Id", + "nickname": "CgPo?", + "kind": "Connecting Piece Type Port Id" + }, + { + "description": "The optional human-readable description of the connection.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional longitudinal gap (applied after rotation and tilt in port direction) between the connected and the connecting piece.", + "name": "Gap", + "nickname": "Gp?", + "kind": "Gap" + }, + { + "description": "The optional lateral shift (applied after rotation and tilt in port direction) between the connected and the connecting piece.", + "name": "Shift", + "nickname": "Sf?", + "kind": "Shift" + }, + { + "description": "The optional vertical rise in port direction between the connected and the connecting piece. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", + "name": "Rise", + "nickname": "Rs?", + "kind": "Rise" + }, + { + "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", + "name": "Rotation", + "nickname": "Rt?", + "kind": "Rotation" + }, + { + "description": "The optional turn perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", + "name": "Turn", + "nickname": "Tu?", + "kind": "Turn" + }, + { + "description": "The optional horizontal tilt perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees.", + "name": "Tilt", + "nickname": "Tl?", + "kind": "Tilt" + }, + { + "description": "The optional offset in x direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", + "name": "X", + "nickname": "X?", + "kind": "X" + }, + { + "description": "The optional offset in y direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", + "name": "Y", + "nickname": "Y?", + "kind": "Y" + }, + { + "description": "The optional attributes of the connection.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Piece", + "description": "Construct, deconstruct or modify a piece", + "nickname": "~Pce", + "inputs": [ + { + "description": "The optional piece to deconstruct or modify.", + "name": "Piece", + "nickname": "Pc?", + "kind": "Piece" + }, + { + "description": "Whether the piece should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "Id of the piece.", + "name": "Id", + "nickname": "Id", + "kind": "Id" + }, + { + "description": "The optional human-readable description of the piece.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "Name of the type of the piece.", + "name": "Type Name", + "nickname": "Na", + "kind": "Type Name" + }, + { + "description": "The optional variant of the type of the piece. No variant means the default variant.", + "name": "Type Variant", + "nickname": "Vn?", + "kind": "Type Variant" + }, + { + "description": "The optional plane of the piece. When pieces are connected only one piece can have a plane.", + "name": "Plane", + "nickname": "Pn?", + "kind": "Plane" + }, + { + "description": "The optional center of the piece in the diagram. When pieces are connected only one piece can have a center.", + "name": "Center", + "nickname": "Ce?", + "kind": "Center" + }, + { + "description": "Whether the piece is hidden. A hidden piece is not visible in the model.", + "name": "Hidden", + "nickname": "Hi?", + "kind": "Hidden" + }, + { + "description": "Whether the piece is locked. A locked piece cannot be edited.", + "name": "Locked", + "nickname": "Lk?", + "kind": "Locked" + }, + { + "description": "The optional attributes of the piece.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified piece.", + "name": "Piece", + "nickname": "Pc", + "kind": "Piece" + }, + { + "description": "True if the piece is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "Id of the piece.", + "name": "Id", + "nickname": "Id", + "kind": "Id" + }, + { + "description": "The optional human-readable description of the piece.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "Name of the type of the piece.", + "name": "Type Name", + "nickname": "Na", + "kind": "Type Name" + }, + { + "description": "The optional variant of the type of the piece. No variant means the default variant.", + "name": "Type Variant", + "nickname": "Vn?", + "kind": "Type Variant" + }, + { + "description": "The optional plane of the piece. When pieces are connected only one piece can have a plane.", + "name": "Plane", + "nickname": "Pn?", + "kind": "Plane" + }, + { + "description": "The optional center of the piece in the diagram. When pieces are connected only one piece can have a center.", + "name": "Center", + "nickname": "Ce?", + "kind": "Center" + }, + { + "description": "Whether the piece is hidden. A hidden piece is not visible in the model.", + "name": "Hidden", + "nickname": "Hi?", + "kind": "Hidden" + }, + { + "description": "Whether the piece is locked. A locked piece cannot be edited.", + "name": "Locked", + "nickname": "Lk?", + "kind": "Locked" + }, + { + "description": "The optional attributes of the piece.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Port", + "description": "Construct, deconstruct or modify a port", + "nickname": "~Por", + "inputs": [ + { + "description": "The optional port to deconstruct or modify.", + "name": "Port", + "nickname": "Po?", + "kind": "Port" + }, + { + "description": "Whether the port should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The optional local identifier of the port within the type. No id means the default port.", + "name": "Id", + "nickname": "Id?", + "kind": "Id" + }, + { + "description": "The optional human-readable description of the port.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "Whether the port is mandatory. A mandatory port must be connected in a design.", + "name": "Mandatory", + "nickname": "Ma?", + "kind": "Mandatory" + }, + { + "description": "The optional family of the port. This allows to define explicit compatibility with other ports.", + "name": "Family", + "nickname": "Fa?", + "kind": "Family" + }, + { + "description": "The optional other compatible families of the port. An empty list means this port is compatible with all other ports.", + "name": "CompatibleFamilies", + "nickname": "CF*", + "kind": "CompatibleFamilies" + }, + { + "description": "The connection point of the port that is attracted to another connection point.", + "name": "Point", + "nickname": "Pt", + "kind": "Point" + }, + { + "description": "The direction of the port. When another piece connects the direction of the other port is flipped and then the pieces are aligned.", + "name": "Direction", + "nickname": "Dr", + "kind": "Direction" + }, + { + "description": "The parameter t [0,1[ where the port will be shown on the ring of a piece in the diagram. It starts at 12 o`clock and turns clockwise.", + "name": "T", + "nickname": "T", + "kind": "T" + }, + { + "description": "The optional attributes of the port.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified port.", + "name": "Port", + "nickname": "Po", + "kind": "Port" + }, + { + "description": "True if the port is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The optional local identifier of the port within the type. No id means the default port.", + "name": "Id", + "nickname": "Id?", + "kind": "Id" + }, + { + "description": "The optional human-readable description of the port.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "Whether the port is mandatory. A mandatory port must be connected in a design.", + "name": "Mandatory", + "nickname": "Ma?", + "kind": "Mandatory" + }, + { + "description": "The optional family of the port. This allows to define explicit compatibility with other ports.", + "name": "Family", + "nickname": "Fa?", + "kind": "Family" + }, + { + "description": "The optional other compatible families of the port. An empty list means this port is compatible with all other ports.", + "name": "CompatibleFamilies", + "nickname": "CF*", + "kind": "CompatibleFamilies" + }, + { + "description": "The connection point of the port that is attracted to another connection point.", + "name": "Point", + "nickname": "Pt", + "kind": "Point" + }, + { + "description": "The direction of the port. When another piece connects the direction of the other port is flipped and then the pieces are aligned.", + "name": "Direction", + "nickname": "Dr", + "kind": "Direction" + }, + { + "description": "The parameter t [0,1[ where the port will be shown on the ring of a piece in the diagram. It starts at 12 o`clock and turns clockwise.", + "name": "T", + "nickname": "T", + "kind": "T" + }, + { + "description": "The optional attributes of the port.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Representation", + "description": "Construct, deconstruct or modify a representation", + "nickname": "~Rep", + "inputs": [ + { + "description": "The optional representation to deconstruct or modify.", + "name": "Representation", + "nickname": "Rp?", + "kind": "Representation" + }, + { + "description": "Whether the representation should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "Ur", + "kind": "Url" + }, + { + "description": "The optional human-readable description of the representation.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + }, + { + "description": "The optional attributes of the representation.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "outputs": [ + { + "description": "The constructed or modified representation.", + "name": "Representation", + "nickname": "Rp", + "kind": "Representation" + }, + { + "description": "True if the representation is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "Ur", + "kind": "Url" + }, + { + "description": "The optional human-readable description of the representation.", + "name": "Description", + "nickname": "Dc?", + "kind": "Description" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + }, + { + "description": "The optional attributes of the representation.", + "name": "Attributes", + "nickname": "At*", + "kind": "Attributes" + } + ], + "icon": "" + }, + { + "name": "Model Attribute", + "description": "Construct, deconstruct or modify a attribute", + "nickname": "~Atr", + "inputs": [ + { + "description": "The optional attribute to deconstruct or modify.", + "name": "Attribute", + "nickname": "At?", + "kind": "Attribute" + }, + { + "description": "Whether the attribute should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The name of the attribute.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value [ text | url ] of the attribute. No value is equivalent to true.", + "name": "Value", + "nickname": "Vl?", + "kind": "Value" + }, + { + "description": "The optional unit of the value of the attribute.", + "name": "Unit", + "nickname": "Ut?", + "kind": "Unit" + }, + { + "description": "The optional definition [ text | uri ] of the attribute.", + "name": "Definition", + "nickname": "Df?", + "kind": "Definition" + } + ], + "outputs": [ + { + "description": "The constructed or modified attribute.", + "name": "Attribute", + "nickname": "At", + "kind": "Attribute" + }, + { + "description": "True if the attribute is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The name of the attribute.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value [ text | url ] of the attribute. No value is equivalent to true.", + "name": "Value", + "nickname": "Vl?", + "kind": "Value" + }, + { + "description": "The optional unit of the value of the attribute.", + "name": "Unit", + "nickname": "Ut?", + "kind": "Unit" + }, + { + "description": "The optional definition [ text | uri ] of the attribute.", + "name": "Definition", + "nickname": "Df?", + "kind": "Definition" + } + ], + "icon": "" + }, + { + "name": "Model DiagramPoint", + "description": "Construct, deconstruct or modify a diagrampoint", + "nickname": "~DPt", + "inputs": [ + { + "description": "The optional diagrampoint to deconstruct or modify.", + "name": "DiagramPoint", + "nickname": "DP?", + "kind": "DiagramPoint" + }, + { + "description": "Whether the diagrampoint should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The x-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", + "name": "X", + "nickname": "X", + "kind": "X" + }, + { + "description": "The y-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", + "name": "Y", + "nickname": "Y", + "kind": "Y" + } + ], + "outputs": [ + { + "description": "The constructed or modified diagrampoint.", + "name": "DiagramPoint", + "nickname": "DP", + "kind": "DiagramPoint" + }, + { + "description": "True if the diagrampoint is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The x-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", + "name": "X", + "nickname": "X", + "kind": "X" + }, + { + "description": "The y-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", + "name": "Y", + "nickname": "Y", + "kind": "Y" + } + ], + "icon": "" + }, + { + "name": "Model Location", + "description": "Construct, deconstruct or modify a location", + "nickname": "~Loc", + "inputs": [ + { + "description": "The optional location to deconstruct or modify.", + "name": "Location", + "nickname": "Lc?", + "kind": "Location" + }, + { + "description": "Whether the location should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The longitude of the location in degrees.", + "name": "Longitude", + "nickname": "Lo", + "kind": "Longitude" + }, + { + "description": "The latitude of the location in degrees.", + "name": "Latitude", + "nickname": "La", + "kind": "Latitude" + } + ], + "outputs": [ + { + "description": "The constructed or modified location.", + "name": "Location", + "nickname": "Lc", + "kind": "Location" + }, + { + "description": "True if the location is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The longitude of the location in degrees.", + "name": "Longitude", + "nickname": "Lo", + "kind": "Longitude" + }, + { + "description": "The latitude of the location in degrees.", + "name": "Latitude", + "nickname": "La", + "kind": "Latitude" + } + ], + "icon": "" + }, + { + "name": "Model Author", + "description": "Construct, deconstruct or modify an author", + "nickname": "~Aut", + "inputs": [ + { + "description": "The optional author to deconstruct or modify.", + "name": "Author", + "nickname": "Au?", + "kind": "Author" + }, + { + "description": "Whether the author should be validated.", + "name": "Validate", + "nickname": "Vd?", + "kind": "Validate" + }, + { + "description": "The name of the author.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The email of the author.", + "name": "Email", + "nickname": "Em", + "kind": "Email" + } + ], + "outputs": [ + { + "description": "The constructed or modified author.", + "name": "Author", + "nickname": "Au", + "kind": "Author" + }, + { + "description": "True if the author is valid. Null if no validation was performed.", + "name": "Valid", + "nickname": "Vd?", + "kind": "Valid" + }, + { + "description": "The name of the author.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The email of the author.", + "name": "Email", + "nickname": "Em", + "kind": "Email" + } + ], + "icon": "" + } + ] + }, + "Integrations": { + "1": [ + { + "name": "Design to Block", + "description": "Bake the design to blocks: by selecting a representation with mime and tags and turn it to block-definitions and flatten the design and turn every piece into a block-definition with the plane as it transform.", + "icon": "icon", + "nickname": "Dsn\u2192Bl", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Ob", + "kind": "Data" + }, + { + "description": "The Multipurpose Internet Mail Extensions (MIME) type of the content of the file of the representation.", + "name": "Mime", + "nickname": "Mm", + "kind": "Mime" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + } + ], + "outputs": [ + { + "description": "Contains a collection of model block definitions", + "name": "Model Block Definition", + "nickname": "Block Definition", + "kind": "Model Block Definition" + }, + { + "description": "Contains a collection of block instances", + "name": "Block Instance", + "nickname": "Block Instance", + "kind": "Block Instance" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ] + }, + { + "name": "Pieces to Group", + "description": "Convert every piece to a group. If you need more a sophisticated approach where you can switch between represenstations and don't waste space use: Design to Block", + "icon": "icon", + "nickname": "\u2192Grp", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of geometric groups", + "name": "Group", + "nickname": "Gr", + "kind": "Group" + } + ], + "outputs": [ + { + "description": "Contains a collection of geometric groups", + "name": "Group", + "nickname": "Gr", + "kind": "Group" + } + ] + } + ], + "2": [ + { + "name": "GitHub Kit", + "description": "Get the uri and the homepage of the remote kit of a specific version (either a branch name, a tag name or a commit sha) for a kit hosted as a repository on GitHub. If you don't want the main branch, you have to clear the branch param.", + "icon": "icon", + "nickname": "GHbKit", + "inputs": [ + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Domain", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Account", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Repo", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Branch", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Tag", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Commit", + "kind": "Text" + } + ], + "outputs": [ + { + "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", + "name": "Remote", + "nickname": "Rm?", + "kind": "Remote" + }, + { + "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", + "name": "Homepage", + "nickname": "Hp?", + "kind": "Homepage" + } + ] + }, + { + "name": "GitLab Kit", + "description": "Get the uri and the homepage of the remote kit of a specific version (either a branch name, a tag name or a commit sha) for a kit hosted as a repository on GitLab. If you don't want the main branch, you have to clear the branch param.", + "icon": "icon", + "nickname": "GLbKit", + "inputs": [ + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Domain", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Account", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Repo", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Branch", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Tag", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Commit", + "kind": "Text" + } + ], + "outputs": [ + { + "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", + "name": "Remote", + "nickname": "Rm?", + "kind": "Remote" + }, + { + "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", + "name": "Homepage", + "nickname": "Hp?", + "kind": "Homepage" + } + ] + } + ], + "3": [ + { + "name": "Type to PART", + "description": "Convert a semio type to a Wasp PART. In semio connections are parametric (rotation, gap, tilt, shift) which can't be translated because Wasp CONN are statically defined by a plane. You can lock this degree of freedom by providing an additional rotation to each port. @devs If you want to debug this cluster, lock the solver (otherwise your Rhino might crash due to a Grasshopper bug) and look at the instructions inside. Password: debug", + "icon": "icon", + "nickname": "Typ\u2192PART", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Ob", + "kind": "Data" + }, + { + "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", + "name": "Rotation", + "nickname": "Rt?", + "kind": "Rotation" + } + ], + "outputs": [ + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "RULES", + "kind": "Data" + }, + { + "description": "OPTIONAL // Custom connection grammar with format \"ConnType\">\"ConnType\"", + "name": "GR", + "nickname": "GR", + "kind": "GR" + } + ] + }, + { + "name": "Filter PART", + "description": "Filter PARTs with indices. RULEs are also filtered to only include those with filtered PARTs.", + "icon": "icon", + "nickname": "|PART", + "inputs": [ + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "RULES", + "kind": "Data" + }, + { + "description": "Contains a collection of integer numbers", + "name": "Integer", + "nickname": "i", + "kind": "Integer" + } + ], + "outputs": [ + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "RULES", + "kind": "Data" + } + ] + }, + { + "name": "AGGR to Design", + "description": "Convert a Wasp aggregation (AGGR) to a semio design.", + "icon": "icon", + "nickname": "AGGR\u2192Dsn", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "AGGR", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART_OUT", + "kind": "Data" + }, + { + "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", + "name": "Rotation", + "nickname": "Rt?", + "kind": "Rotation" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + }, + { + "name": "Design to AGGR", + "description": "Convert a semio design to a Wasp aggregation (AGGR).", + "icon": "icon", + "nickname": "Dsn\u2192AGGR", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART", + "kind": "Data" + }, + { + "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", + "name": "Rotation", + "nickname": "Rt?", + "kind": "Rotation" + }, + { + "description": "Recompute the whole aggregation", + "name": "RESET", + "nickname": "RESET", + "kind": "RESET" + } + ], + "outputs": [ + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "AGGR", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART_OUT", + "kind": "Data" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "PART_OUT_FLAT", + "kind": "Data" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "GR", + "kind": "Text" + } + ] + } + ], + "4": [ + { + "name": "Types to Modules", + "description": "Convert semio types to Monoceros modules.", + "icon": "icon", + "nickname": "\u2192Mods", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty+", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Ob", + "kind": "Data" + }, + { + "description": "Vector specifying single Module Part dimensionsin base-plane-aligned XYZ axes. The Module Part Diagonal must match Envelope's Slot diagonals.", + "name": "Module Part Diagonal", + "nickname": "D", + "kind": "Module Part Diagonal" + } + ], + "outputs": [ + { + "description": "Contains a collection of Monoceros Modules.", + "name": "Module", + "nickname": "M", + "kind": "Module" + }, + { + "description": "Contains a collection of Monoceros Rules.", + "name": "Rule", + "nickname": "R", + "kind": "Rule" + } + ] + }, + { + "name": "Slots to Design", + "description": "Convert Monoceros slots to a semio design.", + "icon": "icon", + "nickname": "Slts\u2192", + "inputs": [ + { + "description": "Contains a collection of Monoceros Slots.", + "name": "Slot", + "nickname": "S", + "kind": "Slot" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + } + ] + } + ] + }, + "Display": { + "1": [ + { + "name": "Preview Connections", + "description": "Preview all connections of a design by visualizing the ports of the types and the connection parameters.", + "icon": "icon", + "nickname": ":Con", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Sc", + "kind": "Number" + } + ] + }, + { + "name": "Preview Design", + "description": "Preview the pieces and connections of a design.", + "icon": "icon", + "nickname": ":Dsn", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Ob", + "kind": "Data" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Sc", + "kind": "Number" + } + ] + }, + { + "name": "Preview Geometry", + "description": "Preview geometry by ungrouping everything, showing light surfaces and dark edges.", + "icon": "icon", + "nickname": ":Geo", + "inputs": [ + { + "description": "Contains a collection of generic geometry", + "name": "Geometry", + "nickname": "Geo", + "kind": "Geometry" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Sc", + "kind": "Number" + } + ] + }, + { + "name": "Preview Pieces", + "description": "Preview pieces in a design. Use tags to select matching representations of the types of the pieces.", + "icon": "icon", + "nickname": ":Pce", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Ob", + "kind": "Data" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Sc", + "kind": "Number" + } + ] + }, + { + "name": "Preview Port", + "description": "Preview a port by showing the point and direction and if exists: id, family and compatible families.", + "icon": "icon", + "nickname": ":Prv", + "inputs": [ + { + "description": "A port is a connection point (with a direction) of a type.", + "name": "Port", + "nickname": "Po", + "kind": "Port" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Sc", + "kind": "Number" + } + ] + } + ], + "2": [ + { + "name": "Draw Diagram", + "description": "Draw the diagram of the design.", + "nickname": ":Dgm", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Types that are used by the pieces in the design.", + "name": "Types", + "nickname": "Ty+", + "kind": "Types" + }, + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to create the diagram of the design.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "The diagram as a Scalable Vector Graphics (SVG).", + "name": "Scalable Vector Graphics", + "nickname": "SVG", + "kind": "Scalable Vector Graphics" + } + ], + "icon": "" + } + ] + }, + "Assistant": { + "1": [ + { + "name": "Assess Performance", + "description": "Simple performance assement based on the following attributes of the types (No unit conversion is applied for now, so make sure that all your types have the values with the same unit.): floor area, effective floor area, residents, workspaces, construction cost, maintenance expenses, income, transmission heat loss, ventilation heat loss, cooling energy demand, technical equipment energy demand,construction global warming potential, heating load, cooling load, ventilation air flow volume", + "icon": "icon", + "nickname": "!Prf", + "inputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": null, + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Technical Equipment Cost [\u20ac]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Technical Equipment GWP [kgCO2e]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Ventilation Heat Recovery Factor", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Efficiency Factor", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Primary Energy Factor", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Energy Price [\u20ac/kWh]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Global Warming Potential [kgCO2e/kWh]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Efficiency Factor", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Primary Energy Factor", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Global Warming Potential [kgCO2e/kWh]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Energy Price [\u20ac/kWh]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Electrictiy Primary Energy Factor", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Electrictiy Global Warming Potential [kgCO2e/kWh]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Electrictiy Energy Price [\u20ac/kWh]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "CO2 Price [\u20ac/tCO2e]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Life Cycle [a]", + "kind": "Number" + } + ], + "outputs": [ + { + "description": null, + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Interest [%]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Area Efficiency [eff. m\u00b2/m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Area Comfort [m\u00b2/Person]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Income[\u20ac/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Expenses [\u20ac/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Energy Expenses [\u20ac/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Effective Floor Area [m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Floor Area [m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Users [Person]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Construction Cost [\u20ac]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Construction Cost [\u20ac/m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Construction Cost per User [\u20ac/Person]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Life Cycle Cost [\u20ac]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Life Cycle Cost [\u20ac/m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Life Cycle Cost per User [\u20ac/Person]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Construction Global Warming Potential [kgCO2e]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Construction Global Warming Potential [kgCO2e/m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Construction Global Warming Potential per User [kgCO2e/Person]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Life Cycle Global Warming Potential [kgCO2e]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Life Cycle Global Warming Potential [kgCO2e/m\u00b2]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Life Cycle Global Warming Potential per User [kgCO2e/Person]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Primary Energy Demand [kWh/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Primary Energy Demand [kWh/m\u00b2a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Primary Energy Demand per User [kWh/Person a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Final Energy Demand [kWh/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Final Energy Demand [kWh/m\u00b2a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Final Energy Demand per User [kWh/Person a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Load [kW]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Energy Demand [kWh/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Heating Energy Demand [kWh/m\u00b2a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Heating Energy Demand per User [kWh/Person a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Load [kW]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Energy Demand [kWh/a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Specific Cooling Energy Demand [kWh/m\u00b2a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Cooling Energy Demand per User [kWh/Person a]", + "kind": "Number" + }, + { + "description": "Contains a collection of floating point numbers", + "name": "Number", + "nickname": "Ventilation Air Flow Volume [m\u00b3/s]", + "kind": "Number" + } + ] + }, + { + "name": "Predict Design", + "description": "Predict a design.", + "nickname": "%Dsn", + "inputs": [ + { + "description": "The description of the design or an instruction how to change the base design.", + "name": "Description", + "nickname": "Dc", + "kind": "Description" + }, + { + "description": "The types to use in the design.", + "name": "Types", + "nickname": "Ty+", + "kind": "Types" + }, + { + "description": "The optional design to use a base.", + "name": "Design", + "nickname": "Dn?", + "kind": "Design" + }, + { + "description": "True to predict the design.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the design was successfully predicted. False otherwise.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + }, + { + "description": "Predicted design.", + "name": "Design", + "nickname": "Dsn", + "kind": "Design" + } + ], + "icon": "" + } + ] + }, + "Persistence": { + "1": [ + { + "name": "Cache Kit", + "description": "Cache a kit by downloading the remote kit with all remote representations.", + "icon": "icon", + "nickname": "\u2193Kit", + "inputs": [ + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to load the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "Ur", + "kind": "Url" + }, + { + "description": "Contains a collection of generic data", + "name": "Data", + "nickname": "Objects", + "kind": "Data" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "UrPa", + "kind": "Url" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "UrPaLc", + "kind": "Url" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "UrPaRe", + "kind": "Url" + } + ] + }, + { + "name": "Cache Representation", + "description": "Download and cache a remote representation.", + "nickname": "\u2193Rep", + "inputs": [ + { + "description": "Unique Resource Locator (URL) of the remote representation.", + "name": "Url", + "nickname": "Ur", + "kind": "Url" + }, + { + "description": "True to downloaded and cache the remote representation.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "Path to the cached representation.", + "name": "Path", + "nickname": "Pa", + "kind": "Path" + }, + { + "description": "True if the representation was successfully downloaded and cached.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Load Design", + "description": "Load the design. If the representations are urls to files then the objects are loaded for a certain level of details and tags.", + "icon": "icon", + "nickname": "/Dsn", + "inputs": [ + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "The name of the design.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value of the design.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The optional view of the design. No view means the default view.", + "name": "View", + "nickname": "Vw?", + "kind": "View" + }, + { + "description": "The Multipurpose Internet Mail Extensions (MIME) type of the content of the file of the representation.", + "name": "Mime", + "nickname": "Mm", + "kind": "Mime" + }, + { + "description": "The optional Level of Detail/Development/Design (LoD) of the representation. No lod means default.", + "name": "Lod", + "nickname": "Ld?", + "kind": "Lod" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + }, + { + "description": "True to load the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Contains a collection of model objects", + "name": "Model Object", + "nickname": "Object", + "kind": "Model Object" + }, + { + "description": "Contains a collection of display materials", + "name": "Shader", + "nickname": "Shader", + "kind": "Shader" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "Ur", + "kind": "Url" + }, + { + "description": "Contains a collection of file paths", + "name": "File Path", + "nickname": "Path", + "kind": "File Path" + }, + { + "description": "Id of the piece.", + "name": "Id", + "nickname": "Id", + "kind": "Id" + }, + { + "description": "Contains a collection of three-dimensional axis-systems", + "name": "Plane", + "nickname": "Pln", + "kind": "Plane" + } ] - }, - "Templates": { - "2": [ - { - "name": "Linear Connections", - "description": "Create an array of linear connections (for n pieces this creates n-1 connections) where every piece is connected with the next piece. The spacing units are connections.", - "icon": "icon", - "nickname": "\u2026Cons", - "inputs": [ - { - "description": null, - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": "A bidirectional connection between two pieces of a design.", - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - } - ], - "outputs": [ - { - "description": null, - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - } - ] - }, - { - "name": "Opinionated Quality", - "description": "Construct an opinionated quality with a standard name.", - "icon": "icon", - "nickname": "\u219dQal", - "inputs": [ - { - "description": "The name of the quality.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value [ text | url ] of the quality. No value is equivalent to true for the name.", - "name": "Value", - "nickname": "Vl?", - "kind": "Value" - }, - { - "description": "Contains a collection of boolean values", - "name": "Boolean", - "nickname": "Im", - "kind": "Boolean" - } - ], - "outputs": [ - { - "description": "A quality is a named value with a unit and a definition.", - "name": "Quality", - "nickname": "Ql", - "kind": "Quality" - } - ] - }, - { - "name": "Random Ids", - "description": "Generate random ids.", - "nickname": "%Ids", - "inputs": [ - { - "description": "Number of ids to generate.", - "name": "Count", - "nickname": "Ct", - "kind": "Count" - }, - { - "description": "Seed for the random generator.", - "name": "Seed", - "nickname": "Se", - "kind": "Seed" - }, - { - "description": "If true, the generated ids will be unique for this component.", - "name": "Unique Component", - "nickname": "UC", - "kind": "Unique Component" - } - ], - "outputs": [ - { - "description": "Generated ids.", - "name": "Ids", - "nickname": "Id+", - "kind": "Ids" - } - ], - "icon": "" - } + }, + { + "name": "Load Geometry", + "description": "Load local geometry from absolute file paths to planes.", + "icon": "icon", + "nickname": "/Geo", + "inputs": [ + { + "description": "Contains a collection of file paths", + "name": "File Path", + "nickname": "Path", + "kind": "File Path" + }, + { + "description": "Contains a collection of three-dimensional axis-systems", + "name": "Plane", + "nickname": "Pln", + "kind": "Plane" + }, + { + "description": "Contains a collection of boolean values", + "name": "Boolean", + "nickname": "Run", + "kind": "Boolean" + } + ], + "outputs": [ + { + "description": "Contains a collection of model objects", + "name": "Model Object", + "nickname": "Object", + "kind": "Model Object" + }, + { + "description": "Contains a collection of RGB colours", + "name": "Colour", + "nickname": "Col", + "kind": "Colour" + }, + { + "description": "Contains a collection of display materials", + "name": "Shader", + "nickname": "Shader", + "kind": "Shader" + } ] - }, - "Selecting": { - "1": [ - { - "name": "Select Kit", - "description": "Select a kit with a name and an optional version.\nIf no version is provided it will select all variants.\nIf you want to select the default version then use the empty text.", - "icon": "icon", - "nickname": "?Kit", - "inputs": [ - { - "description": "A kit is a collection of types and designs.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - }, - { - "description": "The name of the kit.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional version of the kit. No version means the latest version.", - "name": "Version", - "nickname": "Vr?", - "kind": "Version" - } - ], - "outputs": [ - { - "description": "A kit is a collection of types and designs.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Design", - "description": "Select a design with a name, an optional variant and an optional view.\nIf no variant is provided it will select all variants.\nIf you want to select the default variant then use the empty text.\nIf no view is provided it will select all views.\nIf you want to select the default view then use the empty text.", - "icon": "icon", - "nickname": "?Dsn", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "The name of the design.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value of the design.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional view of the design. No view means the default view.", - "name": "View", - "nickname": "Vw?", - "kind": "View" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Type", - "description": "Select a type with a name and an optional variant. If no variant is provided it will select all variants. If you want to select the default type then use the empty text.", - "icon": "icon", - "nickname": "?Typ", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "The name of the type.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value of the type.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - } - ], - "outputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Type by Piece", - "description": "Select the type of a piece.", - "icon": "icon", - "nickname": "?Typ", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - } - ], - "outputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Connection", - "description": "Select a connection with the connected id and the connecting id. The connections are symetric, so if the conected is the connecting and vice versa it will still selct them.", - "icon": "icon", - "nickname": "?Con", - "inputs": [ - { - "description": "A connection between two pieces in a design.", - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - }, - { - "description": "Id of the connected piece of the side.", - "name": "Connected Piece Id", - "nickname": "CdPc", - "kind": "Connected Piece Id" - }, - { - "description": "Id of the connected piece of the side.", - "name": "Connecting Piece Id", - "nickname": "CgPc", - "kind": "Connecting Piece Id" - } - ], - "outputs": [ - { - "description": "A connection between two pieces in a design.", - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - }, - { - "description": "Contains a collection of boolean values", - "name": "Boolean", - "nickname": "Fl", - "kind": "Boolean" - } - ] - }, - { - "name": "Select Pieces", - "description": "Select pieces of a certain type. If no variant is provided it will select all variants. If you want to select the default type then use the empty text.", - "icon": "icon", - "nickname": "?Pces", - "inputs": [ - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": "The name of the type.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value of the type.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - } - ], - "outputs": [ - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - } - ] - }, - { - "name": "Select Piece", - "description": "Select a piece with the id.", - "icon": "icon", - "nickname": "?Pce", - "inputs": [ - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": "Id of the piece.", - "name": "Id", - "nickname": "Id", - "kind": "Id" - } - ], - "outputs": [ - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Fixed", - "description": "Select a fixed piece. A piece is fixed when it has a plane (and a center).", - "icon": "icon", - "nickname": "?Fix", - "inputs": [ - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - } - ], - "outputs": [ - { - "description": "A piece is a 3d-instance of a type in a design.", - "name": "Piece", - "nickname": "Fx", - "kind": "Piece" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Port", - "description": "Select a port with the id. If no port matches, null is returned.", - "icon": "icon", - "nickname": "?Por", - "inputs": [ - { - "description": "A port is a connection point (with a direction) of a type.", - "name": "Port", - "nickname": "Po", - "kind": "Port" - }, - { - "description": "The optional local identifier of the port within the type. No id means the default port.", - "name": "Id", - "nickname": "Id?", - "kind": "Id" - } - ], - "outputs": [ - { - "description": "A port is a connection point (with a direction) of a type.", - "name": "Port", - "nickname": "Po", - "kind": "Port" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Representation", - "description": "Select exactly one representation based on tags. The tag matching is based on the highest Jaccard index (|\u2229|/|\u222a|).", - "icon": "icon", - "nickname": "?Rep", - "inputs": [ - { - "description": "A representation is a link to a resource that describes a type for a certain level of detail and tags.", - "name": "Representation", - "nickname": "Rp", - "kind": "Representation" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - } - ], - "outputs": [ - { - "description": "A representation is a link to a resource that describes a type for a certain level of detail and tags.", - "name": "Representation", - "nickname": "Rp", - "kind": "Representation" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Select Quality", - "description": "Select a quality by its name. If no quality matches, null is returned.", - "icon": "icon", - "nickname": "?Qal", - "inputs": [ - { - "description": "A quality is a named value with a unit and a definition.", - "name": "Quality", - "nickname": "Ql", - "kind": "Quality" - }, - { - "description": "The name of the quality.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - } - ], - "outputs": [ - { - "description": "A quality is a named value with a unit and a definition.", - "name": "Quality", - "nickname": "Ql", - "kind": "Quality" - } - ] - } + }, + { + "name": "Load Kit", + "description": "Load a kit.", + "nickname": "/Kit", + "inputs": [ + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to load the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the kit was successfully loaded. False otherwise.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + }, + { + "description": "A kit is a collection of types and designs.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + }, + { + "description": "The optional local directory of the kit. This applies to local kits and cached remote kits.", + "name": "Local Directory", + "nickname": "Di", + "kind": "Local Directory" + } + ], + "icon": "" + }, + { + "name": "Load Type", + "description": "Load the type. If the representations are urls to files then the geometry is loaded for a certain level of details and tags.", + "icon": "icon", + "nickname": "/Typ", + "inputs": [ + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "The name of the type.", + "name": "Name", + "nickname": "Na", + "kind": "Name" + }, + { + "description": "The optional value of the type.", + "name": "Variant", + "nickname": "Vn?", + "kind": "Variant" + }, + { + "description": "The Multipurpose Internet Mail Extensions (MIME) type of the content of the resource of the representation.", + "name": "Mime", + "nickname": "Mm", + "kind": "Mime" + }, + { + "description": "The optional Level of Detail/Development/Design (LoD) of the representation. No lod means default.", + "name": "Lod", + "nickname": "Ld?", + "kind": "Lod" + }, + { + "description": "The optional tags to group representations. No tags means default.", + "name": "Tags", + "nickname": "Tg*", + "kind": "Tags" + }, + { + "description": "True to load the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Contains a collection of model objects", + "name": "Model Object", + "nickname": "Object", + "kind": "Model Object" + }, + { + "description": "Contains a collection of display materials", + "name": "Shader", + "nickname": "Shader", + "kind": "Shader" + }, + { + "description": "The Unique Resource Locator (URL) to the resource of the representation.", + "name": "Url", + "nickname": "Ur", + "kind": "Url" + }, + { + "description": "Contains a collection of file paths", + "name": "File Path", + "nickname": "Path", + "kind": "File Path" + } ] - }, - "Scripting": { - "3": [ - { - "name": "Deserialize Kit", - "description": "Deserialize a kit.", - "nickname": "Txt", - "inputs": [ - { - "description": "Text to encode.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - }, - { - "description": "0: url safe encoding ()\n1: base64 encoding\n2: replace only", - "name": "Mode", - "nickname": "Mo", - "kind": "Mode" - }, - { - "description": "Forbidden text that will be replaced after encoding.", - "name": "Forbidden", - "nickname": "Fb", - "kind": "Forbidden" - }, - { - "description": "Placeholder text that replaces the forbidden text after encoding.", - "name": "Replace", - "nickname": "Re", - "kind": "Replace" - } - ], - "outputs": [ - { - "description": "Encoded text.", - "name": "Encoded Text", - "nickname": "En", - "kind": "Encoded Text" - } - ], - "icon": "" - }, - { - "name": "Normalize Text", - "description": "Normalizes a text to different formats.", - "nickname": "\u21d2Txt", - "inputs": [ - { - "description": "Text to normalize.", - "name": "Text", - "nickname": "Txt", - "kind": "Text" - } - ], - "outputs": [ - { - "description": "Strictly alphanumerical text that either strips characters or turn them into underscores.", - "name": "Strict", - "nickname": "St", - "kind": "Strict" - }, - { - "description": "Titelized text by capitalizing and unifying casing.", - "name": "Title", - "nickname": "Ti", - "kind": "Title" - }, - { - "description": "Underscorized text by lowercasing everything and replacing spaces with underscores.", - "name": "Underscore", - "nickname": "Un", - "kind": "Underscore" - }, - { - "description": "Kebaberized text by lowercasing everything and replacing spaces with dashes.", - "name": "Kebab", - "nickname": "Kb", - "kind": "Kebab" - }, - { - "description": "Pascalized text by capitalizing and removing spaces.", - "name": "Pascal", - "nickname": "Pa", - "kind": "Pascal" - } - ], - "icon": "" - }, - { - "name": "Truncate Text", - "description": "Truncates text by length and an optional termination.", - "nickname": "\u2026Txt", - "inputs": [ - { - "description": "Text to truncate.", - "name": "Text", - "nickname": "Txt", - "kind": "Text" - }, - { - "description": "Maximum length of the text.", - "name": "Length", - "nickname": "Le", - "kind": "Length" - }, - { - "description": "Optional termination to append to the truncated text.", - "name": "Termination", - "nickname": "Tr", - "kind": "Termination" - } - ], - "outputs": [ - { - "description": "Fixed length truncated text including the truncation text length.", - "name": "Strict", - "nickname": "St", - "kind": "Strict" - }, - { - "description": "Fixed alphanumeric character length truncated text including the truncation text length", - "name": "Characters", - "nickname": "Crs", - "kind": "Characters" - }, - { - "description": "Fixed word length truncated text.", - "name": "Words", - "nickname": "Wds", - "kind": "Words" - } - ], - "icon": "" - }, - { - "name": "Objects to Text", - "description": "Converts a list of objects to a human-readable text.", - "nickname": "Objs\u2192Txt", - "inputs": [ - { - "description": "Objects to humanize.", - "name": "Objects", - "nickname": "Ob+", - "kind": "Objects" - } - ], - "outputs": [ - { - "description": "Human-readable text.", - "name": "Humanized Text", - "nickname": "Tx", - "kind": "Humanized Text" - } - ], - "icon": "" - } - ], - "2": [ - { - "name": "Serialize Kit", - "description": "Serialize a kit.", - "nickname": ">Kit", - "inputs": [ - { - "description": "The kit to serialize.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - }, - { - "description": "The optional indent unit for the serialized kit. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Kit.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Design", - "description": "Serialize a design.", - "nickname": ">Dsn", - "inputs": [ - { - "description": "The design to serialize.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "The optional indent unit for the serialized design. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Design.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Type", - "description": "Serialize a type.", - "nickname": ">Typ", - "inputs": [ - { - "description": "The type to serialize.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "The optional indent unit for the serialized type. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Type.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Connection", - "description": "Serialize a connection.", - "nickname": ">Con", - "inputs": [ - { - "description": "The connection to serialize.", - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - }, - { - "description": "The optional indent unit for the serialized connection. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Connection.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Piece", - "description": "Serialize a piece.", - "nickname": ">Pce", - "inputs": [ - { - "description": "The piece to serialize.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": "The optional indent unit for the serialized piece. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Piece.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Port", - "description": "Serialize a port.", - "nickname": ">Por", - "inputs": [ - { - "description": "The port to serialize.", - "name": "Port", - "nickname": "Po", - "kind": "Port" - }, - { - "description": "The optional indent unit for the serialized port. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Port.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Representation", - "description": "Serialize a representation.", - "nickname": ">Rep", - "inputs": [ - { - "description": "The representation to serialize.", - "name": "Representation", - "nickname": "Rp", - "kind": "Representation" - }, - { - "description": "The optional indent unit for the serialized representation. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Representation.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Quality", - "description": "Serialize a quality.", - "nickname": ">Qal", - "inputs": [ - { - "description": "The quality to serialize.", - "name": "Quality", - "nickname": "Ql", - "kind": "Quality" - }, - { - "description": "The optional indent unit for the serialized quality. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Quality.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize DiagramPoint", - "description": "Serialize a diagrampoint.", - "nickname": ">DPt", - "inputs": [ - { - "description": "The diagrampoint to serialize.", - "name": "DiagramPoint", - "nickname": "DP", - "kind": "DiagramPoint" - }, - { - "description": "The optional indent unit for the serialized diagrampoint. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized DiagramPoint.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Location", - "description": "Serialize a location.", - "nickname": ">Loc", - "inputs": [ - { - "description": "The location to serialize.", - "name": "Location", - "nickname": "Lc", - "kind": "Location" - }, - { - "description": "The optional indent unit for the serialized location. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Location.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - }, - { - "name": "Serialize Author", - "description": "Serialize a author.", - "nickname": ">Aut", - "inputs": [ - { - "description": "The author to serialize.", - "name": "Author", - "nickname": "Au", - "kind": "Author" - }, - { - "description": "The optional indent unit for the serialized author. Empty text for no indent or spaces or tabs", - "name": "Indent", - "nickname": "In?", - "kind": "Indent" - } - ], - "outputs": [ - { - "description": "Text of serialized Author.", - "name": "Text", - "nickname": "Tx", - "kind": "Text" - } - ], - "icon": "" - } + } + ], + "2": [ + { + "name": "Create Kit", + "description": "Create a kit.", + "nickname": "+Kit", + "inputs": [ + { + "description": "A kit is a collection of types and designs.", + "name": "Kit", + "nickname": "Kt", + "kind": "Kit" + }, + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to create the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the kit was successfully created. False otherwise.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Export Block", + "description": "Export geometry with layer names to a file.", + "icon": "icon", + "nickname": "!Blc", + "inputs": [ + { + "description": "Contains a collection of file paths", + "name": "File Path", + "nickname": "Path", + "kind": "File Path" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Name", + "kind": "Text" + }, + { + "description": "Contains a collection of text fragments", + "name": "Text", + "nickname": "Url", + "kind": "Text" + }, + { + "description": "Contains a collection of generic geometry", + "name": "Geometry", + "nickname": "Geo", + "kind": "Geometry" + }, + { + "description": "Layer name", + "name": "Name", + "nickname": "Layer N", + "kind": "Name" + }, + { + "description": "Display Colour", + "name": "Display Colour", + "nickname": "Dc", + "kind": "Display Colour" + }, + { + "description": "Contains a collection of boolean values", + "name": "Boolean", + "nickname": "Export", + "kind": "Boolean" + } + ], + "outputs": [ + { + "description": "Contains a collection of model block definitions", + "name": "Model Block Definition", + "nickname": "Block Definition", + "kind": "Model Block Definition" + }, + { + "description": "Contains a collection of file paths", + "name": "File Path", + "nickname": "Path", + "kind": "File Path" + }, + { + "description": "Contains a collection of boolean values", + "name": "Boolean", + "nickname": "Exported", + "kind": "Boolean" + } ] - }, - "Modeling": { - "1": [ - { - "name": "Model Kit", - "description": "Construct, deconstruct or modify a kit", - "nickname": "~Kit", - "inputs": [ - { - "description": "The optional kit to deconstruct or modify.", - "name": "Kit", - "nickname": "Kt?", - "kind": "Kit" - }, - { - "description": "Whether the kit should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The name of the kit.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human-readable description of the kit.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | logogram | url ] of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional url of the preview image of the kit. The url must point to a landscape image [ png | jpg | svg ] which will be cropped by a 2x1 rectangle. The image must be at least 1920x960 pixels and smaller than 15 MB.", - "name": "Preview", - "nickname": "Pv?", - "kind": "Preview" - }, - { - "description": "The optional version of the kit. No version means the latest version.", - "name": "Version", - "nickname": "Vr?", - "kind": "Version" - }, - { - "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", - "name": "Remote", - "nickname": "Rm?", - "kind": "Remote" - }, - { - "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", - "name": "Homepage", - "nickname": "Hp?", - "kind": "Homepage" - }, - { - "description": "The optional license [ spdx id | url ] of the kit.", - "name": "License", - "nickname": "Li?", - "kind": "License" - }, - { - "description": "The optional types of the kit.", - "name": "Types", - "nickname": "Ty*", - "kind": "Types" - }, - { - "description": "The optional designs of the kit.", - "name": "Designs", - "nickname": "Dn*", - "kind": "Designs" - }, - { - "description": "The optional qualities of the kit.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified kit.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - }, - { - "description": "True if the kit is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The name of the kit.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human-readable description of the kit.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | logogram | url ] of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the kit. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional url of the preview image of the kit. The url must point to a landscape image [ png | jpg | svg ] which will be cropped by a 2x1 rectangle. The image must be at least 1920x960 pixels and smaller than 15 MB.", - "name": "Preview", - "nickname": "Pv?", - "kind": "Preview" - }, - { - "description": "The optional version of the kit. No version means the latest version.", - "name": "Version", - "nickname": "Vr?", - "kind": "Version" - }, - { - "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", - "name": "Remote", - "nickname": "Rm?", - "kind": "Remote" - }, - { - "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", - "name": "Homepage", - "nickname": "Hp?", - "kind": "Homepage" - }, - { - "description": "The optional license [ spdx id | url ] of the kit.", - "name": "License", - "nickname": "Li?", - "kind": "License" - }, - { - "description": "The optional types of the kit.", - "name": "Types", - "nickname": "Ty*", - "kind": "Types" - }, - { - "description": "The optional designs of the kit.", - "name": "Designs", - "nickname": "Dn*", - "kind": "Designs" - }, - { - "description": "The optional qualities of the kit.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Design", - "description": "Construct, deconstruct or modify a design", - "nickname": "~Dsn", - "inputs": [ - { - "description": "The optional design to deconstruct or modify.", - "name": "Design", - "nickname": "Dn?", - "kind": "Design" - }, - { - "description": "Whether the design should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The name of the design.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human-readable description of the design.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | logogram | url ] of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional variant of the design. No variant means the default variant.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional view of the design. No view means the default view.", - "name": "View", - "nickname": "Vw?", - "kind": "View" - }, - { - "description": "The optional location of the design.", - "name": "Location", - "nickname": "Lo?", - "kind": "Location" - }, - { - "description": "The length unit for all distance-related information of the design.", - "name": "Unit", - "nickname": "Ut", - "kind": "Unit" - }, - { - "description": "The optional pieces of the design.", - "name": "Pieces", - "nickname": "Pc*", - "kind": "Pieces" - }, - { - "description": "The optional connections of the design.", - "name": "Connections", - "nickname": "Co*", - "kind": "Connections" - }, - { - "description": "The optional authors of the design.", - "name": "Authors", - "nickname": "Au*", - "kind": "Authors" - }, - { - "description": "The optional qualities of the design.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified design.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "True if the design is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The name of the design.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human-readable description of the design.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | logogram | url ] of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the design. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional variant of the design. No variant means the default variant.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional view of the design. No view means the default view.", - "name": "View", - "nickname": "Vw?", - "kind": "View" - }, - { - "description": "The optional location of the design.", - "name": "Location", - "nickname": "Lo?", - "kind": "Location" - }, - { - "description": "The length unit for all distance-related information of the design.", - "name": "Unit", - "nickname": "Ut", - "kind": "Unit" - }, - { - "description": "The optional pieces of the design.", - "name": "Pieces", - "nickname": "Pc*", - "kind": "Pieces" - }, - { - "description": "The optional connections of the design.", - "name": "Connections", - "nickname": "Co*", - "kind": "Connections" - }, - { - "description": "The optional authors of the design.", - "name": "Authors", - "nickname": "Au*", - "kind": "Authors" - }, - { - "description": "The optional qualities of the design.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Type", - "description": "Construct, deconstruct or modify a type", - "nickname": "~Typ", - "inputs": [ - { - "description": "The optional type to deconstruct or modify.", - "name": "Type", - "nickname": "Ty?", - "kind": "Type" - }, - { - "description": "Whether the type should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The name of the type.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human-readable description of the type.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | logogram | url ] of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional variant of the type. No variant means the default variant. ", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional number of items in stock. 2147483647 (=2^31-1) means infinite stock.", - "name": "Stock", - "nickname": "St?", - "kind": "Stock" - }, - { - "description": "Whether the type is virtual. A virtual type is not physically present but is used in conjunction with other virtual types to form a larger physical type.", - "name": "Virtual", - "nickname": "Vi?", - "kind": "Virtual" - }, - { - "description": "The optional location of the type.", - "name": "Location", - "nickname": "Lo?", - "kind": "Location" - }, - { - "description": "The length unit of the point and the direction of the ports of the type.", - "name": "Unit", - "nickname": "Ut", - "kind": "Unit" - }, - { - "description": "The optional representations of the type.", - "name": "Representations", - "nickname": "Rp*", - "kind": "Representations" - }, - { - "description": "The optional ports of the type.", - "name": "Ports", - "nickname": "Po*", - "kind": "Ports" - }, - { - "description": "The optional authors of the type.", - "name": "Authors", - "nickname": "Au*", - "kind": "Authors" - }, - { - "description": "The optional qualities of the type.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified type.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "True if the type is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The name of the type.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional human-readable description of the type.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional icon [ emoji | logogram | url ] of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 256x256 pixels and smaller than 1 MB.", - "name": "Icon", - "nickname": "Ic?", - "kind": "Icon" - }, - { - "description": "The optional url to the image of the type. The url must point to a quadratic image [ png | jpg | svg ] which will be cropped by a circle. The image must be at least 720x720 pixels and smaller than 5 MB.", - "name": "Image", - "nickname": "Im?", - "kind": "Image" - }, - { - "description": "The optional variant of the type. No variant means the default variant. ", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional number of items in stock. 2147483647 (=2^31-1) means infinite stock.", - "name": "Stock", - "nickname": "St?", - "kind": "Stock" - }, - { - "description": "Whether the type is virtual. A virtual type is not physically present but is used in conjunction with other virtual types to form a larger physical type.", - "name": "Virtual", - "nickname": "Vi?", - "kind": "Virtual" - }, - { - "description": "The optional location of the type.", - "name": "Location", - "nickname": "Lo?", - "kind": "Location" - }, - { - "description": "The length unit of the point and the direction of the ports of the type.", - "name": "Unit", - "nickname": "Ut", - "kind": "Unit" - }, - { - "description": "The optional representations of the type.", - "name": "Representations", - "nickname": "Rp*", - "kind": "Representations" - }, - { - "description": "The optional ports of the type.", - "name": "Ports", - "nickname": "Po*", - "kind": "Ports" - }, - { - "description": "The optional authors of the type.", - "name": "Authors", - "nickname": "Au*", - "kind": "Authors" - }, - { - "description": "The optional qualities of the type.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Connection", - "description": "Construct, deconstruct or modify a connection", - "nickname": "~Con", - "inputs": [ - { - "description": "The optional connection to deconstruct or modify.", - "name": "Connection", - "nickname": "Co?", - "kind": "Connection" - }, - { - "description": "Whether the connection should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "Id of the connected piece.", - "name": "Connected Piece Id", - "nickname": "CdPc", - "kind": "Connected Piece Id" - }, - { - "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", - "name": "Connected Piece Type Port Id", - "nickname": "CdPo?", - "kind": "Connected Piece Type Port Id" - }, - { - "description": "Id of the connected piece.", - "name": "Connecting Piece Id", - "nickname": "CgPc", - "kind": "Connecting Piece Id" - }, - { - "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", - "name": "Connecting Piece Type Port Id", - "nickname": "CgPo?", - "kind": "Connecting Piece Type Port Id" - }, - { - "description": "The optional human-readable description of the connection.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional longitudinal gap (applied after rotation and tilt in port direction) between the connected and the connecting piece.", - "name": "Gap", - "nickname": "Gp?", - "kind": "Gap" - }, - { - "description": "The optional lateral shift (applied after rotation and tilt in port direction) between the connected and the connecting piece.", - "name": "Shift", - "nickname": "Sf?", - "kind": "Shift" - }, - { - "description": "The optional vertical rise in port direction between the connected and the connecting piece. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", - "name": "Rise", - "nickname": "Rs?", - "kind": "Rise" - }, - { - "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", - "name": "Rotation", - "nickname": "Rt?", - "kind": "Rotation" - }, - { - "description": "The optional turn perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", - "name": "Turn", - "nickname": "Tu?", - "kind": "Turn" - }, - { - "description": "The optional horizontal tilt perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees.", - "name": "Tilt", - "nickname": "Tl?", - "kind": "Tilt" - }, - { - "description": "The optional offset in x direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", - "name": "X", - "nickname": "X?", - "kind": "X" - }, - { - "description": "The optional offset in y direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", - "name": "Y", - "nickname": "Y?", - "kind": "Y" - }, - { - "description": "The optional qualities of the connection.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified connection.", - "name": "Connection", - "nickname": "Co", - "kind": "Connection" - }, - { - "description": "True if the connection is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "Id of the connected piece.", - "name": "Connected Piece Id", - "nickname": "CdPc", - "kind": "Connected Piece Id" - }, - { - "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", - "name": "Connected Piece Type Port Id", - "nickname": "CdPo?", - "kind": "Connected Piece Type Port Id" - }, - { - "description": "Id of the connected piece.", - "name": "Connecting Piece Id", - "nickname": "CgPc", - "kind": "Connecting Piece Id" - }, - { - "description": "Optional id of the port of type of the piece. Otherwise the default port will be selected.", - "name": "Connecting Piece Type Port Id", - "nickname": "CgPo?", - "kind": "Connecting Piece Type Port Id" - }, - { - "description": "The optional human-readable description of the connection.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional longitudinal gap (applied after rotation and tilt in port direction) between the connected and the connecting piece.", - "name": "Gap", - "nickname": "Gp?", - "kind": "Gap" - }, - { - "description": "The optional lateral shift (applied after rotation and tilt in port direction) between the connected and the connecting piece.", - "name": "Shift", - "nickname": "Sf?", - "kind": "Shift" - }, - { - "description": "The optional vertical rise in port direction between the connected and the connecting piece. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", - "name": "Rise", - "nickname": "Rs?", - "kind": "Rise" - }, - { - "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", - "name": "Rotation", - "nickname": "Rt?", - "kind": "Rotation" - }, - { - "description": "The optional turn perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", - "name": "Turn", - "nickname": "Tu?", - "kind": "Turn" - }, - { - "description": "The optional horizontal tilt perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees.", - "name": "Tilt", - "nickname": "Tl?", - "kind": "Tilt" - }, - { - "description": "The optional offset in x direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", - "name": "X", - "nickname": "X?", - "kind": "X" - }, - { - "description": "The optional offset in y direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", - "name": "Y", - "nickname": "Y?", - "kind": "Y" - }, - { - "description": "The optional qualities of the connection.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Piece", - "description": "Construct, deconstruct or modify a piece", - "nickname": "~Pce", - "inputs": [ - { - "description": "The optional piece to deconstruct or modify.", - "name": "Piece", - "nickname": "Pc?", - "kind": "Piece" - }, - { - "description": "Whether the piece should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "Id of the piece.", - "name": "Id", - "nickname": "Id", - "kind": "Id" - }, - { - "description": "The optional human-readable description of the piece.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "Name of the type of the piece.", - "name": "Type Name", - "nickname": "Na", - "kind": "Type Name" - }, - { - "description": "The optional variant of the type of the piece. No variant means the default variant.", - "name": "Type Variant", - "nickname": "Vn?", - "kind": "Type Variant" - }, - { - "description": "The optional plane of the piece. When pieces are connected only one piece can have a plane.", - "name": "Plane", - "nickname": "Pn?", - "kind": "Plane" - }, - { - "description": "The optional center of the piece in the diagram. When pieces are connected only one piece can have a center.", - "name": "Center", - "nickname": "Ce?", - "kind": "Center" - }, - { - "description": "Whether the piece is hidden. A hidden piece is not visible in the model.", - "name": "Hidden", - "nickname": "Hi?", - "kind": "Hidden" - }, - { - "description": "Whether the piece is locked. A locked piece cannot be edited.", - "name": "Locked", - "nickname": "Lk?", - "kind": "Locked" - }, - { - "description": "The optional qualities of the piece.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified piece.", - "name": "Piece", - "nickname": "Pc", - "kind": "Piece" - }, - { - "description": "True if the piece is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "Id of the piece.", - "name": "Id", - "nickname": "Id", - "kind": "Id" - }, - { - "description": "The optional human-readable description of the piece.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "Name of the type of the piece.", - "name": "Type Name", - "nickname": "Na", - "kind": "Type Name" - }, - { - "description": "The optional variant of the type of the piece. No variant means the default variant.", - "name": "Type Variant", - "nickname": "Vn?", - "kind": "Type Variant" - }, - { - "description": "The optional plane of the piece. When pieces are connected only one piece can have a plane.", - "name": "Plane", - "nickname": "Pn?", - "kind": "Plane" - }, - { - "description": "The optional center of the piece in the diagram. When pieces are connected only one piece can have a center.", - "name": "Center", - "nickname": "Ce?", - "kind": "Center" - }, - { - "description": "Whether the piece is hidden. A hidden piece is not visible in the model.", - "name": "Hidden", - "nickname": "Hi?", - "kind": "Hidden" - }, - { - "description": "Whether the piece is locked. A locked piece cannot be edited.", - "name": "Locked", - "nickname": "Lk?", - "kind": "Locked" - }, - { - "description": "The optional qualities of the piece.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Port", - "description": "Construct, deconstruct or modify a port", - "nickname": "~Por", - "inputs": [ - { - "description": "The optional port to deconstruct or modify.", - "name": "Port", - "nickname": "Po?", - "kind": "Port" - }, - { - "description": "Whether the port should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The optional local identifier of the port within the type. No id means the default port.", - "name": "Id", - "nickname": "Id?", - "kind": "Id" - }, - { - "description": "The optional human-readable description of the port.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "Whether the port is mandatory. A mandatory port must be connected in a design.", - "name": "Mandatory", - "nickname": "Ma?", - "kind": "Mandatory" - }, - { - "description": "The optional family of the port. This allows to define explicit compatibility with other ports.", - "name": "Family", - "nickname": "Fa?", - "kind": "Family" - }, - { - "description": "The optional other compatible families of the port. An empty list means this port is compatible with all other ports.", - "name": "CompatibleFamilies", - "nickname": "CF*", - "kind": "CompatibleFamilies" - }, - { - "description": "The connection point of the port that is attracted to another connection point.", - "name": "Point", - "nickname": "Pt", - "kind": "Point" - }, - { - "description": "The direction of the port. When another piece connects the direction of the other port is flipped and then the pieces are aligned.", - "name": "Direction", - "nickname": "Dr", - "kind": "Direction" - }, - { - "description": "The parameter t [0,1[ where the port will be shown on the ring of a piece in the diagram. It starts at 12 o`clock and turns clockwise.", - "name": "T", - "nickname": "T", - "kind": "T" - }, - { - "description": "The optional qualities of the port.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified port.", - "name": "Port", - "nickname": "Po", - "kind": "Port" - }, - { - "description": "True if the port is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The optional local identifier of the port within the type. No id means the default port.", - "name": "Id", - "nickname": "Id?", - "kind": "Id" - }, - { - "description": "The optional human-readable description of the port.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "Whether the port is mandatory. A mandatory port must be connected in a design.", - "name": "Mandatory", - "nickname": "Ma?", - "kind": "Mandatory" - }, - { - "description": "The optional family of the port. This allows to define explicit compatibility with other ports.", - "name": "Family", - "nickname": "Fa?", - "kind": "Family" - }, - { - "description": "The optional other compatible families of the port. An empty list means this port is compatible with all other ports.", - "name": "CompatibleFamilies", - "nickname": "CF*", - "kind": "CompatibleFamilies" - }, - { - "description": "The connection point of the port that is attracted to another connection point.", - "name": "Point", - "nickname": "Pt", - "kind": "Point" - }, - { - "description": "The direction of the port. When another piece connects the direction of the other port is flipped and then the pieces are aligned.", - "name": "Direction", - "nickname": "Dr", - "kind": "Direction" - }, - { - "description": "The parameter t [0,1[ where the port will be shown on the ring of a piece in the diagram. It starts at 12 o`clock and turns clockwise.", - "name": "T", - "nickname": "T", - "kind": "T" - }, - { - "description": "The optional qualities of the port.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Representation", - "description": "Construct, deconstruct or modify a representation", - "nickname": "~Rep", - "inputs": [ - { - "description": "The optional representation to deconstruct or modify.", - "name": "Representation", - "nickname": "Rp?", - "kind": "Representation" - }, - { - "description": "Whether the representation should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "Ur", - "kind": "Url" - }, - { - "description": "The optional human-readable description of the representation.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - }, - { - "description": "The optional qualities of the representation.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "outputs": [ - { - "description": "The constructed or modified representation.", - "name": "Representation", - "nickname": "Rp", - "kind": "Representation" - }, - { - "description": "True if the representation is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "Ur", - "kind": "Url" - }, - { - "description": "The optional human-readable description of the representation.", - "name": "Description", - "nickname": "Dc?", - "kind": "Description" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - }, - { - "description": "The optional qualities of the representation.", - "name": "Qualities", - "nickname": "Ql*", - "kind": "Qualities" - } - ], - "icon": "" - }, - { - "name": "Model Quality", - "description": "Construct, deconstruct or modify a quality", - "nickname": "~Qal", - "inputs": [ - { - "description": "The optional quality to deconstruct or modify.", - "name": "Quality", - "nickname": "Ql?", - "kind": "Quality" - }, - { - "description": "Whether the quality should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The name of the quality.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value [ text | url ] of the quality. No value is equivalent to true for the name.", - "name": "Value", - "nickname": "Vl?", - "kind": "Value" - }, - { - "description": "The optional unit of the value of the quality.", - "name": "Unit", - "nickname": "Ut?", - "kind": "Unit" - }, - { - "description": "The optional definition [ text | uri ] of the quality.", - "name": "Definition", - "nickname": "Df?", - "kind": "Definition" - } - ], - "outputs": [ - { - "description": "The constructed or modified quality.", - "name": "Quality", - "nickname": "Ql", - "kind": "Quality" - }, - { - "description": "True if the quality is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The name of the quality.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value [ text | url ] of the quality. No value is equivalent to true for the name.", - "name": "Value", - "nickname": "Vl?", - "kind": "Value" - }, - { - "description": "The optional unit of the value of the quality.", - "name": "Unit", - "nickname": "Ut?", - "kind": "Unit" - }, - { - "description": "The optional definition [ text | uri ] of the quality.", - "name": "Definition", - "nickname": "Df?", - "kind": "Definition" - } - ], - "icon": "" - }, - { - "name": "Model DiagramPoint", - "description": "Construct, deconstruct or modify a diagrampoint", - "nickname": "~DPt", - "inputs": [ - { - "description": "The optional diagrampoint to deconstruct or modify.", - "name": "DiagramPoint", - "nickname": "DP?", - "kind": "DiagramPoint" - }, - { - "description": "Whether the diagrampoint should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The x-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", - "name": "X", - "nickname": "X", - "kind": "X" - }, - { - "description": "The y-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", - "name": "Y", - "nickname": "Y", - "kind": "Y" - } - ], - "outputs": [ - { - "description": "The constructed or modified diagrampoint.", - "name": "DiagramPoint", - "nickname": "DP", - "kind": "DiagramPoint" - }, - { - "description": "True if the diagrampoint is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The x-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", - "name": "X", - "nickname": "X", - "kind": "X" - }, - { - "description": "The y-coordinate of the icon of the piece in the diagram. One unit is equal the width of a piece icon.", - "name": "Y", - "nickname": "Y", - "kind": "Y" - } - ], - "icon": "" - }, - { - "name": "Model Location", - "description": "Construct, deconstruct or modify a location", - "nickname": "~Loc", - "inputs": [ - { - "description": "The optional location to deconstruct or modify.", - "name": "Location", - "nickname": "Lc?", - "kind": "Location" - }, - { - "description": "Whether the location should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The longitude of the location in degrees.", - "name": "Longitude", - "nickname": "Lo", - "kind": "Longitude" - }, - { - "description": "The latitude of the location in degrees.", - "name": "Latitude", - "nickname": "La", - "kind": "Latitude" - } - ], - "outputs": [ - { - "description": "The constructed or modified location.", - "name": "Location", - "nickname": "Lc", - "kind": "Location" - }, - { - "description": "True if the location is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The longitude of the location in degrees.", - "name": "Longitude", - "nickname": "Lo", - "kind": "Longitude" - }, - { - "description": "The latitude of the location in degrees.", - "name": "Latitude", - "nickname": "La", - "kind": "Latitude" - } - ], - "icon": "" - }, - { - "name": "Model Author", - "description": "Construct, deconstruct or modify an author", - "nickname": "~Aut", - "inputs": [ - { - "description": "The optional author to deconstruct or modify.", - "name": "Author", - "nickname": "Au?", - "kind": "Author" - }, - { - "description": "Whether the author should be validated.", - "name": "Validate", - "nickname": "Vd?", - "kind": "Validate" - }, - { - "description": "The name of the author.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The email of the author.", - "name": "Email", - "nickname": "Em", - "kind": "Email" - } - ], - "outputs": [ - { - "description": "The constructed or modified author.", - "name": "Author", - "nickname": "Au", - "kind": "Author" - }, - { - "description": "True if the author is valid. Null if no validation was performed.", - "name": "Valid", - "nickname": "Vd?", - "kind": "Valid" - }, - { - "description": "The name of the author.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The email of the author.", - "name": "Email", - "nickname": "Em", - "kind": "Email" - } - ], - "icon": "" - } + }, + { + "name": "Export Geometry", + "description": "Export geometry to any supported file format. It bakes the geometry to the current layer, runs the Rhino Command and then deletes the geometry again.", + "icon": "icon", + "nickname": "!Geo", + "inputs": [ + { + "description": "No conversion", + "name": "F", + "nickname": "F", + "kind": "F" + }, + { + "description": "Converts to collection of generic geometry", + "name": "G", + "nickname": "G", + "kind": "G" + }, + { + "description": "Converts to collection of boolean values", + "name": "R", + "nickname": "R", + "kind": "R" + } + ], + "outputs": [ + { + "description": "No conversion", + "name": "S", + "nickname": "S", + "kind": "S" + } ] - }, - "Integrations": { - "1": [ - { - "name": "Design to Block", - "description": "Bake the design to blocks: by selecting a representation with mime and tags and turn it to block-definitions and flatten the design and turn every piece into a block-definition with the plane as it transform.", - "icon": "icon", - "nickname": "Dsn\u2192Bl", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Ob", - "kind": "Data" - }, - { - "description": "The Multipurpose Internet Mail Extensions (MIME) type of the content of the file of the representation.", - "name": "Mime", - "nickname": "Mm", - "kind": "Mime" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - } - ], - "outputs": [ - { - "description": "Contains a collection of model block definitions", - "name": "Model Block Definition", - "nickname": "Block Definition", - "kind": "Model Block Definition" - }, - { - "description": "Contains a collection of block instances", - "name": "Block Instance", - "nickname": "Block Instance", - "kind": "Block Instance" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ] - }, - { - "name": "Pieces to Group", - "description": "Convert every piece to a group. If you need more a sophisticated approach where you can switch between represenstations and don't waste space use: Design to Block", - "icon": "icon", - "nickname": "\u2192Grp", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of geometric groups", - "name": "Group", - "nickname": "Gr", - "kind": "Group" - } - ], - "outputs": [ - { - "description": "Contains a collection of geometric groups", - "name": "Group", - "nickname": "Gr", - "kind": "Group" - } - ] - } - ], - "2": [ - { - "name": "GitHub Kit", - "description": "Get the uri and the homepage of the remote kit of a specific version (either a branch name, a tag name or a commit sha) for a kit hosted as a repository on GitHub. If you don't want the main branch, you have to clear the branch param.", - "icon": "icon", - "nickname": "GHbKit", - "inputs": [ - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Domain", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Account", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Repo", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Branch", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Tag", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Commit", - "kind": "Text" - } - ], - "outputs": [ - { - "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", - "name": "Remote", - "nickname": "Rm?", - "kind": "Remote" - }, - { - "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", - "name": "Homepage", - "nickname": "Hp?", - "kind": "Homepage" - } - ] - }, - { - "name": "GitLab Kit", - "description": "Get the uri and the homepage of the remote kit of a specific version (either a branch name, a tag name or a commit sha) for a kit hosted as a repository on GitLab. If you don't want the main branch, you have to clear the branch param.", - "icon": "icon", - "nickname": "GLbKit", - "inputs": [ - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Domain", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Account", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Repo", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Branch", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Tag", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Commit", - "kind": "Text" - } - ], - "outputs": [ - { - "description": "The optional Unique Resource Locator (URL) where to fetch the kit remotely.", - "name": "Remote", - "nickname": "Rm?", - "kind": "Remote" - }, - { - "description": "The optional Unique Resource Locator (URL) of the homepage of the kit.", - "name": "Homepage", - "nickname": "Hp?", - "kind": "Homepage" - } - ] - } - ], - "3": [ - { - "name": "Type to PART", - "description": "Convert a semio type to a Wasp PART. In semio connections are parametric (rotation, gap, tilt, shift) which can't be translated because Wasp CONN are statically defined by a plane. You can lock this degree of freedom by providing an additional rotation to each port. @devs If you want to debug this cluster, lock the solver (otherwise your Rhino might crash due to a Grasshopper bug) and look at the instructions inside. Password: debug", - "icon": "icon", - "nickname": "Typ\u2192PART", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Ob", - "kind": "Data" - }, - { - "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", - "name": "Rotation", - "nickname": "Rt?", - "kind": "Rotation" - } - ], - "outputs": [ - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "RULES", - "kind": "Data" - }, - { - "description": "OPTIONAL // Custom connection grammar with format \"ConnType\">\"ConnType\"", - "name": "GR", - "nickname": "GR", - "kind": "GR" - } - ] - }, - { - "name": "Filter PART", - "description": "Filter PARTs with indices. RULEs are also filtered to only include those with filtered PARTs.", - "icon": "icon", - "nickname": "|PART", - "inputs": [ - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "RULES", - "kind": "Data" - }, - { - "description": "Contains a collection of integer numbers", - "name": "Integer", - "nickname": "i", - "kind": "Integer" - } - ], - "outputs": [ - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "RULES", - "kind": "Data" - } - ] - }, - { - "name": "AGGR to Design", - "description": "Convert a Wasp aggregation (AGGR) to a semio design.", - "icon": "icon", - "nickname": "AGGR\u2192Dsn", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "AGGR", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART_OUT", - "kind": "Data" - }, - { - "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", - "name": "Rotation", - "nickname": "Rt?", - "kind": "Rotation" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - }, - { - "name": "Design to AGGR", - "description": "Convert a semio design to a Wasp aggregation (AGGR).", - "icon": "icon", - "nickname": "Dsn\u2192AGGR", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART", - "kind": "Data" - }, - { - "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", - "name": "Rotation", - "nickname": "Rt?", - "kind": "Rotation" - }, - { - "description": "Recompute the whole aggregation", - "name": "RESET", - "nickname": "RESET", - "kind": "RESET" - } - ], - "outputs": [ - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "AGGR", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART_OUT", - "kind": "Data" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "PART_OUT_FLAT", - "kind": "Data" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "GR", - "kind": "Text" - } - ] - } - ], - "4": [ - { - "name": "Types to Modules", - "description": "Convert semio types to Monoceros modules.", - "icon": "icon", - "nickname": "\u2192Mods", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty+", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Ob", - "kind": "Data" - }, - { - "description": "Vector specifying single Module Part dimensionsin base-plane-aligned XYZ axes. The Module Part Diagonal must match Envelope's Slot diagonals.", - "name": "Module Part Diagonal", - "nickname": "D", - "kind": "Module Part Diagonal" - } - ], - "outputs": [ - { - "description": "Contains a collection of Monoceros Modules.", - "name": "Module", - "nickname": "M", - "kind": "Module" - }, - { - "description": "Contains a collection of Monoceros Rules.", - "name": "Rule", - "nickname": "R", - "kind": "Rule" - } - ] - }, - { - "name": "Slots to Design", - "description": "Convert Monoceros slots to a semio design.", - "icon": "icon", - "nickname": "Slts\u2192", - "inputs": [ - { - "description": "Contains a collection of Monoceros Slots.", - "name": "Slot", - "nickname": "S", - "kind": "Slot" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - } - ] - } + }, + { + "name": "Put Design", + "description": "Put a design to the kit. If the same design (same name and variant) exists it will be overwritten", + "nickname": "+Dsn", + "inputs": [ + { + "description": "A design is a collection of pieces that are connected.", + "name": "Design", + "nickname": "Dn", + "kind": "Design" + }, + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to put the design to the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the design was put to the kit.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Put Type", + "description": "Put a type to the kit. If the same type (same name and variant) exists it will be overwritten", + "nickname": "+Typ", + "inputs": [ + { + "description": "A type is a reusable element that can be connected with other types over ports.", + "name": "Type", + "nickname": "Ty", + "kind": "Type" + }, + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to put the type to the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the type was put to the kit.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Write Text", + "description": "(Over)write a text to a file.", + "icon": "icon", + "nickname": "+Txt", + "inputs": [ + { + "description": "Converts to collection of text fragments", + "name": "T", + "nickname": "T", + "kind": "T" + }, + { + "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", + "name": "P", + "nickname": "P", + "kind": "P" + }, + { + "description": "Converts to collection of boolean values", + "name": "R", + "nickname": "R", + "kind": "R" + } + ], + "outputs": [ + { + "description": "No conversion", + "name": "S", + "nickname": "S", + "kind": "S" + } ] - }, - "Display": { - "1": [ - { - "name": "Preview Connections", - "description": "Preview all connections of a design by visualizing the ports of the types and the connection parameters.", - "icon": "icon", - "nickname": ":Con", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Sc", - "kind": "Number" - } - ] - }, - { - "name": "Preview Design", - "description": "Preview the pieces and connections of a design.", - "icon": "icon", - "nickname": ":Dsn", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Ob", - "kind": "Data" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Sc", - "kind": "Number" - } - ] - }, - { - "name": "Preview Geometry", - "description": "Preview geometry by ungrouping everything, showing light surfaces and dark edges.", - "icon": "icon", - "nickname": ":Geo", - "inputs": [ - { - "description": "Contains a collection of generic geometry", - "name": "Geometry", - "nickname": "Geo", - "kind": "Geometry" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Sc", - "kind": "Number" - } - ] - }, - { - "name": "Preview Pieces", - "description": "Preview pieces in a design. Use tags to select matching representations of the types of the pieces.", - "icon": "icon", - "nickname": ":Pce", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Ob", - "kind": "Data" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Sc", - "kind": "Number" - } - ] - }, - { - "name": "Preview Port", - "description": "Preview a port by showing the point and direction and if exists: id, family and compatible families.", - "icon": "icon", - "nickname": ":Prv", - "inputs": [ - { - "description": "A port is a connection point (with a direction) of a type.", - "name": "Port", - "nickname": "Po", - "kind": "Port" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Sc", - "kind": "Number" - } - ] - } - ], - "2": [ - { - "name": "Draw Diagram", - "description": "Draw the diagram of the design.", - "nickname": ":Dgm", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Types that are used by the pieces in the design.", - "name": "Types", - "nickname": "Ty+", - "kind": "Types" - }, - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to create the diagram of the design.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "The diagram as a Scalable Vector Graphics (SVG).", - "name": "Scalable Vector Graphics", - "nickname": "SVG", - "kind": "Scalable Vector Graphics" - } - ], - "icon": "" - } + } + ], + "3": [ + { + "name": "Clear Cache", + "description": "Clear the cache of all the remote kits.", + "nickname": "-Cac", + "inputs": [ + { + "description": "Optional Unique Resource Identifier (URI) of a kit or Unique Resource Locator (URL) of a representation. If None is provided, it will clear the entire cache.", + "name": "Uri|Url", + "nickname": "Ur?", + "kind": "Uri|Url" + }, + { + "description": "True to clear the cache.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the cache was successfully cleared.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Delete Kit", + "description": "Delete a kit.", + "nickname": "-Kit", + "inputs": [ + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to delete the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the kit was successfully deleted. False otherwise.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Remove Design", + "description": "Remove a design from a kit.", + "nickname": "-Dsn", + "inputs": [ + { + "description": "Name of the design to remove.", + "name": "Design Name", + "nickname": "Na", + "kind": "Design Name" + }, + { + "description": "The optional variant of the design to remove. No variant means the default variant.", + "name": "Design Variant", + "nickname": "Vn?", + "kind": "Design Variant" + }, + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to remove the design from the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the design was removed from the kit.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + }, + { + "name": "Remove Type", + "description": "Remove a type from a kit.", + "nickname": "-Typ", + "inputs": [ + { + "description": "Name of the type to remove.", + "name": "Type Name", + "nickname": "Na", + "kind": "Type Name" + }, + { + "description": "The optional variant of the type to remove. No variant means the default variant.", + "name": "Type Variant", + "nickname": "Vn?", + "kind": "Type Variant" + }, + { + "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", + "name": "Uri", + "nickname": "Ur?", + "kind": "Uri" + }, + { + "description": "True to remove the type from the kit.", + "name": "Run", + "nickname": "R", + "kind": "Run" + } + ], + "outputs": [ + { + "description": "True if the type was removed from the kit.", + "name": "Success", + "nickname": "Sc", + "kind": "Success" + } + ], + "icon": "" + } + ], + "4": [ + { + "name": "Directory", + "description": "Get the current directory of this Grasshopper script.", + "icon": "icon", + "nickname": "Dir", + "outputs": [ + { + "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", + "name": "D", + "nickname": "D", + "kind": "D" + } ] - }, - "Assistant": { - "1": [ - { - "name": "Assess Performance", - "description": "Simple performance assement based on the following qualities of the types (No unit conversion is applied for now, so make sure that all your types have the values with the same unit.): floor area, effective floor area, residents, workspaces, construction cost, maintenance expenses, income, transmission heat loss, ventilation heat loss, cooling energy demand, technical equipment energy demand,construction global warming potential, heating load, cooling load, ventilation air flow volume", - "icon": "icon", - "nickname": "!Prf", - "inputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": null, - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Technical Equipment Cost [\u20ac]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Technical Equipment GWP [kgCO2e]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Ventilation Heat Recovery Factor", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Efficiency Factor", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Primary Energy Factor", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Energy Price [\u20ac/kWh]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Global Warming Potential [kgCO2e/kWh]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Efficiency Factor", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Primary Energy Factor", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Global Warming Potential [kgCO2e/kWh]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Energy Price [\u20ac/kWh]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Electrictiy Primary Energy Factor", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Electrictiy Global Warming Potential [kgCO2e/kWh]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Electrictiy Energy Price [\u20ac/kWh]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "CO2 Price [\u20ac/tCO2e]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Life Cycle [a]", - "kind": "Number" - } - ], - "outputs": [ - { - "description": null, - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Interest [%]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Area Efficiency [eff. m\u00b2/m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Area Comfort [m\u00b2/Person]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Income[\u20ac/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Expenses [\u20ac/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Energy Expenses [\u20ac/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Effective Floor Area [m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Floor Area [m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Users [Person]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Construction Cost [\u20ac]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Construction Cost [\u20ac/m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Construction Cost per User [\u20ac/Person]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Life Cycle Cost [\u20ac]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Life Cycle Cost [\u20ac/m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Life Cycle Cost per User [\u20ac/Person]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Construction Global Warming Potential [kgCO2e]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Construction Global Warming Potential [kgCO2e/m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Construction Global Warming Potential per User [kgCO2e/Person]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Life Cycle Global Warming Potential [kgCO2e]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Life Cycle Global Warming Potential [kgCO2e/m\u00b2]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Life Cycle Global Warming Potential per User [kgCO2e/Person]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Primary Energy Demand [kWh/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Primary Energy Demand [kWh/m\u00b2a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Primary Energy Demand per User [kWh/Person a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Final Energy Demand [kWh/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Final Energy Demand [kWh/m\u00b2a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Final Energy Demand per User [kWh/Person a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Load [kW]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Energy Demand [kWh/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Heating Energy Demand [kWh/m\u00b2a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Heating Energy Demand per User [kWh/Person a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Load [kW]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Energy Demand [kWh/a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Specific Cooling Energy Demand [kWh/m\u00b2a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Cooling Energy Demand per User [kWh/Person a]", - "kind": "Number" - }, - { - "description": "Contains a collection of floating point numbers", - "name": "Number", - "nickname": "Ventilation Air Flow Volume [m\u00b3/s]", - "kind": "Number" - } - ] - }, - { - "name": "Predict Design", - "description": "Predict a design.", - "nickname": "%Dsn", - "inputs": [ - { - "description": "The description of the design or an instruction how to change the base design.", - "name": "Description", - "nickname": "Dc", - "kind": "Description" - }, - { - "description": "The types to use in the design.", - "name": "Types", - "nickname": "Ty+", - "kind": "Types" - }, - { - "description": "The optional design to use a base.", - "name": "Design", - "nickname": "Dn?", - "kind": "Design" - }, - { - "description": "True to predict the design.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the design was successfully predicted. False otherwise.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - }, - { - "description": "Predicted design.", - "name": "Design", - "nickname": "Dsn", - "kind": "Design" - } - ], - "icon": "" - } + }, + { + "name": "Parent Directory", + "description": "Get the parent of the directory.", + "icon": "icon", + "nickname": "Par", + "inputs": [ + { + "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", + "name": "D", + "nickname": "D", + "kind": "D" + } + ], + "outputs": [ + { + "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", + "name": "P", + "nickname": "P", + "kind": "P" + } ] - }, - "Persistence": { - "1": [ - { - "name": "Cache Kit", - "description": "Cache a kit by downloading the remote kit with all remote representations.", - "icon": "icon", - "nickname": "\u2193Kit", - "inputs": [ - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to load the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "Ur", - "kind": "Url" - }, - { - "description": "Contains a collection of generic data", - "name": "Data", - "nickname": "Objects", - "kind": "Data" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "UrPa", - "kind": "Url" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "UrPaLc", - "kind": "Url" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "UrPaRe", - "kind": "Url" - } - ] - }, - { - "name": "Cache Representation", - "description": "Download and cache a remote representation.", - "nickname": "\u2193Rep", - "inputs": [ - { - "description": "Unique Resource Locator (URL) of the remote representation.", - "name": "Url", - "nickname": "Ur", - "kind": "Url" - }, - { - "description": "True to downloaded and cache the remote representation.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "Path to the cached representation.", - "name": "Path", - "nickname": "Pa", - "kind": "Path" - }, - { - "description": "True if the representation was successfully downloaded and cached.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Load Design", - "description": "Load the design. If the representations are urls to files then the objects are loaded for a certain level of details and tags.", - "icon": "icon", - "nickname": "/Dsn", - "inputs": [ - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "The name of the design.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value of the design.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The optional view of the design. No view means the default view.", - "name": "View", - "nickname": "Vw?", - "kind": "View" - }, - { - "description": "The Multipurpose Internet Mail Extensions (MIME) type of the content of the file of the representation.", - "name": "Mime", - "nickname": "Mm", - "kind": "Mime" - }, - { - "description": "The optional Level of Detail/Development/Design (LoD) of the representation. No lod means default.", - "name": "Lod", - "nickname": "Ld?", - "kind": "Lod" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - }, - { - "description": "True to load the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Contains a collection of model objects", - "name": "Model Object", - "nickname": "Object", - "kind": "Model Object" - }, - { - "description": "Contains a collection of display materials", - "name": "Shader", - "nickname": "Shader", - "kind": "Shader" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "Ur", - "kind": "Url" - }, - { - "description": "Contains a collection of file paths", - "name": "File Path", - "nickname": "Path", - "kind": "File Path" - }, - { - "description": "Id of the piece.", - "name": "Id", - "nickname": "Id", - "kind": "Id" - }, - { - "description": "Contains a collection of three-dimensional axis-systems", - "name": "Plane", - "nickname": "Pln", - "kind": "Plane" - } - ] - }, - { - "name": "Load Geometry", - "description": "Load local geometry from absolute file paths to planes.", - "icon": "icon", - "nickname": "/Geo", - "inputs": [ - { - "description": "Contains a collection of file paths", - "name": "File Path", - "nickname": "Path", - "kind": "File Path" - }, - { - "description": "Contains a collection of three-dimensional axis-systems", - "name": "Plane", - "nickname": "Pln", - "kind": "Plane" - }, - { - "description": "Contains a collection of boolean values", - "name": "Boolean", - "nickname": "Run", - "kind": "Boolean" - } - ], - "outputs": [ - { - "description": "Contains a collection of model objects", - "name": "Model Object", - "nickname": "Object", - "kind": "Model Object" - }, - { - "description": "Contains a collection of RGB colours", - "name": "Colour", - "nickname": "Col", - "kind": "Colour" - }, - { - "description": "Contains a collection of display materials", - "name": "Shader", - "nickname": "Shader", - "kind": "Shader" - } - ] - }, - { - "name": "Load Kit", - "description": "Load a kit.", - "nickname": "/Kit", - "inputs": [ - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to load the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the kit was successfully loaded. False otherwise.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - }, - { - "description": "A kit is a collection of types and designs.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - }, - { - "description": "The optional local directory of the kit. This applies to local kits and cached remote kits.", - "name": "Local Directory", - "nickname": "Di", - "kind": "Local Directory" - } - ], - "icon": "" - }, - { - "name": "Load Type", - "description": "Load the type. If the representations are urls to files then the geometry is loaded for a certain level of details and tags.", - "icon": "icon", - "nickname": "/Typ", - "inputs": [ - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "The name of the type.", - "name": "Name", - "nickname": "Na", - "kind": "Name" - }, - { - "description": "The optional value of the type.", - "name": "Variant", - "nickname": "Vn?", - "kind": "Variant" - }, - { - "description": "The Multipurpose Internet Mail Extensions (MIME) type of the content of the resource of the representation.", - "name": "Mime", - "nickname": "Mm", - "kind": "Mime" - }, - { - "description": "The optional Level of Detail/Development/Design (LoD) of the representation. No lod means default.", - "name": "Lod", - "nickname": "Ld?", - "kind": "Lod" - }, - { - "description": "The optional tags to group representations. No tags means default.", - "name": "Tags", - "nickname": "Tg*", - "kind": "Tags" - }, - { - "description": "True to load the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Contains a collection of model objects", - "name": "Model Object", - "nickname": "Object", - "kind": "Model Object" - }, - { - "description": "Contains a collection of display materials", - "name": "Shader", - "nickname": "Shader", - "kind": "Shader" - }, - { - "description": "The Unique Resource Locator (URL) to the resource of the representation.", - "name": "Url", - "nickname": "Ur", - "kind": "Url" - }, - { - "description": "Contains a collection of file paths", - "name": "File Path", - "nickname": "Path", - "kind": "File Path" - } - ] - } - ], - "2": [ - { - "name": "Create Kit", - "description": "Create a kit.", - "nickname": "+Kit", - "inputs": [ - { - "description": "A kit is a collection of types and designs.", - "name": "Kit", - "nickname": "Kt", - "kind": "Kit" - }, - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to create the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the kit was successfully created. False otherwise.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Export Block", - "description": "Export geometry with layer names to a file.", - "icon": "icon", - "nickname": "!Blc", - "inputs": [ - { - "description": "Contains a collection of file paths", - "name": "File Path", - "nickname": "Path", - "kind": "File Path" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Name", - "kind": "Text" - }, - { - "description": "Contains a collection of text fragments", - "name": "Text", - "nickname": "Url", - "kind": "Text" - }, - { - "description": "Contains a collection of generic geometry", - "name": "Geometry", - "nickname": "Geo", - "kind": "Geometry" - }, - { - "description": "Layer name", - "name": "Name", - "nickname": "Layer N", - "kind": "Name" - }, - { - "description": "Display Colour", - "name": "Display Colour", - "nickname": "Dc", - "kind": "Display Colour" - }, - { - "description": "Contains a collection of boolean values", - "name": "Boolean", - "nickname": "Export", - "kind": "Boolean" - } - ], - "outputs": [ - { - "description": "Contains a collection of model block definitions", - "name": "Model Block Definition", - "nickname": "Block Definition", - "kind": "Model Block Definition" - }, - { - "description": "Contains a collection of file paths", - "name": "File Path", - "nickname": "Path", - "kind": "File Path" - }, - { - "description": "Contains a collection of boolean values", - "name": "Boolean", - "nickname": "Exported", - "kind": "Boolean" - } - ] - }, - { - "name": "Export Geometry", - "description": "Export geometry to any supported file format. It bakes the geometry to the current layer, runs the Rhino Command and then deletes the geometry again.", - "icon": "icon", - "nickname": "!Geo", - "inputs": [ - { - "description": "No conversion", - "name": "F", - "nickname": "F", - "kind": "F" - }, - { - "description": "Converts to collection of generic geometry", - "name": "G", - "nickname": "G", - "kind": "G" - }, - { - "description": "Converts to collection of boolean values", - "name": "R", - "nickname": "R", - "kind": "R" - } - ], - "outputs": [ - { - "description": "No conversion", - "name": "S", - "nickname": "S", - "kind": "S" - } - ] - }, - { - "name": "Put Design", - "description": "Put a design to the kit. If the same design (same name and variant) exists it will be overwritten", - "nickname": "+Dsn", - "inputs": [ - { - "description": "A design is a collection of pieces that are connected.", - "name": "Design", - "nickname": "Dn", - "kind": "Design" - }, - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to put the design to the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the design was put to the kit.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Put Type", - "description": "Put a type to the kit. If the same type (same name and variant) exists it will be overwritten", - "nickname": "+Typ", - "inputs": [ - { - "description": "A type is a reusable element that can be connected with other types over ports.", - "name": "Type", - "nickname": "Ty", - "kind": "Type" - }, - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to put the type to the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the type was put to the kit.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Write Text", - "description": "(Over)write a text to a file.", - "icon": "icon", - "nickname": "+Txt", - "inputs": [ - { - "description": "Converts to collection of text fragments", - "name": "T", - "nickname": "T", - "kind": "T" - }, - { - "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", - "name": "P", - "nickname": "P", - "kind": "P" - }, - { - "description": "Converts to collection of boolean values", - "name": "R", - "nickname": "R", - "kind": "R" - } - ], - "outputs": [ - { - "description": "No conversion", - "name": "S", - "nickname": "S", - "kind": "S" - } - ] - } - ], - "3": [ - { - "name": "Clear Cache", - "description": "Clear the cache of all the remote kits.", - "nickname": "-Cac", - "inputs": [ - { - "description": "Optional Unique Resource Identifier (URI) of a kit or Unique Resource Locator (URL) of a representation. If None is provided, it will clear the entire cache.", - "name": "Uri|Url", - "nickname": "Ur?", - "kind": "Uri|Url" - }, - { - "description": "True to clear the cache.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the cache was successfully cleared.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Delete Kit", - "description": "Delete a kit.", - "nickname": "-Kit", - "inputs": [ - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to delete the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the kit was successfully deleted. False otherwise.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Remove Design", - "description": "Remove a design from a kit.", - "nickname": "-Dsn", - "inputs": [ - { - "description": "Name of the design to remove.", - "name": "Design Name", - "nickname": "Na", - "kind": "Design Name" - }, - { - "description": "The optional variant of the design to remove. No variant means the default variant.", - "name": "Design Variant", - "nickname": "Vn?", - "kind": "Design Variant" - }, - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to remove the design from the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the design was removed from the kit.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - }, - { - "name": "Remove Type", - "description": "Remove a type from a kit.", - "nickname": "-Typ", - "inputs": [ - { - "description": "Name of the type to remove.", - "name": "Type Name", - "nickname": "Na", - "kind": "Type Name" - }, - { - "description": "The optional variant of the type to remove. No variant means the default variant.", - "name": "Type Variant", - "nickname": "Vn?", - "kind": "Type Variant" - }, - { - "description": "Optional Unique Resource Identifier (URI) of the kit. This can be an absolute path to a local kit or a url to a remote kit.\nIf none is provided, it will try to see if the Grasshopper script is executed inside a local kit.", - "name": "Uri", - "nickname": "Ur?", - "kind": "Uri" - }, - { - "description": "True to remove the type from the kit.", - "name": "Run", - "nickname": "R", - "kind": "Run" - } - ], - "outputs": [ - { - "description": "True if the type was removed from the kit.", - "name": "Success", - "nickname": "Sc", - "kind": "Success" - } - ], - "icon": "" - } - ], - "4": [ - { - "name": "Directory", - "description": "Get the current directory of this Grasshopper script.", - "icon": "icon", - "nickname": "Dir", - "outputs": [ - { - "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", - "name": "D", - "nickname": "D", - "kind": "D" - } - ] - }, - { - "name": "Parent Directory", - "description": "Get the parent of the directory.", - "icon": "icon", - "nickname": "Par", - "inputs": [ - { - "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", - "name": "D", - "nickname": "D", - "kind": "D" - } - ], - "outputs": [ - { - "description": "Converts to collection of file paths. Ensures paths are absolute based on document location", - "name": "P", - "nickname": "P", - "kind": "P" - } - ] - }, - { - "name": "Separator", - "description": "Get the separator char on this operating system.", - "icon": "icon", - "nickname": "Sep", - "outputs": [ - { - "description": "Converts to collection of text fragments", - "name": "S", - "nickname": "S", - "kind": "S" - } - ] - } + }, + { + "name": "Separator", + "description": "Get the separator char on this operating system.", + "icon": "icon", + "nickname": "Sep", + "outputs": [ + { + "description": "Converts to collection of text fragments", + "name": "S", + "nickname": "S", + "kind": "S" + } ] - } + } + ] + } } \ No newline at end of file diff --git a/assets/icons/attribute.ico b/assets/icons/attribute.ico new file mode 100644 index 000000000..1d20348e0 Binary files /dev/null and b/assets/icons/attribute.ico differ diff --git a/assets/icons/attribute.svg b/assets/icons/attribute.svg new file mode 100644 index 000000000..6853bb59b --- /dev/null +++ b/assets/icons/attribute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_24x24.png b/assets/icons/attribute_24x24.png new file mode 100644 index 000000000..b05939c16 Binary files /dev/null and b/assets/icons/attribute_24x24.png differ diff --git a/assets/icons/attribute_512x512.png b/assets/icons/attribute_512x512.png new file mode 100644 index 000000000..4599944f2 Binary files /dev/null and b/assets/icons/attribute_512x512.png differ diff --git a/assets/icons/attribute_deserialize.ico b/assets/icons/attribute_deserialize.ico new file mode 100644 index 000000000..79ddb88cd Binary files /dev/null and b/assets/icons/attribute_deserialize.ico differ diff --git a/assets/icons/attribute_deserialize.svg b/assets/icons/attribute_deserialize.svg new file mode 100644 index 000000000..51af744e3 --- /dev/null +++ b/assets/icons/attribute_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_deserialize_24x24.png b/assets/icons/attribute_deserialize_24x24.png new file mode 100644 index 000000000..78036feec Binary files /dev/null and b/assets/icons/attribute_deserialize_24x24.png differ diff --git a/assets/icons/attribute_deserialize_512x512.png b/assets/icons/attribute_deserialize_512x512.png new file mode 100644 index 000000000..966667ec1 Binary files /dev/null and b/assets/icons/attribute_deserialize_512x512.png differ diff --git a/assets/icons/attribute_diff.ico b/assets/icons/attribute_diff.ico new file mode 100644 index 000000000..dc0b10e03 Binary files /dev/null and b/assets/icons/attribute_diff.ico differ diff --git a/assets/icons/attribute_diff.svg b/assets/icons/attribute_diff.svg new file mode 100644 index 000000000..cf494ad5b --- /dev/null +++ b/assets/icons/attribute_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_diff_24x24.png b/assets/icons/attribute_diff_24x24.png new file mode 100644 index 000000000..cc956c22b Binary files /dev/null and b/assets/icons/attribute_diff_24x24.png differ diff --git a/assets/icons/attribute_diff_512x512.png b/assets/icons/attribute_diff_512x512.png new file mode 100644 index 000000000..946a3069a Binary files /dev/null and b/assets/icons/attribute_diff_512x512.png differ diff --git a/assets/icons/attribute_diff_deserialize.ico b/assets/icons/attribute_diff_deserialize.ico new file mode 100644 index 000000000..bbe6b1e31 Binary files /dev/null and b/assets/icons/attribute_diff_deserialize.ico differ diff --git a/assets/icons/attribute_diff_deserialize.svg b/assets/icons/attribute_diff_deserialize.svg new file mode 100644 index 000000000..62d242fa8 --- /dev/null +++ b/assets/icons/attribute_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_diff_deserialize_24x24.png b/assets/icons/attribute_diff_deserialize_24x24.png new file mode 100644 index 000000000..68b622029 Binary files /dev/null and b/assets/icons/attribute_diff_deserialize_24x24.png differ diff --git a/assets/icons/attribute_diff_deserialize_512x512.png b/assets/icons/attribute_diff_deserialize_512x512.png new file mode 100644 index 000000000..6cc532759 Binary files /dev/null and b/assets/icons/attribute_diff_deserialize_512x512.png differ diff --git a/assets/icons/attribute_diff_modify.ico b/assets/icons/attribute_diff_modify.ico new file mode 100644 index 000000000..d2e0fa6eb Binary files /dev/null and b/assets/icons/attribute_diff_modify.ico differ diff --git a/assets/icons/attribute_diff_modify.svg b/assets/icons/attribute_diff_modify.svg new file mode 100644 index 000000000..07547642b --- /dev/null +++ b/assets/icons/attribute_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_diff_modify_24x24.png b/assets/icons/attribute_diff_modify_24x24.png new file mode 100644 index 000000000..1cc622e06 Binary files /dev/null and b/assets/icons/attribute_diff_modify_24x24.png differ diff --git a/assets/icons/attribute_diff_modify_512x512.png b/assets/icons/attribute_diff_modify_512x512.png new file mode 100644 index 000000000..6638d5f01 Binary files /dev/null and b/assets/icons/attribute_diff_modify_512x512.png differ diff --git a/assets/icons/attribute_diff_serialize.ico b/assets/icons/attribute_diff_serialize.ico new file mode 100644 index 000000000..8d013a646 Binary files /dev/null and b/assets/icons/attribute_diff_serialize.ico differ diff --git a/assets/icons/attribute_diff_serialize.svg b/assets/icons/attribute_diff_serialize.svg new file mode 100644 index 000000000..7cb5c41e5 --- /dev/null +++ b/assets/icons/attribute_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_diff_serialize_24x24.png b/assets/icons/attribute_diff_serialize_24x24.png new file mode 100644 index 000000000..0aa9a64cf Binary files /dev/null and b/assets/icons/attribute_diff_serialize_24x24.png differ diff --git a/assets/icons/attribute_diff_serialize_512x512.png b/assets/icons/attribute_diff_serialize_512x512.png new file mode 100644 index 000000000..be60bbf31 Binary files /dev/null and b/assets/icons/attribute_diff_serialize_512x512.png differ diff --git a/assets/icons/attribute_id_24x24.png b/assets/icons/attribute_id_24x24.png new file mode 100644 index 000000000..69efd4c56 Binary files /dev/null and b/assets/icons/attribute_id_24x24.png differ diff --git a/assets/icons/attribute_id_deserialize.ico b/assets/icons/attribute_id_deserialize.ico new file mode 100644 index 000000000..1854d981c Binary files /dev/null and b/assets/icons/attribute_id_deserialize.ico differ diff --git a/assets/icons/attribute_id_deserialize.svg b/assets/icons/attribute_id_deserialize.svg new file mode 100644 index 000000000..36481a1df --- /dev/null +++ b/assets/icons/attribute_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_id_deserialize_24x24.png b/assets/icons/attribute_id_deserialize_24x24.png new file mode 100644 index 000000000..bfabf332c Binary files /dev/null and b/assets/icons/attribute_id_deserialize_24x24.png differ diff --git a/assets/icons/attribute_id_deserialize_512x512.png b/assets/icons/attribute_id_deserialize_512x512.png new file mode 100644 index 000000000..a9801961a Binary files /dev/null and b/assets/icons/attribute_id_deserialize_512x512.png differ diff --git a/assets/icons/attribute_id_modify_24x24.png b/assets/icons/attribute_id_modify_24x24.png new file mode 100644 index 000000000..9fa05f653 Binary files /dev/null and b/assets/icons/attribute_id_modify_24x24.png differ diff --git a/assets/icons/attribute_id_serialize.ico b/assets/icons/attribute_id_serialize.ico new file mode 100644 index 000000000..ef72e9a72 Binary files /dev/null and b/assets/icons/attribute_id_serialize.ico differ diff --git a/assets/icons/attribute_id_serialize.svg b/assets/icons/attribute_id_serialize.svg new file mode 100644 index 000000000..aaafa551f --- /dev/null +++ b/assets/icons/attribute_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_id_serialize_24x24.png b/assets/icons/attribute_id_serialize_24x24.png new file mode 100644 index 000000000..e8a539606 Binary files /dev/null and b/assets/icons/attribute_id_serialize_24x24.png differ diff --git a/assets/icons/attribute_id_serialize_512x512.png b/assets/icons/attribute_id_serialize_512x512.png new file mode 100644 index 000000000..75a9f9d3b Binary files /dev/null and b/assets/icons/attribute_id_serialize_512x512.png differ diff --git a/assets/icons/quality_modify.ico b/assets/icons/attribute_modify.ico similarity index 100% rename from assets/icons/quality_modify.ico rename to assets/icons/attribute_modify.ico diff --git a/assets/icons/quality_modify.svg b/assets/icons/attribute_modify.svg similarity index 100% rename from assets/icons/quality_modify.svg rename to assets/icons/attribute_modify.svg diff --git a/assets/icons/attribute_modify_24x24.png b/assets/icons/attribute_modify_24x24.png new file mode 100644 index 000000000..78cc5485c Binary files /dev/null and b/assets/icons/attribute_modify_24x24.png differ diff --git a/assets/icons/quality_modify_512x512.png b/assets/icons/attribute_modify_512x512.png similarity index 100% rename from assets/icons/quality_modify_512x512.png rename to assets/icons/attribute_modify_512x512.png diff --git a/assets/icons/quality_opinionated.ico b/assets/icons/attribute_opinionated.ico similarity index 100% rename from assets/icons/quality_opinionated.ico rename to assets/icons/attribute_opinionated.ico diff --git a/assets/icons/quality_opinionated.svg b/assets/icons/attribute_opinionated.svg similarity index 100% rename from assets/icons/quality_opinionated.svg rename to assets/icons/attribute_opinionated.svg diff --git a/assets/icons/quality_opinionated_24x24.png b/assets/icons/attribute_opinionated_24x24.png similarity index 100% rename from assets/icons/quality_opinionated_24x24.png rename to assets/icons/attribute_opinionated_24x24.png diff --git a/assets/icons/quality_opinionated_512x512.png b/assets/icons/attribute_opinionated_512x512.png similarity index 100% rename from assets/icons/quality_opinionated_512x512.png rename to assets/icons/attribute_opinionated_512x512.png diff --git a/assets/icons/quality_select.ico b/assets/icons/attribute_select.ico similarity index 100% rename from assets/icons/quality_select.ico rename to assets/icons/attribute_select.ico diff --git a/assets/icons/quality_select.svg b/assets/icons/attribute_select.svg similarity index 100% rename from assets/icons/quality_select.svg rename to assets/icons/attribute_select.svg diff --git a/assets/icons/quality_select_24x24.png b/assets/icons/attribute_select_24x24.png similarity index 100% rename from assets/icons/quality_select_24x24.png rename to assets/icons/attribute_select_24x24.png diff --git a/assets/icons/quality_select_512x512.png b/assets/icons/attribute_select_512x512.png similarity index 100% rename from assets/icons/quality_select_512x512.png rename to assets/icons/attribute_select_512x512.png diff --git a/assets/icons/attribute_serialize.ico b/assets/icons/attribute_serialize.ico new file mode 100644 index 000000000..7391df52b Binary files /dev/null and b/assets/icons/attribute_serialize.ico differ diff --git a/assets/icons/attribute_serialize.svg b/assets/icons/attribute_serialize.svg new file mode 100644 index 000000000..00f9977b4 --- /dev/null +++ b/assets/icons/attribute_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attribute_serialize_24x24.png b/assets/icons/attribute_serialize_24x24.png new file mode 100644 index 000000000..44b223fd5 Binary files /dev/null and b/assets/icons/attribute_serialize_24x24.png differ diff --git a/assets/icons/attribute_serialize_512x512.png b/assets/icons/attribute_serialize_512x512.png new file mode 100644 index 000000000..5d7abb48e Binary files /dev/null and b/assets/icons/attribute_serialize_512x512.png differ diff --git a/assets/icons/quality_standard.ico b/assets/icons/attribute_standard.ico similarity index 100% rename from assets/icons/quality_standard.ico rename to assets/icons/attribute_standard.ico diff --git a/assets/icons/quality_standard.svg b/assets/icons/attribute_standard.svg similarity index 100% rename from assets/icons/quality_standard.svg rename to assets/icons/attribute_standard.svg diff --git a/assets/icons/quality_standard_24x24.png b/assets/icons/attribute_standard_24x24.png similarity index 100% rename from assets/icons/quality_standard_24x24.png rename to assets/icons/attribute_standard_24x24.png diff --git a/assets/icons/quality_standard_512x512.png b/assets/icons/attribute_standard_512x512.png similarity index 100% rename from assets/icons/quality_standard_512x512.png rename to assets/icons/attribute_standard_512x512.png diff --git a/assets/icons/attributes_diff.ico b/assets/icons/attributes_diff.ico new file mode 100644 index 000000000..28e9195e5 Binary files /dev/null and b/assets/icons/attributes_diff.ico differ diff --git a/assets/icons/attributes_diff.svg b/assets/icons/attributes_diff.svg new file mode 100644 index 000000000..c36517cfb --- /dev/null +++ b/assets/icons/attributes_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attributes_diff_24x24.png b/assets/icons/attributes_diff_24x24.png new file mode 100644 index 000000000..e2ce5fa5d Binary files /dev/null and b/assets/icons/attributes_diff_24x24.png differ diff --git a/assets/icons/attributes_diff_512x512.png b/assets/icons/attributes_diff_512x512.png new file mode 100644 index 000000000..03cd9a254 Binary files /dev/null and b/assets/icons/attributes_diff_512x512.png differ diff --git a/assets/icons/attributes_diff_deserialize.ico b/assets/icons/attributes_diff_deserialize.ico new file mode 100644 index 000000000..09096c0db Binary files /dev/null and b/assets/icons/attributes_diff_deserialize.ico differ diff --git a/assets/icons/attributes_diff_deserialize.svg b/assets/icons/attributes_diff_deserialize.svg new file mode 100644 index 000000000..f9e6451c7 --- /dev/null +++ b/assets/icons/attributes_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attributes_diff_deserialize_24x24.png b/assets/icons/attributes_diff_deserialize_24x24.png new file mode 100644 index 000000000..99df5c18a Binary files /dev/null and b/assets/icons/attributes_diff_deserialize_24x24.png differ diff --git a/assets/icons/attributes_diff_deserialize_512x512.png b/assets/icons/attributes_diff_deserialize_512x512.png new file mode 100644 index 000000000..46f2aed73 Binary files /dev/null and b/assets/icons/attributes_diff_deserialize_512x512.png differ diff --git a/assets/icons/attributes_diff_modify.ico b/assets/icons/attributes_diff_modify.ico new file mode 100644 index 000000000..6ab4f31f7 Binary files /dev/null and b/assets/icons/attributes_diff_modify.ico differ diff --git a/assets/icons/attributes_diff_modify.svg b/assets/icons/attributes_diff_modify.svg new file mode 100644 index 000000000..ea4735d03 --- /dev/null +++ b/assets/icons/attributes_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attributes_diff_modify_24x24.png b/assets/icons/attributes_diff_modify_24x24.png new file mode 100644 index 000000000..e954dd968 Binary files /dev/null and b/assets/icons/attributes_diff_modify_24x24.png differ diff --git a/assets/icons/attributes_diff_modify_512x512.png b/assets/icons/attributes_diff_modify_512x512.png new file mode 100644 index 000000000..e9798b316 Binary files /dev/null and b/assets/icons/attributes_diff_modify_512x512.png differ diff --git a/assets/icons/attributes_diff_serialize.ico b/assets/icons/attributes_diff_serialize.ico new file mode 100644 index 000000000..ec219b058 Binary files /dev/null and b/assets/icons/attributes_diff_serialize.ico differ diff --git a/assets/icons/attributes_diff_serialize.svg b/assets/icons/attributes_diff_serialize.svg new file mode 100644 index 000000000..fb9148e13 --- /dev/null +++ b/assets/icons/attributes_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/attributes_diff_serialize_24x24.png b/assets/icons/attributes_diff_serialize_24x24.png new file mode 100644 index 000000000..23b531e2a Binary files /dev/null and b/assets/icons/attributes_diff_serialize_24x24.png differ diff --git a/assets/icons/attributes_diff_serialize_512x512.png b/assets/icons/attributes_diff_serialize_512x512.png new file mode 100644 index 000000000..edaadfd56 Binary files /dev/null and b/assets/icons/attributes_diff_serialize_512x512.png differ diff --git a/assets/icons/qualities_sum.ico b/assets/icons/attributes_sum.ico similarity index 100% rename from assets/icons/qualities_sum.ico rename to assets/icons/attributes_sum.ico diff --git a/assets/icons/qualities_sum.svg b/assets/icons/attributes_sum.svg similarity index 100% rename from assets/icons/qualities_sum.svg rename to assets/icons/attributes_sum.svg diff --git a/assets/icons/qualities_sum_24x24.png b/assets/icons/attributes_sum_24x24.png similarity index 100% rename from assets/icons/qualities_sum_24x24.png rename to assets/icons/attributes_sum_24x24.png diff --git a/assets/icons/qualities_sum_512x512.png b/assets/icons/attributes_sum_512x512.png similarity index 100% rename from assets/icons/qualities_sum_512x512.png rename to assets/icons/attributes_sum_512x512.png diff --git a/assets/icons/author_id.ico b/assets/icons/author_id.ico new file mode 100644 index 000000000..88ea26f5d Binary files /dev/null and b/assets/icons/author_id.ico differ diff --git a/assets/icons/author_id.svg b/assets/icons/author_id.svg new file mode 100644 index 000000000..5771c7ced --- /dev/null +++ b/assets/icons/author_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/author_id_24x24.png b/assets/icons/author_id_24x24.png new file mode 100644 index 000000000..fb5ca88bf Binary files /dev/null and b/assets/icons/author_id_24x24.png differ diff --git a/assets/icons/author_id_512x512.png b/assets/icons/author_id_512x512.png new file mode 100644 index 000000000..ca45c3159 Binary files /dev/null and b/assets/icons/author_id_512x512.png differ diff --git a/assets/icons/author_id_deserialize.ico b/assets/icons/author_id_deserialize.ico new file mode 100644 index 000000000..b9b80d080 Binary files /dev/null and b/assets/icons/author_id_deserialize.ico differ diff --git a/assets/icons/author_id_deserialize.svg b/assets/icons/author_id_deserialize.svg new file mode 100644 index 000000000..dc4659d3c --- /dev/null +++ b/assets/icons/author_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/author_id_deserialize_24x24.png b/assets/icons/author_id_deserialize_24x24.png new file mode 100644 index 000000000..21dec9ec2 Binary files /dev/null and b/assets/icons/author_id_deserialize_24x24.png differ diff --git a/assets/icons/author_id_deserialize_512x512.png b/assets/icons/author_id_deserialize_512x512.png new file mode 100644 index 000000000..962fac7ce Binary files /dev/null and b/assets/icons/author_id_deserialize_512x512.png differ diff --git a/assets/icons/author_id_modify.ico b/assets/icons/author_id_modify.ico new file mode 100644 index 000000000..ce5d1c21d Binary files /dev/null and b/assets/icons/author_id_modify.ico differ diff --git a/assets/icons/author_id_modify.svg b/assets/icons/author_id_modify.svg new file mode 100644 index 000000000..83b831ec9 --- /dev/null +++ b/assets/icons/author_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/author_id_modify_24x24.png b/assets/icons/author_id_modify_24x24.png new file mode 100644 index 000000000..6cce25954 Binary files /dev/null and b/assets/icons/author_id_modify_24x24.png differ diff --git a/assets/icons/author_id_modify_512x512.png b/assets/icons/author_id_modify_512x512.png new file mode 100644 index 000000000..6ecfd319a Binary files /dev/null and b/assets/icons/author_id_modify_512x512.png differ diff --git a/assets/icons/author_id_serialize.ico b/assets/icons/author_id_serialize.ico new file mode 100644 index 000000000..49fdcafb1 Binary files /dev/null and b/assets/icons/author_id_serialize.ico differ diff --git a/assets/icons/author_id_serialize.svg b/assets/icons/author_id_serialize.svg new file mode 100644 index 000000000..5843a97b2 --- /dev/null +++ b/assets/icons/author_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/author_id_serialize_24x24.png b/assets/icons/author_id_serialize_24x24.png new file mode 100644 index 000000000..f4dd51695 Binary files /dev/null and b/assets/icons/author_id_serialize_24x24.png differ diff --git a/assets/icons/author_id_serialize_512x512.png b/assets/icons/author_id_serialize_512x512.png new file mode 100644 index 000000000..f76ad2697 Binary files /dev/null and b/assets/icons/author_id_serialize_512x512.png differ diff --git a/assets/icons/benchmark.ico b/assets/icons/benchmark.ico new file mode 100644 index 000000000..f55f85566 Binary files /dev/null and b/assets/icons/benchmark.ico differ diff --git a/assets/icons/benchmark.svg b/assets/icons/benchmark.svg new file mode 100644 index 000000000..221bc3cfa --- /dev/null +++ b/assets/icons/benchmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/benchmark_24x24.png b/assets/icons/benchmark_24x24.png new file mode 100644 index 000000000..e9bf324a3 Binary files /dev/null and b/assets/icons/benchmark_24x24.png differ diff --git a/assets/icons/benchmark_512x512.png b/assets/icons/benchmark_512x512.png new file mode 100644 index 000000000..faf755da4 Binary files /dev/null and b/assets/icons/benchmark_512x512.png differ diff --git a/assets/icons/benchmark_deserialize.ico b/assets/icons/benchmark_deserialize.ico new file mode 100644 index 000000000..74bf540cf Binary files /dev/null and b/assets/icons/benchmark_deserialize.ico differ diff --git a/assets/icons/benchmark_deserialize.svg b/assets/icons/benchmark_deserialize.svg new file mode 100644 index 000000000..1e6194f06 --- /dev/null +++ b/assets/icons/benchmark_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/benchmark_deserialize_24x24.png b/assets/icons/benchmark_deserialize_24x24.png new file mode 100644 index 000000000..f7068dad8 Binary files /dev/null and b/assets/icons/benchmark_deserialize_24x24.png differ diff --git a/assets/icons/benchmark_deserialize_512x512.png b/assets/icons/benchmark_deserialize_512x512.png new file mode 100644 index 000000000..565589515 Binary files /dev/null and b/assets/icons/benchmark_deserialize_512x512.png differ diff --git a/assets/icons/benchmark_diff_24x24.png b/assets/icons/benchmark_diff_24x24.png new file mode 100644 index 000000000..01e63038a Binary files /dev/null and b/assets/icons/benchmark_diff_24x24.png differ diff --git a/assets/icons/benchmark_diff_deserialize_24x24.png b/assets/icons/benchmark_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmark_diff_deserialize_24x24.png differ diff --git a/assets/icons/benchmark_diff_modify_24x24.png b/assets/icons/benchmark_diff_modify_24x24.png new file mode 100644 index 000000000..37ad67eca Binary files /dev/null and b/assets/icons/benchmark_diff_modify_24x24.png differ diff --git a/assets/icons/benchmark_diff_serialize_24x24.png b/assets/icons/benchmark_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmark_diff_serialize_24x24.png differ diff --git a/assets/icons/benchmark_id_24x24.png b/assets/icons/benchmark_id_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmark_id_24x24.png differ diff --git a/assets/icons/benchmark_id_deserialize_24x24.png b/assets/icons/benchmark_id_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmark_id_deserialize_24x24.png differ diff --git a/assets/icons/benchmark_id_modify_24x24.png b/assets/icons/benchmark_id_modify_24x24.png new file mode 100644 index 000000000..e01c2bc6f Binary files /dev/null and b/assets/icons/benchmark_id_modify_24x24.png differ diff --git a/assets/icons/benchmark_id_serialize_24x24.png b/assets/icons/benchmark_id_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmark_id_serialize_24x24.png differ diff --git a/assets/icons/benchmark_modify.ico b/assets/icons/benchmark_modify.ico new file mode 100644 index 000000000..0f5c280b2 Binary files /dev/null and b/assets/icons/benchmark_modify.ico differ diff --git a/assets/icons/benchmark_modify.svg b/assets/icons/benchmark_modify.svg new file mode 100644 index 000000000..6697d07bd --- /dev/null +++ b/assets/icons/benchmark_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/benchmark_modify_24x24.png b/assets/icons/benchmark_modify_24x24.png new file mode 100644 index 000000000..e01c2bc6f Binary files /dev/null and b/assets/icons/benchmark_modify_24x24.png differ diff --git a/assets/icons/benchmark_modify_512x512.png b/assets/icons/benchmark_modify_512x512.png new file mode 100644 index 000000000..c16fed0d6 Binary files /dev/null and b/assets/icons/benchmark_modify_512x512.png differ diff --git a/assets/icons/benchmark_serialize.ico b/assets/icons/benchmark_serialize.ico new file mode 100644 index 000000000..c6f50f275 Binary files /dev/null and b/assets/icons/benchmark_serialize.ico differ diff --git a/assets/icons/benchmark_serialize.svg b/assets/icons/benchmark_serialize.svg new file mode 100644 index 000000000..30374673f --- /dev/null +++ b/assets/icons/benchmark_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/benchmark_serialize_24x24.png b/assets/icons/benchmark_serialize_24x24.png new file mode 100644 index 000000000..1d248d09d Binary files /dev/null and b/assets/icons/benchmark_serialize_24x24.png differ diff --git a/assets/icons/benchmark_serialize_512x512.png b/assets/icons/benchmark_serialize_512x512.png new file mode 100644 index 000000000..4a75b2b7f Binary files /dev/null and b/assets/icons/benchmark_serialize_512x512.png differ diff --git a/assets/icons/benchmarks_diff_24x24.png b/assets/icons/benchmarks_diff_24x24.png new file mode 100644 index 000000000..e6159a3b9 Binary files /dev/null and b/assets/icons/benchmarks_diff_24x24.png differ diff --git a/assets/icons/benchmarks_diff_deserialize_24x24.png b/assets/icons/benchmarks_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmarks_diff_deserialize_24x24.png differ diff --git a/assets/icons/benchmarks_diff_modify_24x24.png b/assets/icons/benchmarks_diff_modify_24x24.png new file mode 100644 index 000000000..cbe1968df Binary files /dev/null and b/assets/icons/benchmarks_diff_modify_24x24.png differ diff --git a/assets/icons/benchmarks_diff_serialize_24x24.png b/assets/icons/benchmarks_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/benchmarks_diff_serialize_24x24.png differ diff --git a/assets/icons/connection_diff.ico b/assets/icons/connection_diff.ico new file mode 100644 index 000000000..4a583600e Binary files /dev/null and b/assets/icons/connection_diff.ico differ diff --git a/assets/icons/connection_diff.svg b/assets/icons/connection_diff.svg new file mode 100644 index 000000000..cbe63eff5 --- /dev/null +++ b/assets/icons/connection_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_diff_24x24.png b/assets/icons/connection_diff_24x24.png new file mode 100644 index 000000000..d2c6062f6 Binary files /dev/null and b/assets/icons/connection_diff_24x24.png differ diff --git a/assets/icons/connection_diff_512x512.png b/assets/icons/connection_diff_512x512.png new file mode 100644 index 000000000..0b1a4a315 Binary files /dev/null and b/assets/icons/connection_diff_512x512.png differ diff --git a/assets/icons/connection_diff_deserialize.ico b/assets/icons/connection_diff_deserialize.ico new file mode 100644 index 000000000..0e7277d4b Binary files /dev/null and b/assets/icons/connection_diff_deserialize.ico differ diff --git a/assets/icons/connection_diff_deserialize.svg b/assets/icons/connection_diff_deserialize.svg new file mode 100644 index 000000000..030beb114 --- /dev/null +++ b/assets/icons/connection_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_diff_deserialize_24x24.png b/assets/icons/connection_diff_deserialize_24x24.png new file mode 100644 index 000000000..c7f935085 Binary files /dev/null and b/assets/icons/connection_diff_deserialize_24x24.png differ diff --git a/assets/icons/connection_diff_deserialize_512x512.png b/assets/icons/connection_diff_deserialize_512x512.png new file mode 100644 index 000000000..fa6daadce Binary files /dev/null and b/assets/icons/connection_diff_deserialize_512x512.png differ diff --git a/assets/icons/connection_diff_modify.ico b/assets/icons/connection_diff_modify.ico new file mode 100644 index 000000000..78f7f912f Binary files /dev/null and b/assets/icons/connection_diff_modify.ico differ diff --git a/assets/icons/connection_diff_modify.svg b/assets/icons/connection_diff_modify.svg new file mode 100644 index 000000000..33ae1da17 --- /dev/null +++ b/assets/icons/connection_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_diff_modify_24x24.png b/assets/icons/connection_diff_modify_24x24.png new file mode 100644 index 000000000..2de54b5ef Binary files /dev/null and b/assets/icons/connection_diff_modify_24x24.png differ diff --git a/assets/icons/connection_diff_modify_512x512.png b/assets/icons/connection_diff_modify_512x512.png new file mode 100644 index 000000000..56eca1ad5 Binary files /dev/null and b/assets/icons/connection_diff_modify_512x512.png differ diff --git a/assets/icons/connection_diff_serialize.ico b/assets/icons/connection_diff_serialize.ico new file mode 100644 index 000000000..427a5700c Binary files /dev/null and b/assets/icons/connection_diff_serialize.ico differ diff --git a/assets/icons/connection_diff_serialize.svg b/assets/icons/connection_diff_serialize.svg new file mode 100644 index 000000000..492f76025 --- /dev/null +++ b/assets/icons/connection_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_diff_serialize_24x24.png b/assets/icons/connection_diff_serialize_24x24.png new file mode 100644 index 000000000..dc6b723ef Binary files /dev/null and b/assets/icons/connection_diff_serialize_24x24.png differ diff --git a/assets/icons/connection_diff_serialize_512x512.png b/assets/icons/connection_diff_serialize_512x512.png new file mode 100644 index 000000000..2a84d48f8 Binary files /dev/null and b/assets/icons/connection_diff_serialize_512x512.png differ diff --git a/assets/icons/connection_id.ico b/assets/icons/connection_id.ico new file mode 100644 index 000000000..4bf02f9e0 Binary files /dev/null and b/assets/icons/connection_id.ico differ diff --git a/assets/icons/connection_id.svg b/assets/icons/connection_id.svg new file mode 100644 index 000000000..bef29b890 --- /dev/null +++ b/assets/icons/connection_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_id_24x24.png b/assets/icons/connection_id_24x24.png new file mode 100644 index 000000000..766eac268 Binary files /dev/null and b/assets/icons/connection_id_24x24.png differ diff --git a/assets/icons/connection_id_512x512.png b/assets/icons/connection_id_512x512.png new file mode 100644 index 000000000..d491e17fd Binary files /dev/null and b/assets/icons/connection_id_512x512.png differ diff --git a/assets/icons/connection_id_deserialize.ico b/assets/icons/connection_id_deserialize.ico new file mode 100644 index 000000000..e96b7bb58 Binary files /dev/null and b/assets/icons/connection_id_deserialize.ico differ diff --git a/assets/icons/connection_id_deserialize.svg b/assets/icons/connection_id_deserialize.svg new file mode 100644 index 000000000..46a118454 --- /dev/null +++ b/assets/icons/connection_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_id_deserialize_24x24.png b/assets/icons/connection_id_deserialize_24x24.png new file mode 100644 index 000000000..ed324eea1 Binary files /dev/null and b/assets/icons/connection_id_deserialize_24x24.png differ diff --git a/assets/icons/connection_id_deserialize_512x512.png b/assets/icons/connection_id_deserialize_512x512.png new file mode 100644 index 000000000..1dfbc46f6 Binary files /dev/null and b/assets/icons/connection_id_deserialize_512x512.png differ diff --git a/assets/icons/connection_id_modify.ico b/assets/icons/connection_id_modify.ico new file mode 100644 index 000000000..51aa7dd33 Binary files /dev/null and b/assets/icons/connection_id_modify.ico differ diff --git a/assets/icons/connection_id_modify.svg b/assets/icons/connection_id_modify.svg new file mode 100644 index 000000000..e89667fbb --- /dev/null +++ b/assets/icons/connection_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_id_modify_24x24.png b/assets/icons/connection_id_modify_24x24.png new file mode 100644 index 000000000..c036484e8 Binary files /dev/null and b/assets/icons/connection_id_modify_24x24.png differ diff --git a/assets/icons/connection_id_modify_512x512.png b/assets/icons/connection_id_modify_512x512.png new file mode 100644 index 000000000..21d03c842 Binary files /dev/null and b/assets/icons/connection_id_modify_512x512.png differ diff --git a/assets/icons/connection_id_serialize.ico b/assets/icons/connection_id_serialize.ico new file mode 100644 index 000000000..985f36473 Binary files /dev/null and b/assets/icons/connection_id_serialize.ico differ diff --git a/assets/icons/connection_id_serialize.svg b/assets/icons/connection_id_serialize.svg new file mode 100644 index 000000000..c0862113d --- /dev/null +++ b/assets/icons/connection_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connection_id_serialize_24x24.png b/assets/icons/connection_id_serialize_24x24.png new file mode 100644 index 000000000..153135b65 Binary files /dev/null and b/assets/icons/connection_id_serialize_24x24.png differ diff --git a/assets/icons/connection_id_serialize_512x512.png b/assets/icons/connection_id_serialize_512x512.png new file mode 100644 index 000000000..b6d1b54b9 Binary files /dev/null and b/assets/icons/connection_id_serialize_512x512.png differ diff --git a/assets/icons/connections_diff.ico b/assets/icons/connections_diff.ico new file mode 100644 index 000000000..8243c901f Binary files /dev/null and b/assets/icons/connections_diff.ico differ diff --git a/assets/icons/connections_diff.svg b/assets/icons/connections_diff.svg new file mode 100644 index 000000000..9d5c3d955 --- /dev/null +++ b/assets/icons/connections_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connections_diff_24x24.png b/assets/icons/connections_diff_24x24.png new file mode 100644 index 000000000..f647fb60b Binary files /dev/null and b/assets/icons/connections_diff_24x24.png differ diff --git a/assets/icons/connections_diff_512x512.png b/assets/icons/connections_diff_512x512.png new file mode 100644 index 000000000..0c03ee075 Binary files /dev/null and b/assets/icons/connections_diff_512x512.png differ diff --git a/assets/icons/connections_diff_deserialize.ico b/assets/icons/connections_diff_deserialize.ico new file mode 100644 index 000000000..34356a8db Binary files /dev/null and b/assets/icons/connections_diff_deserialize.ico differ diff --git a/assets/icons/connections_diff_deserialize.svg b/assets/icons/connections_diff_deserialize.svg new file mode 100644 index 000000000..3d403587a --- /dev/null +++ b/assets/icons/connections_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connections_diff_deserialize_24x24.png b/assets/icons/connections_diff_deserialize_24x24.png new file mode 100644 index 000000000..00d593461 Binary files /dev/null and b/assets/icons/connections_diff_deserialize_24x24.png differ diff --git a/assets/icons/connections_diff_deserialize_512x512.png b/assets/icons/connections_diff_deserialize_512x512.png new file mode 100644 index 000000000..cb1519e9f Binary files /dev/null and b/assets/icons/connections_diff_deserialize_512x512.png differ diff --git a/assets/icons/connections_diff_modify.ico b/assets/icons/connections_diff_modify.ico new file mode 100644 index 000000000..e5d07007a Binary files /dev/null and b/assets/icons/connections_diff_modify.ico differ diff --git a/assets/icons/connections_diff_modify.svg b/assets/icons/connections_diff_modify.svg new file mode 100644 index 000000000..302811e2d --- /dev/null +++ b/assets/icons/connections_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connections_diff_modify_24x24.png b/assets/icons/connections_diff_modify_24x24.png new file mode 100644 index 000000000..0678e9bf1 Binary files /dev/null and b/assets/icons/connections_diff_modify_24x24.png differ diff --git a/assets/icons/connections_diff_modify_512x512.png b/assets/icons/connections_diff_modify_512x512.png new file mode 100644 index 000000000..7e9e6440d Binary files /dev/null and b/assets/icons/connections_diff_modify_512x512.png differ diff --git a/assets/icons/connections_diff_serialize.ico b/assets/icons/connections_diff_serialize.ico new file mode 100644 index 000000000..d3112e9dd Binary files /dev/null and b/assets/icons/connections_diff_serialize.ico differ diff --git a/assets/icons/connections_diff_serialize.svg b/assets/icons/connections_diff_serialize.svg new file mode 100644 index 000000000..3f81bf365 --- /dev/null +++ b/assets/icons/connections_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/connections_diff_serialize_24x24.png b/assets/icons/connections_diff_serialize_24x24.png new file mode 100644 index 000000000..7c5ab52ce Binary files /dev/null and b/assets/icons/connections_diff_serialize_24x24.png differ diff --git a/assets/icons/connections_diff_serialize_512x512.png b/assets/icons/connections_diff_serialize_512x512.png new file mode 100644 index 000000000..540ee9b5e Binary files /dev/null and b/assets/icons/connections_diff_serialize_512x512.png differ diff --git a/assets/icons/design_diff.ico b/assets/icons/design_diff.ico new file mode 100644 index 000000000..2ac3dff7c Binary files /dev/null and b/assets/icons/design_diff.ico differ diff --git a/assets/icons/design_diff.svg b/assets/icons/design_diff.svg new file mode 100644 index 000000000..cc68e1227 --- /dev/null +++ b/assets/icons/design_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_diff_24x24.png b/assets/icons/design_diff_24x24.png new file mode 100644 index 000000000..e0354afc0 Binary files /dev/null and b/assets/icons/design_diff_24x24.png differ diff --git a/assets/icons/design_diff_512x512.png b/assets/icons/design_diff_512x512.png new file mode 100644 index 000000000..bde8bf5e4 Binary files /dev/null and b/assets/icons/design_diff_512x512.png differ diff --git a/assets/icons/design_diff_deserialize.ico b/assets/icons/design_diff_deserialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/design_diff_deserialize.ico differ diff --git a/assets/icons/design_diff_deserialize.svg b/assets/icons/design_diff_deserialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/design_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_diff_deserialize_24x24.png b/assets/icons/design_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/design_diff_deserialize_24x24.png differ diff --git a/assets/icons/design_diff_deserialize_512x512.png b/assets/icons/design_diff_deserialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/design_diff_deserialize_512x512.png differ diff --git a/assets/icons/design_diff_deserializze.ico b/assets/icons/design_diff_deserializze.ico new file mode 100644 index 000000000..d6c60b193 Binary files /dev/null and b/assets/icons/design_diff_deserializze.ico differ diff --git a/assets/icons/design_diff_deserializze.svg b/assets/icons/design_diff_deserializze.svg new file mode 100644 index 000000000..a61ddd67d --- /dev/null +++ b/assets/icons/design_diff_deserializze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_diff_deserializze_24x24.png b/assets/icons/design_diff_deserializze_24x24.png new file mode 100644 index 000000000..9f886b48f Binary files /dev/null and b/assets/icons/design_diff_deserializze_24x24.png differ diff --git a/assets/icons/design_diff_deserializze_512x512.png b/assets/icons/design_diff_deserializze_512x512.png new file mode 100644 index 000000000..b75aae39e Binary files /dev/null and b/assets/icons/design_diff_deserializze_512x512.png differ diff --git a/assets/icons/design_diff_modify.ico b/assets/icons/design_diff_modify.ico new file mode 100644 index 000000000..c4af1017c Binary files /dev/null and b/assets/icons/design_diff_modify.ico differ diff --git a/assets/icons/design_diff_modify.svg b/assets/icons/design_diff_modify.svg new file mode 100644 index 000000000..75b57088c --- /dev/null +++ b/assets/icons/design_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_diff_modify_24x24.png b/assets/icons/design_diff_modify_24x24.png new file mode 100644 index 000000000..ca75819ad Binary files /dev/null and b/assets/icons/design_diff_modify_24x24.png differ diff --git a/assets/icons/design_diff_modify_512x512.png b/assets/icons/design_diff_modify_512x512.png new file mode 100644 index 000000000..1244f82c7 Binary files /dev/null and b/assets/icons/design_diff_modify_512x512.png differ diff --git a/assets/icons/design_diff_serialize.ico b/assets/icons/design_diff_serialize.ico new file mode 100644 index 000000000..01e11753c Binary files /dev/null and b/assets/icons/design_diff_serialize.ico differ diff --git a/assets/icons/design_diff_serialize.svg b/assets/icons/design_diff_serialize.svg new file mode 100644 index 000000000..71a719856 --- /dev/null +++ b/assets/icons/design_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_diff_serialize_24x24.png b/assets/icons/design_diff_serialize_24x24.png new file mode 100644 index 000000000..cc8ac24e3 Binary files /dev/null and b/assets/icons/design_diff_serialize_24x24.png differ diff --git a/assets/icons/design_diff_serialize_512x512.png b/assets/icons/design_diff_serialize_512x512.png new file mode 100644 index 000000000..04b4a03c0 Binary files /dev/null and b/assets/icons/design_diff_serialize_512x512.png differ diff --git a/assets/icons/design_id.ico b/assets/icons/design_id.ico new file mode 100644 index 000000000..34e20a34d Binary files /dev/null and b/assets/icons/design_id.ico differ diff --git a/assets/icons/design_id.svg b/assets/icons/design_id.svg new file mode 100644 index 000000000..ad087438e --- /dev/null +++ b/assets/icons/design_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_id_24x24.png b/assets/icons/design_id_24x24.png new file mode 100644 index 000000000..5a36dc4d4 Binary files /dev/null and b/assets/icons/design_id_24x24.png differ diff --git a/assets/icons/design_id_512x512.png b/assets/icons/design_id_512x512.png new file mode 100644 index 000000000..e22d531a4 Binary files /dev/null and b/assets/icons/design_id_512x512.png differ diff --git a/assets/icons/design_id_deserialize.ico b/assets/icons/design_id_deserialize.ico new file mode 100644 index 000000000..f23db8481 Binary files /dev/null and b/assets/icons/design_id_deserialize.ico differ diff --git a/assets/icons/design_id_deserialize.svg b/assets/icons/design_id_deserialize.svg new file mode 100644 index 000000000..f1165cddf --- /dev/null +++ b/assets/icons/design_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_id_deserialize_24x24.png b/assets/icons/design_id_deserialize_24x24.png new file mode 100644 index 000000000..a4c6571e7 Binary files /dev/null and b/assets/icons/design_id_deserialize_24x24.png differ diff --git a/assets/icons/design_id_deserialize_512x512.png b/assets/icons/design_id_deserialize_512x512.png new file mode 100644 index 000000000..b404c84c3 Binary files /dev/null and b/assets/icons/design_id_deserialize_512x512.png differ diff --git a/assets/icons/design_id_modify.ico b/assets/icons/design_id_modify.ico new file mode 100644 index 000000000..9628ce050 Binary files /dev/null and b/assets/icons/design_id_modify.ico differ diff --git a/assets/icons/design_id_modify.svg b/assets/icons/design_id_modify.svg new file mode 100644 index 000000000..d042f908b --- /dev/null +++ b/assets/icons/design_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_id_modify_24x24.png b/assets/icons/design_id_modify_24x24.png new file mode 100644 index 000000000..3ae4453e2 Binary files /dev/null and b/assets/icons/design_id_modify_24x24.png differ diff --git a/assets/icons/design_id_modify_512x512.png b/assets/icons/design_id_modify_512x512.png new file mode 100644 index 000000000..c45077cd9 Binary files /dev/null and b/assets/icons/design_id_modify_512x512.png differ diff --git a/assets/icons/design_id_serialize.ico b/assets/icons/design_id_serialize.ico new file mode 100644 index 000000000..8e065df6f Binary files /dev/null and b/assets/icons/design_id_serialize.ico differ diff --git a/assets/icons/design_id_serialize.svg b/assets/icons/design_id_serialize.svg new file mode 100644 index 000000000..9354b384f --- /dev/null +++ b/assets/icons/design_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/design_id_serialize_24x24.png b/assets/icons/design_id_serialize_24x24.png new file mode 100644 index 000000000..56856f0fd Binary files /dev/null and b/assets/icons/design_id_serialize_24x24.png differ diff --git a/assets/icons/design_id_serialize_512x512.png b/assets/icons/design_id_serialize_512x512.png new file mode 100644 index 000000000..38d557302 Binary files /dev/null and b/assets/icons/design_id_serialize_512x512.png differ diff --git a/assets/icons/designs_diff.ico b/assets/icons/designs_diff.ico new file mode 100644 index 000000000..3f0c8702c Binary files /dev/null and b/assets/icons/designs_diff.ico differ diff --git a/assets/icons/designs_diff.svg b/assets/icons/designs_diff.svg new file mode 100644 index 000000000..44e51021a --- /dev/null +++ b/assets/icons/designs_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/designs_diff_24x24.png b/assets/icons/designs_diff_24x24.png new file mode 100644 index 000000000..b13c376e7 Binary files /dev/null and b/assets/icons/designs_diff_24x24.png differ diff --git a/assets/icons/designs_diff_512x512.png b/assets/icons/designs_diff_512x512.png new file mode 100644 index 000000000..a88f5f2d3 Binary files /dev/null and b/assets/icons/designs_diff_512x512.png differ diff --git a/assets/icons/designs_diff_deserialize.ico b/assets/icons/designs_diff_deserialize.ico new file mode 100644 index 000000000..091a12fac Binary files /dev/null and b/assets/icons/designs_diff_deserialize.ico differ diff --git a/assets/icons/designs_diff_deserialize.svg b/assets/icons/designs_diff_deserialize.svg new file mode 100644 index 000000000..7acf6c7e2 --- /dev/null +++ b/assets/icons/designs_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/designs_diff_deserialize_24x24.png b/assets/icons/designs_diff_deserialize_24x24.png new file mode 100644 index 000000000..3b3236d9a Binary files /dev/null and b/assets/icons/designs_diff_deserialize_24x24.png differ diff --git a/assets/icons/designs_diff_deserialize_512x512.png b/assets/icons/designs_diff_deserialize_512x512.png new file mode 100644 index 000000000..ee5d3ff16 Binary files /dev/null and b/assets/icons/designs_diff_deserialize_512x512.png differ diff --git a/assets/icons/designs_diff_modify.ico b/assets/icons/designs_diff_modify.ico new file mode 100644 index 000000000..5de5af121 Binary files /dev/null and b/assets/icons/designs_diff_modify.ico differ diff --git a/assets/icons/designs_diff_modify.svg b/assets/icons/designs_diff_modify.svg new file mode 100644 index 000000000..fd309db44 --- /dev/null +++ b/assets/icons/designs_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/designs_diff_modify_24x24.png b/assets/icons/designs_diff_modify_24x24.png new file mode 100644 index 000000000..058a4b438 Binary files /dev/null and b/assets/icons/designs_diff_modify_24x24.png differ diff --git a/assets/icons/designs_diff_modify_512x512.png b/assets/icons/designs_diff_modify_512x512.png new file mode 100644 index 000000000..e3144d24a Binary files /dev/null and b/assets/icons/designs_diff_modify_512x512.png differ diff --git a/assets/icons/designs_diff_serialize.ico b/assets/icons/designs_diff_serialize.ico new file mode 100644 index 000000000..763e0e4b3 Binary files /dev/null and b/assets/icons/designs_diff_serialize.ico differ diff --git a/assets/icons/designs_diff_serialize.svg b/assets/icons/designs_diff_serialize.svg new file mode 100644 index 000000000..ccab5d3e3 --- /dev/null +++ b/assets/icons/designs_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/designs_diff_serialize_24x24.png b/assets/icons/designs_diff_serialize_24x24.png new file mode 100644 index 000000000..55e38591a Binary files /dev/null and b/assets/icons/designs_diff_serialize_24x24.png differ diff --git a/assets/icons/designs_diff_serialize_512x512.png b/assets/icons/designs_diff_serialize_512x512.png new file mode 100644 index 000000000..7509cd2d0 Binary files /dev/null and b/assets/icons/designs_diff_serialize_512x512.png differ diff --git a/assets/icons/diff_deserialize.ico b/assets/icons/diff_deserialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/diff_deserialize.ico differ diff --git a/assets/icons/diff_deserialize.svg b/assets/icons/diff_deserialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/diff_deserialize_24x24.png b/assets/icons/diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/diff_deserialize_24x24.png differ diff --git a/assets/icons/diff_deserialize_512x512.png b/assets/icons/diff_deserialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/diff_deserialize_512x512.png differ diff --git a/assets/icons/diff_serialize.ico b/assets/icons/diff_serialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/diff_serialize.ico differ diff --git a/assets/icons/diff_serialize.svg b/assets/icons/diff_serialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/diff_serialize_24x24.png b/assets/icons/diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/diff_serialize_24x24.png differ diff --git a/assets/icons/diff_serialize_512x512.png b/assets/icons/diff_serialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/diff_serialize_512x512.png differ diff --git a/assets/icons/diffs_deserialize.ico b/assets/icons/diffs_deserialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/diffs_deserialize.ico differ diff --git a/assets/icons/diffs_deserialize.svg b/assets/icons/diffs_deserialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/diffs_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/diffs_deserialize_24x24.png b/assets/icons/diffs_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/diffs_deserialize_24x24.png differ diff --git a/assets/icons/diffs_deserialize_512x512.png b/assets/icons/diffs_deserialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/diffs_deserialize_512x512.png differ diff --git a/assets/icons/diffs_serialize.ico b/assets/icons/diffs_serialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/diffs_serialize.ico differ diff --git a/assets/icons/diffs_serialize.svg b/assets/icons/diffs_serialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/diffs_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/diffs_serialize_24x24.png b/assets/icons/diffs_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/diffs_serialize_24x24.png differ diff --git a/assets/icons/diffs_serialize_512x512.png b/assets/icons/diffs_serialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/diffs_serialize_512x512.png differ diff --git a/assets/icons/file.ico b/assets/icons/file.ico new file mode 100644 index 000000000..19ac89fab Binary files /dev/null and b/assets/icons/file.ico differ diff --git a/assets/icons/file.svg b/assets/icons/file.svg new file mode 100644 index 000000000..7d690a40a --- /dev/null +++ b/assets/icons/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_24x24.png b/assets/icons/file_24x24.png new file mode 100644 index 000000000..9e9218455 Binary files /dev/null and b/assets/icons/file_24x24.png differ diff --git a/assets/icons/file_512x512.png b/assets/icons/file_512x512.png new file mode 100644 index 000000000..21ec917c3 Binary files /dev/null and b/assets/icons/file_512x512.png differ diff --git a/assets/icons/file_deserialize.ico b/assets/icons/file_deserialize.ico new file mode 100644 index 000000000..a5d53d4b4 Binary files /dev/null and b/assets/icons/file_deserialize.ico differ diff --git a/assets/icons/file_deserialize.svg b/assets/icons/file_deserialize.svg new file mode 100644 index 000000000..84f44a624 --- /dev/null +++ b/assets/icons/file_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_deserialize_24x24.png b/assets/icons/file_deserialize_24x24.png new file mode 100644 index 000000000..9883201ac Binary files /dev/null and b/assets/icons/file_deserialize_24x24.png differ diff --git a/assets/icons/file_deserialize_512x512.png b/assets/icons/file_deserialize_512x512.png new file mode 100644 index 000000000..5f6a3ad8c Binary files /dev/null and b/assets/icons/file_deserialize_512x512.png differ diff --git a/assets/icons/file_diff.ico b/assets/icons/file_diff.ico new file mode 100644 index 000000000..4b80145df Binary files /dev/null and b/assets/icons/file_diff.ico differ diff --git a/assets/icons/file_diff.svg b/assets/icons/file_diff.svg new file mode 100644 index 000000000..b3ade5dca --- /dev/null +++ b/assets/icons/file_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_diff_24x24.png b/assets/icons/file_diff_24x24.png new file mode 100644 index 000000000..90e9b5177 Binary files /dev/null and b/assets/icons/file_diff_24x24.png differ diff --git a/assets/icons/file_diff_512x512.png b/assets/icons/file_diff_512x512.png new file mode 100644 index 000000000..f4563134c Binary files /dev/null and b/assets/icons/file_diff_512x512.png differ diff --git a/assets/icons/file_diff_deserialize.ico b/assets/icons/file_diff_deserialize.ico new file mode 100644 index 000000000..6a7199037 Binary files /dev/null and b/assets/icons/file_diff_deserialize.ico differ diff --git a/assets/icons/file_diff_deserialize.svg b/assets/icons/file_diff_deserialize.svg new file mode 100644 index 000000000..fed617b54 --- /dev/null +++ b/assets/icons/file_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_diff_deserialize_24x24.png b/assets/icons/file_diff_deserialize_24x24.png new file mode 100644 index 000000000..b436d3db9 Binary files /dev/null and b/assets/icons/file_diff_deserialize_24x24.png differ diff --git a/assets/icons/file_diff_deserialize_512x512.png b/assets/icons/file_diff_deserialize_512x512.png new file mode 100644 index 000000000..caa8e5af6 Binary files /dev/null and b/assets/icons/file_diff_deserialize_512x512.png differ diff --git a/assets/icons/file_diff_modify.ico b/assets/icons/file_diff_modify.ico new file mode 100644 index 000000000..1aa74bef1 Binary files /dev/null and b/assets/icons/file_diff_modify.ico differ diff --git a/assets/icons/file_diff_modify.svg b/assets/icons/file_diff_modify.svg new file mode 100644 index 000000000..b81a64aeb --- /dev/null +++ b/assets/icons/file_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_diff_modify_24x24.png b/assets/icons/file_diff_modify_24x24.png new file mode 100644 index 000000000..e7e5c5852 Binary files /dev/null and b/assets/icons/file_diff_modify_24x24.png differ diff --git a/assets/icons/file_diff_modify_512x512.png b/assets/icons/file_diff_modify_512x512.png new file mode 100644 index 000000000..5735538d0 Binary files /dev/null and b/assets/icons/file_diff_modify_512x512.png differ diff --git a/assets/icons/file_diff_serialize.ico b/assets/icons/file_diff_serialize.ico new file mode 100644 index 000000000..67d007247 Binary files /dev/null and b/assets/icons/file_diff_serialize.ico differ diff --git a/assets/icons/file_diff_serialize.svg b/assets/icons/file_diff_serialize.svg new file mode 100644 index 000000000..6a1f13806 --- /dev/null +++ b/assets/icons/file_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_diff_serialize_24x24.png b/assets/icons/file_diff_serialize_24x24.png new file mode 100644 index 000000000..fdc39ccf4 Binary files /dev/null and b/assets/icons/file_diff_serialize_24x24.png differ diff --git a/assets/icons/file_diff_serialize_512x512.png b/assets/icons/file_diff_serialize_512x512.png new file mode 100644 index 000000000..21798f450 Binary files /dev/null and b/assets/icons/file_diff_serialize_512x512.png differ diff --git a/assets/icons/file_id.ico b/assets/icons/file_id.ico new file mode 100644 index 000000000..ceb6889e0 Binary files /dev/null and b/assets/icons/file_id.ico differ diff --git a/assets/icons/file_id.svg b/assets/icons/file_id.svg new file mode 100644 index 000000000..b75719fd8 --- /dev/null +++ b/assets/icons/file_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_id_24x24.png b/assets/icons/file_id_24x24.png new file mode 100644 index 000000000..19fefeba2 Binary files /dev/null and b/assets/icons/file_id_24x24.png differ diff --git a/assets/icons/file_id_512x512.png b/assets/icons/file_id_512x512.png new file mode 100644 index 000000000..42adc704a Binary files /dev/null and b/assets/icons/file_id_512x512.png differ diff --git a/assets/icons/file_id_deserialize.ico b/assets/icons/file_id_deserialize.ico new file mode 100644 index 000000000..6b6f8a4d1 Binary files /dev/null and b/assets/icons/file_id_deserialize.ico differ diff --git a/assets/icons/file_id_deserialize.svg b/assets/icons/file_id_deserialize.svg new file mode 100644 index 000000000..9e0c08e71 --- /dev/null +++ b/assets/icons/file_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_id_deserialize_24x24.png b/assets/icons/file_id_deserialize_24x24.png new file mode 100644 index 000000000..a76e100d3 Binary files /dev/null and b/assets/icons/file_id_deserialize_24x24.png differ diff --git a/assets/icons/file_id_deserialize_512x512.png b/assets/icons/file_id_deserialize_512x512.png new file mode 100644 index 000000000..2d90f4424 Binary files /dev/null and b/assets/icons/file_id_deserialize_512x512.png differ diff --git a/assets/icons/file_id_modify.ico b/assets/icons/file_id_modify.ico new file mode 100644 index 000000000..32f07210e Binary files /dev/null and b/assets/icons/file_id_modify.ico differ diff --git a/assets/icons/file_id_modify.svg b/assets/icons/file_id_modify.svg new file mode 100644 index 000000000..15eacceb5 --- /dev/null +++ b/assets/icons/file_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_id_modify_24x24.png b/assets/icons/file_id_modify_24x24.png new file mode 100644 index 000000000..774c7c8e5 Binary files /dev/null and b/assets/icons/file_id_modify_24x24.png differ diff --git a/assets/icons/file_id_modify_512x512.png b/assets/icons/file_id_modify_512x512.png new file mode 100644 index 000000000..4c635c7b4 Binary files /dev/null and b/assets/icons/file_id_modify_512x512.png differ diff --git a/assets/icons/file_id_serialize.ico b/assets/icons/file_id_serialize.ico new file mode 100644 index 000000000..a1be33f76 Binary files /dev/null and b/assets/icons/file_id_serialize.ico differ diff --git a/assets/icons/file_id_serialize.svg b/assets/icons/file_id_serialize.svg new file mode 100644 index 000000000..cfebf47a2 --- /dev/null +++ b/assets/icons/file_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_id_serialize_24x24.png b/assets/icons/file_id_serialize_24x24.png new file mode 100644 index 000000000..75aee6835 Binary files /dev/null and b/assets/icons/file_id_serialize_24x24.png differ diff --git a/assets/icons/file_id_serialize_512x512.png b/assets/icons/file_id_serialize_512x512.png new file mode 100644 index 000000000..203447f69 Binary files /dev/null and b/assets/icons/file_id_serialize_512x512.png differ diff --git a/assets/icons/file_modify.ico b/assets/icons/file_modify.ico new file mode 100644 index 000000000..3f2d97551 Binary files /dev/null and b/assets/icons/file_modify.ico differ diff --git a/assets/icons/file_modify.svg b/assets/icons/file_modify.svg new file mode 100644 index 000000000..29c16cab3 --- /dev/null +++ b/assets/icons/file_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_modify_24x24.png b/assets/icons/file_modify_24x24.png new file mode 100644 index 000000000..9f66e6243 Binary files /dev/null and b/assets/icons/file_modify_24x24.png differ diff --git a/assets/icons/file_modify_512x512.png b/assets/icons/file_modify_512x512.png new file mode 100644 index 000000000..7c6014443 Binary files /dev/null and b/assets/icons/file_modify_512x512.png differ diff --git a/assets/icons/file_serialize.ico b/assets/icons/file_serialize.ico new file mode 100644 index 000000000..352d65363 Binary files /dev/null and b/assets/icons/file_serialize.ico differ diff --git a/assets/icons/file_serialize.svg b/assets/icons/file_serialize.svg new file mode 100644 index 000000000..cae04760d --- /dev/null +++ b/assets/icons/file_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/file_serialize_24x24.png b/assets/icons/file_serialize_24x24.png new file mode 100644 index 000000000..efdd9503c Binary files /dev/null and b/assets/icons/file_serialize_24x24.png differ diff --git a/assets/icons/file_serialize_512x512.png b/assets/icons/file_serialize_512x512.png new file mode 100644 index 000000000..84158a1dd Binary files /dev/null and b/assets/icons/file_serialize_512x512.png differ diff --git a/assets/icons/files_diff.ico b/assets/icons/files_diff.ico new file mode 100644 index 000000000..5b7356f09 Binary files /dev/null and b/assets/icons/files_diff.ico differ diff --git a/assets/icons/files_diff.svg b/assets/icons/files_diff.svg new file mode 100644 index 000000000..74345b138 --- /dev/null +++ b/assets/icons/files_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/files_diff_24x24.png b/assets/icons/files_diff_24x24.png new file mode 100644 index 000000000..b448309c7 Binary files /dev/null and b/assets/icons/files_diff_24x24.png differ diff --git a/assets/icons/files_diff_512x512.png b/assets/icons/files_diff_512x512.png new file mode 100644 index 000000000..d1431e9eb Binary files /dev/null and b/assets/icons/files_diff_512x512.png differ diff --git a/assets/icons/files_diff_deserialize.ico b/assets/icons/files_diff_deserialize.ico new file mode 100644 index 000000000..c2a0b837a Binary files /dev/null and b/assets/icons/files_diff_deserialize.ico differ diff --git a/assets/icons/files_diff_deserialize.svg b/assets/icons/files_diff_deserialize.svg new file mode 100644 index 000000000..e2f8507ff --- /dev/null +++ b/assets/icons/files_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/files_diff_deserialize_24x24.png b/assets/icons/files_diff_deserialize_24x24.png new file mode 100644 index 000000000..6d58d7d2f Binary files /dev/null and b/assets/icons/files_diff_deserialize_24x24.png differ diff --git a/assets/icons/files_diff_deserialize_512x512.png b/assets/icons/files_diff_deserialize_512x512.png new file mode 100644 index 000000000..dc7424766 Binary files /dev/null and b/assets/icons/files_diff_deserialize_512x512.png differ diff --git a/assets/icons/files_diff_modify.ico b/assets/icons/files_diff_modify.ico new file mode 100644 index 000000000..4968677d2 Binary files /dev/null and b/assets/icons/files_diff_modify.ico differ diff --git a/assets/icons/files_diff_modify.svg b/assets/icons/files_diff_modify.svg new file mode 100644 index 000000000..974582fed --- /dev/null +++ b/assets/icons/files_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/files_diff_modify_24x24.png b/assets/icons/files_diff_modify_24x24.png new file mode 100644 index 000000000..4b46c29ce Binary files /dev/null and b/assets/icons/files_diff_modify_24x24.png differ diff --git a/assets/icons/files_diff_modify_512x512.png b/assets/icons/files_diff_modify_512x512.png new file mode 100644 index 000000000..d88eda362 Binary files /dev/null and b/assets/icons/files_diff_modify_512x512.png differ diff --git a/assets/icons/files_diff_serialize.ico b/assets/icons/files_diff_serialize.ico new file mode 100644 index 000000000..e3db66908 Binary files /dev/null and b/assets/icons/files_diff_serialize.ico differ diff --git a/assets/icons/files_diff_serialize.svg b/assets/icons/files_diff_serialize.svg new file mode 100644 index 000000000..2fc92be37 --- /dev/null +++ b/assets/icons/files_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/files_diff_serialize_24x24.png b/assets/icons/files_diff_serialize_24x24.png new file mode 100644 index 000000000..c44a9e449 Binary files /dev/null and b/assets/icons/files_diff_serialize_24x24.png differ diff --git a/assets/icons/files_diff_serialize_512x512.png b/assets/icons/files_diff_serialize_512x512.png new file mode 100644 index 000000000..82a936377 Binary files /dev/null and b/assets/icons/files_diff_serialize_512x512.png differ diff --git a/assets/icons/group.ico b/assets/icons/group.ico new file mode 100644 index 000000000..7054376c5 Binary files /dev/null and b/assets/icons/group.ico differ diff --git a/assets/icons/group.svg b/assets/icons/group.svg new file mode 100644 index 000000000..e41e222a2 --- /dev/null +++ b/assets/icons/group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_24x24.png b/assets/icons/group_24x24.png new file mode 100644 index 000000000..37bcffbc5 Binary files /dev/null and b/assets/icons/group_24x24.png differ diff --git a/assets/icons/group_512x512.png b/assets/icons/group_512x512.png new file mode 100644 index 000000000..aaae54869 Binary files /dev/null and b/assets/icons/group_512x512.png differ diff --git a/assets/icons/group_deserialize_24x24.png b/assets/icons/group_deserialize_24x24.png new file mode 100644 index 000000000..f7068dad8 Binary files /dev/null and b/assets/icons/group_deserialize_24x24.png differ diff --git a/assets/icons/group_diff.ico b/assets/icons/group_diff.ico new file mode 100644 index 000000000..e8b41daec Binary files /dev/null and b/assets/icons/group_diff.ico differ diff --git a/assets/icons/group_diff.svg b/assets/icons/group_diff.svg new file mode 100644 index 000000000..5530d0dc2 --- /dev/null +++ b/assets/icons/group_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_diff_24x24.png b/assets/icons/group_diff_24x24.png new file mode 100644 index 000000000..c9e1f4189 Binary files /dev/null and b/assets/icons/group_diff_24x24.png differ diff --git a/assets/icons/group_diff_512x512.png b/assets/icons/group_diff_512x512.png new file mode 100644 index 000000000..e3516f655 Binary files /dev/null and b/assets/icons/group_diff_512x512.png differ diff --git a/assets/icons/group_diff_deserialize.ico b/assets/icons/group_diff_deserialize.ico new file mode 100644 index 000000000..6d8b19666 Binary files /dev/null and b/assets/icons/group_diff_deserialize.ico differ diff --git a/assets/icons/group_diff_deserialize.svg b/assets/icons/group_diff_deserialize.svg new file mode 100644 index 000000000..9416c6de1 --- /dev/null +++ b/assets/icons/group_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_diff_deserialize_24x24.png b/assets/icons/group_diff_deserialize_24x24.png new file mode 100644 index 000000000..66038f82b Binary files /dev/null and b/assets/icons/group_diff_deserialize_24x24.png differ diff --git a/assets/icons/group_diff_deserialize_512x512.png b/assets/icons/group_diff_deserialize_512x512.png new file mode 100644 index 000000000..60f76d227 Binary files /dev/null and b/assets/icons/group_diff_deserialize_512x512.png differ diff --git a/assets/icons/group_diff_modify_24x24.png b/assets/icons/group_diff_modify_24x24.png new file mode 100644 index 000000000..37ad67eca Binary files /dev/null and b/assets/icons/group_diff_modify_24x24.png differ diff --git a/assets/icons/group_diff_serialize.ico b/assets/icons/group_diff_serialize.ico new file mode 100644 index 000000000..22d70b4cd Binary files /dev/null and b/assets/icons/group_diff_serialize.ico differ diff --git a/assets/icons/group_diff_serialize.svg b/assets/icons/group_diff_serialize.svg new file mode 100644 index 000000000..3faa8a64e --- /dev/null +++ b/assets/icons/group_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_diff_serialize_24x24.png b/assets/icons/group_diff_serialize_24x24.png new file mode 100644 index 000000000..b12c3b4a7 Binary files /dev/null and b/assets/icons/group_diff_serialize_24x24.png differ diff --git a/assets/icons/group_diff_serialize_512x512.png b/assets/icons/group_diff_serialize_512x512.png new file mode 100644 index 000000000..a1b6ae8b8 Binary files /dev/null and b/assets/icons/group_diff_serialize_512x512.png differ diff --git a/assets/icons/group_id.ico b/assets/icons/group_id.ico new file mode 100644 index 000000000..b61060182 Binary files /dev/null and b/assets/icons/group_id.ico differ diff --git a/assets/icons/group_id.svg b/assets/icons/group_id.svg new file mode 100644 index 000000000..a4342cc5e --- /dev/null +++ b/assets/icons/group_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_id_24x24.png b/assets/icons/group_id_24x24.png new file mode 100644 index 000000000..e3c833a4d Binary files /dev/null and b/assets/icons/group_id_24x24.png differ diff --git a/assets/icons/group_id_512x512.png b/assets/icons/group_id_512x512.png new file mode 100644 index 000000000..44d364008 Binary files /dev/null and b/assets/icons/group_id_512x512.png differ diff --git a/assets/icons/group_id_deserialize.ico b/assets/icons/group_id_deserialize.ico new file mode 100644 index 000000000..5fc114e96 Binary files /dev/null and b/assets/icons/group_id_deserialize.ico differ diff --git a/assets/icons/group_id_deserialize.svg b/assets/icons/group_id_deserialize.svg new file mode 100644 index 000000000..191fe8730 --- /dev/null +++ b/assets/icons/group_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_id_deserialize_24x24.png b/assets/icons/group_id_deserialize_24x24.png new file mode 100644 index 000000000..9216ac786 Binary files /dev/null and b/assets/icons/group_id_deserialize_24x24.png differ diff --git a/assets/icons/group_id_deserialize_512x512.png b/assets/icons/group_id_deserialize_512x512.png new file mode 100644 index 000000000..e0583451a Binary files /dev/null and b/assets/icons/group_id_deserialize_512x512.png differ diff --git a/assets/icons/group_id_modify.ico b/assets/icons/group_id_modify.ico new file mode 100644 index 000000000..c65819f2a Binary files /dev/null and b/assets/icons/group_id_modify.ico differ diff --git a/assets/icons/group_id_modify.svg b/assets/icons/group_id_modify.svg new file mode 100644 index 000000000..9d6d67bec --- /dev/null +++ b/assets/icons/group_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_id_modify_24x24.png b/assets/icons/group_id_modify_24x24.png new file mode 100644 index 000000000..b5555f284 Binary files /dev/null and b/assets/icons/group_id_modify_24x24.png differ diff --git a/assets/icons/group_id_modify_512x512.png b/assets/icons/group_id_modify_512x512.png new file mode 100644 index 000000000..657540302 Binary files /dev/null and b/assets/icons/group_id_modify_512x512.png differ diff --git a/assets/icons/group_id_serialize.ico b/assets/icons/group_id_serialize.ico new file mode 100644 index 000000000..3ce170492 Binary files /dev/null and b/assets/icons/group_id_serialize.ico differ diff --git a/assets/icons/group_id_serialize.svg b/assets/icons/group_id_serialize.svg new file mode 100644 index 000000000..52fede967 --- /dev/null +++ b/assets/icons/group_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/group_id_serialize_24x24.png b/assets/icons/group_id_serialize_24x24.png new file mode 100644 index 000000000..02929aa82 Binary files /dev/null and b/assets/icons/group_id_serialize_24x24.png differ diff --git a/assets/icons/group_id_serialize_512x512.png b/assets/icons/group_id_serialize_512x512.png new file mode 100644 index 000000000..f7bb5a0af Binary files /dev/null and b/assets/icons/group_id_serialize_512x512.png differ diff --git a/assets/icons/group_modify_24x24.png b/assets/icons/group_modify_24x24.png new file mode 100644 index 000000000..e01c2bc6f Binary files /dev/null and b/assets/icons/group_modify_24x24.png differ diff --git a/assets/icons/group_serialize_24x24.png b/assets/icons/group_serialize_24x24.png new file mode 100644 index 000000000..1d248d09d Binary files /dev/null and b/assets/icons/group_serialize_24x24.png differ diff --git a/assets/icons/groups_diff.ico b/assets/icons/groups_diff.ico new file mode 100644 index 000000000..a535e36d0 Binary files /dev/null and b/assets/icons/groups_diff.ico differ diff --git a/assets/icons/groups_diff.svg b/assets/icons/groups_diff.svg new file mode 100644 index 000000000..0c57fa0f7 --- /dev/null +++ b/assets/icons/groups_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/groups_diff_24x24.png b/assets/icons/groups_diff_24x24.png new file mode 100644 index 000000000..0a63bf1b3 Binary files /dev/null and b/assets/icons/groups_diff_24x24.png differ diff --git a/assets/icons/groups_diff_512x512.png b/assets/icons/groups_diff_512x512.png new file mode 100644 index 000000000..1eec6f889 Binary files /dev/null and b/assets/icons/groups_diff_512x512.png differ diff --git a/assets/icons/groups_diff_deserialize.ico b/assets/icons/groups_diff_deserialize.ico new file mode 100644 index 000000000..60c586231 Binary files /dev/null and b/assets/icons/groups_diff_deserialize.ico differ diff --git a/assets/icons/groups_diff_deserialize.svg b/assets/icons/groups_diff_deserialize.svg new file mode 100644 index 000000000..f735b9e0a --- /dev/null +++ b/assets/icons/groups_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/groups_diff_deserialize_24x24.png b/assets/icons/groups_diff_deserialize_24x24.png new file mode 100644 index 000000000..f99581229 Binary files /dev/null and b/assets/icons/groups_diff_deserialize_24x24.png differ diff --git a/assets/icons/groups_diff_deserialize_512x512.png b/assets/icons/groups_diff_deserialize_512x512.png new file mode 100644 index 000000000..b36491b2b Binary files /dev/null and b/assets/icons/groups_diff_deserialize_512x512.png differ diff --git a/assets/icons/groups_diff_modify.ico b/assets/icons/groups_diff_modify.ico new file mode 100644 index 000000000..9348e1a6b Binary files /dev/null and b/assets/icons/groups_diff_modify.ico differ diff --git a/assets/icons/groups_diff_modify.svg b/assets/icons/groups_diff_modify.svg new file mode 100644 index 000000000..4d200f114 --- /dev/null +++ b/assets/icons/groups_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/groups_diff_modify_24x24.png b/assets/icons/groups_diff_modify_24x24.png new file mode 100644 index 000000000..b1444004a Binary files /dev/null and b/assets/icons/groups_diff_modify_24x24.png differ diff --git a/assets/icons/groups_diff_modify_512x512.png b/assets/icons/groups_diff_modify_512x512.png new file mode 100644 index 000000000..a92062975 Binary files /dev/null and b/assets/icons/groups_diff_modify_512x512.png differ diff --git a/assets/icons/groups_diff_serialize.ico b/assets/icons/groups_diff_serialize.ico new file mode 100644 index 000000000..e8717a212 Binary files /dev/null and b/assets/icons/groups_diff_serialize.ico differ diff --git a/assets/icons/groups_diff_serialize.svg b/assets/icons/groups_diff_serialize.svg new file mode 100644 index 000000000..ec9b39885 --- /dev/null +++ b/assets/icons/groups_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/groups_diff_serialize_24x24.png b/assets/icons/groups_diff_serialize_24x24.png new file mode 100644 index 000000000..d5742fa6d Binary files /dev/null and b/assets/icons/groups_diff_serialize_24x24.png differ diff --git a/assets/icons/groups_diff_serialize_512x512.png b/assets/icons/groups_diff_serialize_512x512.png new file mode 100644 index 000000000..c3eb36e90 Binary files /dev/null and b/assets/icons/groups_diff_serialize_512x512.png differ diff --git a/assets/icons/kit_diff.ico b/assets/icons/kit_diff.ico new file mode 100644 index 000000000..a775bff64 Binary files /dev/null and b/assets/icons/kit_diff.ico differ diff --git a/assets/icons/kit_diff.svg b/assets/icons/kit_diff.svg new file mode 100644 index 000000000..e527ee4b4 --- /dev/null +++ b/assets/icons/kit_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_diff_24x24.png b/assets/icons/kit_diff_24x24.png new file mode 100644 index 000000000..96bb2b888 Binary files /dev/null and b/assets/icons/kit_diff_24x24.png differ diff --git a/assets/icons/kit_diff_512x512.png b/assets/icons/kit_diff_512x512.png new file mode 100644 index 000000000..c984e317b Binary files /dev/null and b/assets/icons/kit_diff_512x512.png differ diff --git a/assets/icons/kit_diff_deserialize.ico b/assets/icons/kit_diff_deserialize.ico new file mode 100644 index 000000000..2f1057669 Binary files /dev/null and b/assets/icons/kit_diff_deserialize.ico differ diff --git a/assets/icons/kit_diff_deserialize.svg b/assets/icons/kit_diff_deserialize.svg new file mode 100644 index 000000000..2f8923b7c --- /dev/null +++ b/assets/icons/kit_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_diff_deserialize_24x24.png b/assets/icons/kit_diff_deserialize_24x24.png new file mode 100644 index 000000000..84f55d8c9 Binary files /dev/null and b/assets/icons/kit_diff_deserialize_24x24.png differ diff --git a/assets/icons/kit_diff_deserialize_512x512.png b/assets/icons/kit_diff_deserialize_512x512.png new file mode 100644 index 000000000..b03911566 Binary files /dev/null and b/assets/icons/kit_diff_deserialize_512x512.png differ diff --git a/assets/icons/kit_diff_modify.ico b/assets/icons/kit_diff_modify.ico new file mode 100644 index 000000000..75e828d0a Binary files /dev/null and b/assets/icons/kit_diff_modify.ico differ diff --git a/assets/icons/kit_diff_modify.svg b/assets/icons/kit_diff_modify.svg new file mode 100644 index 000000000..f17c55d2e --- /dev/null +++ b/assets/icons/kit_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_diff_modify_24x24.png b/assets/icons/kit_diff_modify_24x24.png new file mode 100644 index 000000000..07bc7f8d6 Binary files /dev/null and b/assets/icons/kit_diff_modify_24x24.png differ diff --git a/assets/icons/kit_diff_modify_512x512.png b/assets/icons/kit_diff_modify_512x512.png new file mode 100644 index 000000000..2db9f8f94 Binary files /dev/null and b/assets/icons/kit_diff_modify_512x512.png differ diff --git a/assets/icons/kit_diff_serialize.ico b/assets/icons/kit_diff_serialize.ico new file mode 100644 index 000000000..d69e36019 Binary files /dev/null and b/assets/icons/kit_diff_serialize.ico differ diff --git a/assets/icons/kit_diff_serialize.svg b/assets/icons/kit_diff_serialize.svg new file mode 100644 index 000000000..7ae22cd0e --- /dev/null +++ b/assets/icons/kit_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_diff_serialize_24x24.png b/assets/icons/kit_diff_serialize_24x24.png new file mode 100644 index 000000000..5ad98db91 Binary files /dev/null and b/assets/icons/kit_diff_serialize_24x24.png differ diff --git a/assets/icons/kit_diff_serialize_512x512.png b/assets/icons/kit_diff_serialize_512x512.png new file mode 100644 index 000000000..aa9c132ba Binary files /dev/null and b/assets/icons/kit_diff_serialize_512x512.png differ diff --git a/assets/icons/kit_id.ico b/assets/icons/kit_id.ico new file mode 100644 index 000000000..b39bbfe80 Binary files /dev/null and b/assets/icons/kit_id.ico differ diff --git a/assets/icons/kit_id.svg b/assets/icons/kit_id.svg new file mode 100644 index 000000000..bc0b48ece --- /dev/null +++ b/assets/icons/kit_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_id_24x24.png b/assets/icons/kit_id_24x24.png new file mode 100644 index 000000000..67fa03202 Binary files /dev/null and b/assets/icons/kit_id_24x24.png differ diff --git a/assets/icons/kit_id_512x512.png b/assets/icons/kit_id_512x512.png new file mode 100644 index 000000000..51633faa6 Binary files /dev/null and b/assets/icons/kit_id_512x512.png differ diff --git a/assets/icons/kit_id_deserialize.ico b/assets/icons/kit_id_deserialize.ico new file mode 100644 index 000000000..95addab3b Binary files /dev/null and b/assets/icons/kit_id_deserialize.ico differ diff --git a/assets/icons/kit_id_deserialize.svg b/assets/icons/kit_id_deserialize.svg new file mode 100644 index 000000000..f6858f533 --- /dev/null +++ b/assets/icons/kit_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_id_deserialize_24x24.png b/assets/icons/kit_id_deserialize_24x24.png new file mode 100644 index 000000000..42e9035bd Binary files /dev/null and b/assets/icons/kit_id_deserialize_24x24.png differ diff --git a/assets/icons/kit_id_deserialize_512x512.png b/assets/icons/kit_id_deserialize_512x512.png new file mode 100644 index 000000000..193f4dd12 Binary files /dev/null and b/assets/icons/kit_id_deserialize_512x512.png differ diff --git a/assets/icons/kit_id_modify.ico b/assets/icons/kit_id_modify.ico new file mode 100644 index 000000000..7e6385c30 Binary files /dev/null and b/assets/icons/kit_id_modify.ico differ diff --git a/assets/icons/kit_id_modify.svg b/assets/icons/kit_id_modify.svg new file mode 100644 index 000000000..f5e2a8b46 --- /dev/null +++ b/assets/icons/kit_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_id_modify_24x24.png b/assets/icons/kit_id_modify_24x24.png new file mode 100644 index 000000000..c3f60c11d Binary files /dev/null and b/assets/icons/kit_id_modify_24x24.png differ diff --git a/assets/icons/kit_id_modify_512x512.png b/assets/icons/kit_id_modify_512x512.png new file mode 100644 index 000000000..736c00e56 Binary files /dev/null and b/assets/icons/kit_id_modify_512x512.png differ diff --git a/assets/icons/kit_id_serialize.ico b/assets/icons/kit_id_serialize.ico new file mode 100644 index 000000000..b761b3978 Binary files /dev/null and b/assets/icons/kit_id_serialize.ico differ diff --git a/assets/icons/kit_id_serialize.svg b/assets/icons/kit_id_serialize.svg new file mode 100644 index 000000000..52198d688 --- /dev/null +++ b/assets/icons/kit_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_id_serialize_24x24.png b/assets/icons/kit_id_serialize_24x24.png new file mode 100644 index 000000000..8cb95d4cc Binary files /dev/null and b/assets/icons/kit_id_serialize_24x24.png differ diff --git a/assets/icons/kit_id_serialize_512x512.png b/assets/icons/kit_id_serialize_512x512.png new file mode 100644 index 000000000..77a34f22f Binary files /dev/null and b/assets/icons/kit_id_serialize_512x512.png differ diff --git a/assets/icons/kit_select.ico b/assets/icons/kit_select.ico new file mode 100644 index 000000000..0c2b5a0fe Binary files /dev/null and b/assets/icons/kit_select.ico differ diff --git a/assets/icons/kit_select.svg b/assets/icons/kit_select.svg new file mode 100644 index 000000000..45abbf317 --- /dev/null +++ b/assets/icons/kit_select.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kit_select_24x24.png b/assets/icons/kit_select_24x24.png new file mode 100644 index 000000000..0cf89ecf8 Binary files /dev/null and b/assets/icons/kit_select_24x24.png differ diff --git a/assets/icons/kit_select_512x512.png b/assets/icons/kit_select_512x512.png new file mode 100644 index 000000000..1b855e570 Binary files /dev/null and b/assets/icons/kit_select_512x512.png differ diff --git a/assets/icons/kits_diff.ico b/assets/icons/kits_diff.ico new file mode 100644 index 000000000..6589586a8 Binary files /dev/null and b/assets/icons/kits_diff.ico differ diff --git a/assets/icons/kits_diff.svg b/assets/icons/kits_diff.svg new file mode 100644 index 000000000..79d78a9a0 --- /dev/null +++ b/assets/icons/kits_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kits_diff_24x24.png b/assets/icons/kits_diff_24x24.png new file mode 100644 index 000000000..5c31b6fec Binary files /dev/null and b/assets/icons/kits_diff_24x24.png differ diff --git a/assets/icons/kits_diff_512x512.png b/assets/icons/kits_diff_512x512.png new file mode 100644 index 000000000..a9d1dc794 Binary files /dev/null and b/assets/icons/kits_diff_512x512.png differ diff --git a/assets/icons/kits_diff_deserialize.ico b/assets/icons/kits_diff_deserialize.ico new file mode 100644 index 000000000..bc7e1839c Binary files /dev/null and b/assets/icons/kits_diff_deserialize.ico differ diff --git a/assets/icons/kits_diff_deserialize.svg b/assets/icons/kits_diff_deserialize.svg new file mode 100644 index 000000000..cb0388b80 --- /dev/null +++ b/assets/icons/kits_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kits_diff_deserialize_24x24.png b/assets/icons/kits_diff_deserialize_24x24.png new file mode 100644 index 000000000..85ad5d44d Binary files /dev/null and b/assets/icons/kits_diff_deserialize_24x24.png differ diff --git a/assets/icons/kits_diff_deserialize_512x512.png b/assets/icons/kits_diff_deserialize_512x512.png new file mode 100644 index 000000000..01739836c Binary files /dev/null and b/assets/icons/kits_diff_deserialize_512x512.png differ diff --git a/assets/icons/kits_diff_modify.ico b/assets/icons/kits_diff_modify.ico new file mode 100644 index 000000000..ba570c9a0 Binary files /dev/null and b/assets/icons/kits_diff_modify.ico differ diff --git a/assets/icons/kits_diff_modify.svg b/assets/icons/kits_diff_modify.svg new file mode 100644 index 000000000..c88c23fcc --- /dev/null +++ b/assets/icons/kits_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kits_diff_modify_24x24.png b/assets/icons/kits_diff_modify_24x24.png new file mode 100644 index 000000000..8767ce6a5 Binary files /dev/null and b/assets/icons/kits_diff_modify_24x24.png differ diff --git a/assets/icons/kits_diff_modify_512x512.png b/assets/icons/kits_diff_modify_512x512.png new file mode 100644 index 000000000..ecf47bcdb Binary files /dev/null and b/assets/icons/kits_diff_modify_512x512.png differ diff --git a/assets/icons/kits_diff_serialize.ico b/assets/icons/kits_diff_serialize.ico new file mode 100644 index 000000000..97012f82c Binary files /dev/null and b/assets/icons/kits_diff_serialize.ico differ diff --git a/assets/icons/kits_diff_serialize.svg b/assets/icons/kits_diff_serialize.svg new file mode 100644 index 000000000..e300f5514 --- /dev/null +++ b/assets/icons/kits_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/kits_diff_serialize_24x24.png b/assets/icons/kits_diff_serialize_24x24.png new file mode 100644 index 000000000..52f1c2304 Binary files /dev/null and b/assets/icons/kits_diff_serialize_24x24.png differ diff --git a/assets/icons/kits_diff_serialize_512x512.png b/assets/icons/kits_diff_serialize_512x512.png new file mode 100644 index 000000000..dc249a1aa Binary files /dev/null and b/assets/icons/kits_diff_serialize_512x512.png differ diff --git a/assets/icons/layer.ico b/assets/icons/layer.ico new file mode 100644 index 000000000..66ae37794 Binary files /dev/null and b/assets/icons/layer.ico differ diff --git a/assets/icons/layer.svg b/assets/icons/layer.svg new file mode 100644 index 000000000..14a09e614 --- /dev/null +++ b/assets/icons/layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_24x24.png b/assets/icons/layer_24x24.png new file mode 100644 index 000000000..15e2a6db1 Binary files /dev/null and b/assets/icons/layer_24x24.png differ diff --git a/assets/icons/layer_512x512.png b/assets/icons/layer_512x512.png new file mode 100644 index 000000000..38fafcade Binary files /dev/null and b/assets/icons/layer_512x512.png differ diff --git a/assets/icons/layer_deserialize.ico b/assets/icons/layer_deserialize.ico new file mode 100644 index 000000000..3161086c5 Binary files /dev/null and b/assets/icons/layer_deserialize.ico differ diff --git a/assets/icons/layer_deserialize.svg b/assets/icons/layer_deserialize.svg new file mode 100644 index 000000000..9130ec229 --- /dev/null +++ b/assets/icons/layer_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_deserialize_24x24.png b/assets/icons/layer_deserialize_24x24.png new file mode 100644 index 000000000..434e0e511 Binary files /dev/null and b/assets/icons/layer_deserialize_24x24.png differ diff --git a/assets/icons/layer_deserialize_512x512.png b/assets/icons/layer_deserialize_512x512.png new file mode 100644 index 000000000..6da09ccca Binary files /dev/null and b/assets/icons/layer_deserialize_512x512.png differ diff --git a/assets/icons/layer_diff_24x24.png b/assets/icons/layer_diff_24x24.png new file mode 100644 index 000000000..01e63038a Binary files /dev/null and b/assets/icons/layer_diff_24x24.png differ diff --git a/assets/icons/layer_diff_deserialize_24x24.png b/assets/icons/layer_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/layer_diff_deserialize_24x24.png differ diff --git a/assets/icons/layer_diff_modify_24x24.png b/assets/icons/layer_diff_modify_24x24.png new file mode 100644 index 000000000..37ad67eca Binary files /dev/null and b/assets/icons/layer_diff_modify_24x24.png differ diff --git a/assets/icons/layer_diff_serialize_24x24.png b/assets/icons/layer_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/layer_diff_serialize_24x24.png differ diff --git a/assets/icons/layer_id.ico b/assets/icons/layer_id.ico new file mode 100644 index 000000000..d11dc67d2 Binary files /dev/null and b/assets/icons/layer_id.ico differ diff --git a/assets/icons/layer_id.svg b/assets/icons/layer_id.svg new file mode 100644 index 000000000..86b106a2c --- /dev/null +++ b/assets/icons/layer_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_id_24x24.png b/assets/icons/layer_id_24x24.png new file mode 100644 index 000000000..92dc6301d Binary files /dev/null and b/assets/icons/layer_id_24x24.png differ diff --git a/assets/icons/layer_id_512x512.png b/assets/icons/layer_id_512x512.png new file mode 100644 index 000000000..5e68e964b Binary files /dev/null and b/assets/icons/layer_id_512x512.png differ diff --git a/assets/icons/layer_id_deserialize.ico b/assets/icons/layer_id_deserialize.ico new file mode 100644 index 000000000..bbbe5f30f Binary files /dev/null and b/assets/icons/layer_id_deserialize.ico differ diff --git a/assets/icons/layer_id_deserialize.svg b/assets/icons/layer_id_deserialize.svg new file mode 100644 index 000000000..d7f9fc36e --- /dev/null +++ b/assets/icons/layer_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_id_deserialize_24x24.png b/assets/icons/layer_id_deserialize_24x24.png new file mode 100644 index 000000000..a55280edb Binary files /dev/null and b/assets/icons/layer_id_deserialize_24x24.png differ diff --git a/assets/icons/layer_id_deserialize_512x512.png b/assets/icons/layer_id_deserialize_512x512.png new file mode 100644 index 000000000..699d29907 Binary files /dev/null and b/assets/icons/layer_id_deserialize_512x512.png differ diff --git a/assets/icons/layer_id_modify.ico b/assets/icons/layer_id_modify.ico new file mode 100644 index 000000000..a4f5b26df Binary files /dev/null and b/assets/icons/layer_id_modify.ico differ diff --git a/assets/icons/layer_id_modify.svg b/assets/icons/layer_id_modify.svg new file mode 100644 index 000000000..1a6b34408 --- /dev/null +++ b/assets/icons/layer_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_id_modify_24x24.png b/assets/icons/layer_id_modify_24x24.png new file mode 100644 index 000000000..fb2b74022 Binary files /dev/null and b/assets/icons/layer_id_modify_24x24.png differ diff --git a/assets/icons/layer_id_modify_512x512.png b/assets/icons/layer_id_modify_512x512.png new file mode 100644 index 000000000..dcffe8e19 Binary files /dev/null and b/assets/icons/layer_id_modify_512x512.png differ diff --git a/assets/icons/layer_id_serialize.ico b/assets/icons/layer_id_serialize.ico new file mode 100644 index 000000000..90a921f8a Binary files /dev/null and b/assets/icons/layer_id_serialize.ico differ diff --git a/assets/icons/layer_id_serialize.svg b/assets/icons/layer_id_serialize.svg new file mode 100644 index 000000000..1b939cd71 --- /dev/null +++ b/assets/icons/layer_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_id_serialize_24x24.png b/assets/icons/layer_id_serialize_24x24.png new file mode 100644 index 000000000..9b4a4f326 Binary files /dev/null and b/assets/icons/layer_id_serialize_24x24.png differ diff --git a/assets/icons/layer_id_serialize_512x512.png b/assets/icons/layer_id_serialize_512x512.png new file mode 100644 index 000000000..be3371104 Binary files /dev/null and b/assets/icons/layer_id_serialize_512x512.png differ diff --git a/assets/icons/layer_modify.ico b/assets/icons/layer_modify.ico new file mode 100644 index 000000000..11dc9d719 Binary files /dev/null and b/assets/icons/layer_modify.ico differ diff --git a/assets/icons/layer_modify.svg b/assets/icons/layer_modify.svg new file mode 100644 index 000000000..d0603c878 --- /dev/null +++ b/assets/icons/layer_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_modify_24x24.png b/assets/icons/layer_modify_24x24.png new file mode 100644 index 000000000..625b0ac33 Binary files /dev/null and b/assets/icons/layer_modify_24x24.png differ diff --git a/assets/icons/layer_modify_512x512.png b/assets/icons/layer_modify_512x512.png new file mode 100644 index 000000000..631209bd4 Binary files /dev/null and b/assets/icons/layer_modify_512x512.png differ diff --git a/assets/icons/layer_serialize.ico b/assets/icons/layer_serialize.ico new file mode 100644 index 000000000..6fa597937 Binary files /dev/null and b/assets/icons/layer_serialize.ico differ diff --git a/assets/icons/layer_serialize.svg b/assets/icons/layer_serialize.svg new file mode 100644 index 000000000..6bb9eafd8 --- /dev/null +++ b/assets/icons/layer_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/layer_serialize_24x24.png b/assets/icons/layer_serialize_24x24.png new file mode 100644 index 000000000..b73fbcbf3 Binary files /dev/null and b/assets/icons/layer_serialize_24x24.png differ diff --git a/assets/icons/layer_serialize_512x512.png b/assets/icons/layer_serialize_512x512.png new file mode 100644 index 000000000..8d1f246a2 Binary files /dev/null and b/assets/icons/layer_serialize_512x512.png differ diff --git a/assets/icons/layers_diff_24x24.png b/assets/icons/layers_diff_24x24.png new file mode 100644 index 000000000..e6159a3b9 Binary files /dev/null and b/assets/icons/layers_diff_24x24.png differ diff --git a/assets/icons/layers_diff_deserialize_24x24.png b/assets/icons/layers_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/layers_diff_deserialize_24x24.png differ diff --git a/assets/icons/layers_diff_modify_24x24.png b/assets/icons/layers_diff_modify_24x24.png new file mode 100644 index 000000000..cbe1968df Binary files /dev/null and b/assets/icons/layers_diff_modify_24x24.png differ diff --git a/assets/icons/layers_diff_serialize_24x24.png b/assets/icons/layers_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/layers_diff_serialize_24x24.png differ diff --git a/assets/icons/package.json b/assets/icons/package.json index bd0b428b3..a397d9ba3 100644 --- a/assets/icons/package.json +++ b/assets/icons/package.json @@ -14,4 +14,4 @@ "email": "ueli@semio-tech.com", "url": "https://github.com/usalu" } -} \ No newline at end of file +} diff --git a/assets/icons/piece_diff.ico b/assets/icons/piece_diff.ico new file mode 100644 index 000000000..74487e28e Binary files /dev/null and b/assets/icons/piece_diff.ico differ diff --git a/assets/icons/piece_diff.svg b/assets/icons/piece_diff.svg new file mode 100644 index 000000000..92db30ea0 --- /dev/null +++ b/assets/icons/piece_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_diff_24x24.png b/assets/icons/piece_diff_24x24.png new file mode 100644 index 000000000..84167738f Binary files /dev/null and b/assets/icons/piece_diff_24x24.png differ diff --git a/assets/icons/piece_diff_512x512.png b/assets/icons/piece_diff_512x512.png new file mode 100644 index 000000000..009abe5a6 Binary files /dev/null and b/assets/icons/piece_diff_512x512.png differ diff --git a/assets/icons/piece_diff_deserialize.ico b/assets/icons/piece_diff_deserialize.ico new file mode 100644 index 000000000..1c93ddf66 Binary files /dev/null and b/assets/icons/piece_diff_deserialize.ico differ diff --git a/assets/icons/piece_diff_deserialize.svg b/assets/icons/piece_diff_deserialize.svg new file mode 100644 index 000000000..6f14b5d34 --- /dev/null +++ b/assets/icons/piece_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_diff_deserialize_24x24.png b/assets/icons/piece_diff_deserialize_24x24.png new file mode 100644 index 000000000..89080eda1 Binary files /dev/null and b/assets/icons/piece_diff_deserialize_24x24.png differ diff --git a/assets/icons/piece_diff_deserialize_512x512.png b/assets/icons/piece_diff_deserialize_512x512.png new file mode 100644 index 000000000..6119a0ec4 Binary files /dev/null and b/assets/icons/piece_diff_deserialize_512x512.png differ diff --git a/assets/icons/piece_diff_modify.ico b/assets/icons/piece_diff_modify.ico new file mode 100644 index 000000000..030acea0c Binary files /dev/null and b/assets/icons/piece_diff_modify.ico differ diff --git a/assets/icons/piece_diff_modify.svg b/assets/icons/piece_diff_modify.svg new file mode 100644 index 000000000..0f3fe5b5d --- /dev/null +++ b/assets/icons/piece_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_diff_modify_24x24.png b/assets/icons/piece_diff_modify_24x24.png new file mode 100644 index 000000000..9f430b85e Binary files /dev/null and b/assets/icons/piece_diff_modify_24x24.png differ diff --git a/assets/icons/piece_diff_modify_512x512.png b/assets/icons/piece_diff_modify_512x512.png new file mode 100644 index 000000000..0bebb58e1 Binary files /dev/null and b/assets/icons/piece_diff_modify_512x512.png differ diff --git a/assets/icons/piece_diff_serialize.ico b/assets/icons/piece_diff_serialize.ico new file mode 100644 index 000000000..8062526f4 Binary files /dev/null and b/assets/icons/piece_diff_serialize.ico differ diff --git a/assets/icons/piece_diff_serialize.svg b/assets/icons/piece_diff_serialize.svg new file mode 100644 index 000000000..f39f560b1 --- /dev/null +++ b/assets/icons/piece_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_diff_serialize_24x24.png b/assets/icons/piece_diff_serialize_24x24.png new file mode 100644 index 000000000..183798c76 Binary files /dev/null and b/assets/icons/piece_diff_serialize_24x24.png differ diff --git a/assets/icons/piece_diff_serialize_512x512.png b/assets/icons/piece_diff_serialize_512x512.png new file mode 100644 index 000000000..6efd51ecc Binary files /dev/null and b/assets/icons/piece_diff_serialize_512x512.png differ diff --git a/assets/icons/piece_id.ico b/assets/icons/piece_id.ico new file mode 100644 index 000000000..8dca5fabf Binary files /dev/null and b/assets/icons/piece_id.ico differ diff --git a/assets/icons/piece_id.svg b/assets/icons/piece_id.svg new file mode 100644 index 000000000..bac335bfa --- /dev/null +++ b/assets/icons/piece_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_id_24x24.png b/assets/icons/piece_id_24x24.png new file mode 100644 index 000000000..d0c730854 Binary files /dev/null and b/assets/icons/piece_id_24x24.png differ diff --git a/assets/icons/piece_id_512x512.png b/assets/icons/piece_id_512x512.png new file mode 100644 index 000000000..0bc8b6562 Binary files /dev/null and b/assets/icons/piece_id_512x512.png differ diff --git a/assets/icons/piece_id_deserialize.ico b/assets/icons/piece_id_deserialize.ico new file mode 100644 index 000000000..b644a9739 Binary files /dev/null and b/assets/icons/piece_id_deserialize.ico differ diff --git a/assets/icons/piece_id_deserialize.svg b/assets/icons/piece_id_deserialize.svg new file mode 100644 index 000000000..d510270e4 --- /dev/null +++ b/assets/icons/piece_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_id_deserialize_24x24.png b/assets/icons/piece_id_deserialize_24x24.png new file mode 100644 index 000000000..9a4e5ad7e Binary files /dev/null and b/assets/icons/piece_id_deserialize_24x24.png differ diff --git a/assets/icons/piece_id_deserialize_512x512.png b/assets/icons/piece_id_deserialize_512x512.png new file mode 100644 index 000000000..111723b5e Binary files /dev/null and b/assets/icons/piece_id_deserialize_512x512.png differ diff --git a/assets/icons/piece_id_modify.ico b/assets/icons/piece_id_modify.ico new file mode 100644 index 000000000..b2748a8e7 Binary files /dev/null and b/assets/icons/piece_id_modify.ico differ diff --git a/assets/icons/piece_id_modify.svg b/assets/icons/piece_id_modify.svg new file mode 100644 index 000000000..3ca7b3cb9 --- /dev/null +++ b/assets/icons/piece_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_id_modify_24x24.png b/assets/icons/piece_id_modify_24x24.png new file mode 100644 index 000000000..bed889e84 Binary files /dev/null and b/assets/icons/piece_id_modify_24x24.png differ diff --git a/assets/icons/piece_id_modify_512x512.png b/assets/icons/piece_id_modify_512x512.png new file mode 100644 index 000000000..885e5c238 Binary files /dev/null and b/assets/icons/piece_id_modify_512x512.png differ diff --git a/assets/icons/piece_id_serialize.ico b/assets/icons/piece_id_serialize.ico new file mode 100644 index 000000000..7196070d0 Binary files /dev/null and b/assets/icons/piece_id_serialize.ico differ diff --git a/assets/icons/piece_id_serialize.svg b/assets/icons/piece_id_serialize.svg new file mode 100644 index 000000000..14fa80434 --- /dev/null +++ b/assets/icons/piece_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/piece_id_serialize_24x24.png b/assets/icons/piece_id_serialize_24x24.png new file mode 100644 index 000000000..e6cda956f Binary files /dev/null and b/assets/icons/piece_id_serialize_24x24.png differ diff --git a/assets/icons/piece_id_serialize_512x512.png b/assets/icons/piece_id_serialize_512x512.png new file mode 100644 index 000000000..9c490633c Binary files /dev/null and b/assets/icons/piece_id_serialize_512x512.png differ diff --git a/assets/icons/pieces_diff.ico b/assets/icons/pieces_diff.ico new file mode 100644 index 000000000..53283877b Binary files /dev/null and b/assets/icons/pieces_diff.ico differ diff --git a/assets/icons/pieces_diff.svg b/assets/icons/pieces_diff.svg new file mode 100644 index 000000000..6b8105fc6 --- /dev/null +++ b/assets/icons/pieces_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/pieces_diff_24x24.png b/assets/icons/pieces_diff_24x24.png new file mode 100644 index 000000000..a6c8bb8f4 Binary files /dev/null and b/assets/icons/pieces_diff_24x24.png differ diff --git a/assets/icons/pieces_diff_512x512.png b/assets/icons/pieces_diff_512x512.png new file mode 100644 index 000000000..be3d31707 Binary files /dev/null and b/assets/icons/pieces_diff_512x512.png differ diff --git a/assets/icons/pieces_diff_deserialize.ico b/assets/icons/pieces_diff_deserialize.ico new file mode 100644 index 000000000..22ca7fa39 Binary files /dev/null and b/assets/icons/pieces_diff_deserialize.ico differ diff --git a/assets/icons/pieces_diff_deserialize.svg b/assets/icons/pieces_diff_deserialize.svg new file mode 100644 index 000000000..b18373d76 --- /dev/null +++ b/assets/icons/pieces_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/pieces_diff_deserialize_24x24.png b/assets/icons/pieces_diff_deserialize_24x24.png new file mode 100644 index 000000000..85703c596 Binary files /dev/null and b/assets/icons/pieces_diff_deserialize_24x24.png differ diff --git a/assets/icons/pieces_diff_deserialize_512x512.png b/assets/icons/pieces_diff_deserialize_512x512.png new file mode 100644 index 000000000..10336fa32 Binary files /dev/null and b/assets/icons/pieces_diff_deserialize_512x512.png differ diff --git a/assets/icons/pieces_diff_modify.ico b/assets/icons/pieces_diff_modify.ico new file mode 100644 index 000000000..154907d54 Binary files /dev/null and b/assets/icons/pieces_diff_modify.ico differ diff --git a/assets/icons/pieces_diff_modify.svg b/assets/icons/pieces_diff_modify.svg new file mode 100644 index 000000000..e2c6be4e2 --- /dev/null +++ b/assets/icons/pieces_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/pieces_diff_modify_24x24.png b/assets/icons/pieces_diff_modify_24x24.png new file mode 100644 index 000000000..c65519064 Binary files /dev/null and b/assets/icons/pieces_diff_modify_24x24.png differ diff --git a/assets/icons/pieces_diff_modify_512x512.png b/assets/icons/pieces_diff_modify_512x512.png new file mode 100644 index 000000000..09b07c2ea Binary files /dev/null and b/assets/icons/pieces_diff_modify_512x512.png differ diff --git a/assets/icons/pieces_diff_serialize.ico b/assets/icons/pieces_diff_serialize.ico new file mode 100644 index 000000000..f9080aeb3 Binary files /dev/null and b/assets/icons/pieces_diff_serialize.ico differ diff --git a/assets/icons/pieces_diff_serialize.svg b/assets/icons/pieces_diff_serialize.svg new file mode 100644 index 000000000..f05390cf5 --- /dev/null +++ b/assets/icons/pieces_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/pieces_diff_serialize_24x24.png b/assets/icons/pieces_diff_serialize_24x24.png new file mode 100644 index 000000000..494f39dfc Binary files /dev/null and b/assets/icons/pieces_diff_serialize_24x24.png differ diff --git a/assets/icons/pieces_diff_serialize_512x512.png b/assets/icons/pieces_diff_serialize_512x512.png new file mode 100644 index 000000000..cf230eb72 Binary files /dev/null and b/assets/icons/pieces_diff_serialize_512x512.png differ diff --git a/assets/icons/placeholder.ico b/assets/icons/placeholder.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/placeholder.ico differ diff --git a/assets/icons/placeholder.svg b/assets/icons/placeholder.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/placeholder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/placeholder_24x24.png b/assets/icons/placeholder_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/placeholder_24x24.png differ diff --git a/assets/icons/placeholder_512x512.png b/assets/icons/placeholder_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/placeholder_512x512.png differ diff --git a/assets/icons/plane.ico b/assets/icons/plane.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/plane.ico differ diff --git a/assets/icons/plane.svg b/assets/icons/plane.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/plane_24x24.png b/assets/icons/plane_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/plane_24x24.png differ diff --git a/assets/icons/plane_512x512.png b/assets/icons/plane_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/plane_512x512.png differ diff --git a/assets/icons/point.ico b/assets/icons/point.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/point.ico differ diff --git a/assets/icons/point.svg b/assets/icons/point.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/point_24x24.png b/assets/icons/point_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/point_24x24.png differ diff --git a/assets/icons/point_512x512.png b/assets/icons/point_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/point_512x512.png differ diff --git a/assets/icons/port_diff.ico b/assets/icons/port_diff.ico new file mode 100644 index 000000000..0dde8a26b Binary files /dev/null and b/assets/icons/port_diff.ico differ diff --git a/assets/icons/port_diff.svg b/assets/icons/port_diff.svg new file mode 100644 index 000000000..150b0da51 --- /dev/null +++ b/assets/icons/port_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_diff_24x24.png b/assets/icons/port_diff_24x24.png new file mode 100644 index 000000000..891d4f650 Binary files /dev/null and b/assets/icons/port_diff_24x24.png differ diff --git a/assets/icons/port_diff_512x512.png b/assets/icons/port_diff_512x512.png new file mode 100644 index 000000000..6f3456aa6 Binary files /dev/null and b/assets/icons/port_diff_512x512.png differ diff --git a/assets/icons/port_diff_deserialize.ico b/assets/icons/port_diff_deserialize.ico new file mode 100644 index 000000000..cacd20f91 Binary files /dev/null and b/assets/icons/port_diff_deserialize.ico differ diff --git a/assets/icons/port_diff_deserialize.svg b/assets/icons/port_diff_deserialize.svg new file mode 100644 index 000000000..71dd263f0 --- /dev/null +++ b/assets/icons/port_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_diff_deserialize_24x24.png b/assets/icons/port_diff_deserialize_24x24.png new file mode 100644 index 000000000..a2a43cbc4 Binary files /dev/null and b/assets/icons/port_diff_deserialize_24x24.png differ diff --git a/assets/icons/port_diff_deserialize_512x512.png b/assets/icons/port_diff_deserialize_512x512.png new file mode 100644 index 000000000..a8c68a396 Binary files /dev/null and b/assets/icons/port_diff_deserialize_512x512.png differ diff --git a/assets/icons/port_diff_modify.ico b/assets/icons/port_diff_modify.ico new file mode 100644 index 000000000..8c9b00ded Binary files /dev/null and b/assets/icons/port_diff_modify.ico differ diff --git a/assets/icons/port_diff_modify.svg b/assets/icons/port_diff_modify.svg new file mode 100644 index 000000000..74e90c05d --- /dev/null +++ b/assets/icons/port_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_diff_modify_24x24.png b/assets/icons/port_diff_modify_24x24.png new file mode 100644 index 000000000..86d83588f Binary files /dev/null and b/assets/icons/port_diff_modify_24x24.png differ diff --git a/assets/icons/port_diff_modify_512x512.png b/assets/icons/port_diff_modify_512x512.png new file mode 100644 index 000000000..71c186fc6 Binary files /dev/null and b/assets/icons/port_diff_modify_512x512.png differ diff --git a/assets/icons/port_diff_serialize.ico b/assets/icons/port_diff_serialize.ico new file mode 100644 index 000000000..e02989324 Binary files /dev/null and b/assets/icons/port_diff_serialize.ico differ diff --git a/assets/icons/port_diff_serialize.svg b/assets/icons/port_diff_serialize.svg new file mode 100644 index 000000000..93dd3d401 --- /dev/null +++ b/assets/icons/port_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_diff_serialize_24x24.png b/assets/icons/port_diff_serialize_24x24.png new file mode 100644 index 000000000..088b391d4 Binary files /dev/null and b/assets/icons/port_diff_serialize_24x24.png differ diff --git a/assets/icons/port_diff_serialize_512x512.png b/assets/icons/port_diff_serialize_512x512.png new file mode 100644 index 000000000..569735153 Binary files /dev/null and b/assets/icons/port_diff_serialize_512x512.png differ diff --git a/assets/icons/port_id.ico b/assets/icons/port_id.ico new file mode 100644 index 000000000..912b27e9b Binary files /dev/null and b/assets/icons/port_id.ico differ diff --git a/assets/icons/port_id.svg b/assets/icons/port_id.svg new file mode 100644 index 000000000..eed8e46e9 --- /dev/null +++ b/assets/icons/port_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_id_24x24.png b/assets/icons/port_id_24x24.png new file mode 100644 index 000000000..2068e8122 Binary files /dev/null and b/assets/icons/port_id_24x24.png differ diff --git a/assets/icons/port_id_512x512.png b/assets/icons/port_id_512x512.png new file mode 100644 index 000000000..da06ae864 Binary files /dev/null and b/assets/icons/port_id_512x512.png differ diff --git a/assets/icons/port_id_deserialize.ico b/assets/icons/port_id_deserialize.ico new file mode 100644 index 000000000..4a0a6fd1a Binary files /dev/null and b/assets/icons/port_id_deserialize.ico differ diff --git a/assets/icons/port_id_deserialize.svg b/assets/icons/port_id_deserialize.svg new file mode 100644 index 000000000..24014b848 --- /dev/null +++ b/assets/icons/port_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_id_deserialize_24x24.png b/assets/icons/port_id_deserialize_24x24.png new file mode 100644 index 000000000..de16ad564 Binary files /dev/null and b/assets/icons/port_id_deserialize_24x24.png differ diff --git a/assets/icons/port_id_deserialize_512x512.png b/assets/icons/port_id_deserialize_512x512.png new file mode 100644 index 000000000..3309cb1bb Binary files /dev/null and b/assets/icons/port_id_deserialize_512x512.png differ diff --git a/assets/icons/port_id_modify.ico b/assets/icons/port_id_modify.ico new file mode 100644 index 000000000..2cbb57147 Binary files /dev/null and b/assets/icons/port_id_modify.ico differ diff --git a/assets/icons/port_id_modify.svg b/assets/icons/port_id_modify.svg new file mode 100644 index 000000000..da5424fcf --- /dev/null +++ b/assets/icons/port_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_id_modify_24x24.png b/assets/icons/port_id_modify_24x24.png new file mode 100644 index 000000000..8ef6f01cb Binary files /dev/null and b/assets/icons/port_id_modify_24x24.png differ diff --git a/assets/icons/port_id_modify_512x512.png b/assets/icons/port_id_modify_512x512.png new file mode 100644 index 000000000..596d32d26 Binary files /dev/null and b/assets/icons/port_id_modify_512x512.png differ diff --git a/assets/icons/port_id_serialize.ico b/assets/icons/port_id_serialize.ico new file mode 100644 index 000000000..85b5de8ed Binary files /dev/null and b/assets/icons/port_id_serialize.ico differ diff --git a/assets/icons/port_id_serialize.svg b/assets/icons/port_id_serialize.svg new file mode 100644 index 000000000..c735e9870 --- /dev/null +++ b/assets/icons/port_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/port_id_serialize_24x24.png b/assets/icons/port_id_serialize_24x24.png new file mode 100644 index 000000000..32916f6c6 Binary files /dev/null and b/assets/icons/port_id_serialize_24x24.png differ diff --git a/assets/icons/port_id_serialize_512x512.png b/assets/icons/port_id_serialize_512x512.png new file mode 100644 index 000000000..2748dd0a2 Binary files /dev/null and b/assets/icons/port_id_serialize_512x512.png differ diff --git a/assets/icons/ports_diff.ico b/assets/icons/ports_diff.ico new file mode 100644 index 000000000..365cdf444 Binary files /dev/null and b/assets/icons/ports_diff.ico differ diff --git a/assets/icons/ports_diff.svg b/assets/icons/ports_diff.svg new file mode 100644 index 000000000..8113e42e9 --- /dev/null +++ b/assets/icons/ports_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/ports_diff_24x24.png b/assets/icons/ports_diff_24x24.png new file mode 100644 index 000000000..f1a365ffd Binary files /dev/null and b/assets/icons/ports_diff_24x24.png differ diff --git a/assets/icons/ports_diff_512x512.png b/assets/icons/ports_diff_512x512.png new file mode 100644 index 000000000..9203ae8bb Binary files /dev/null and b/assets/icons/ports_diff_512x512.png differ diff --git a/assets/icons/ports_diff_deserialize.ico b/assets/icons/ports_diff_deserialize.ico new file mode 100644 index 000000000..ffa07c93b Binary files /dev/null and b/assets/icons/ports_diff_deserialize.ico differ diff --git a/assets/icons/ports_diff_deserialize.svg b/assets/icons/ports_diff_deserialize.svg new file mode 100644 index 000000000..2873d58f4 --- /dev/null +++ b/assets/icons/ports_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/ports_diff_deserialize_24x24.png b/assets/icons/ports_diff_deserialize_24x24.png new file mode 100644 index 000000000..091c4d677 Binary files /dev/null and b/assets/icons/ports_diff_deserialize_24x24.png differ diff --git a/assets/icons/ports_diff_deserialize_512x512.png b/assets/icons/ports_diff_deserialize_512x512.png new file mode 100644 index 000000000..67f242eb9 Binary files /dev/null and b/assets/icons/ports_diff_deserialize_512x512.png differ diff --git a/assets/icons/ports_diff_modify.ico b/assets/icons/ports_diff_modify.ico new file mode 100644 index 000000000..339cdf404 Binary files /dev/null and b/assets/icons/ports_diff_modify.ico differ diff --git a/assets/icons/ports_diff_modify.svg b/assets/icons/ports_diff_modify.svg new file mode 100644 index 000000000..6c0e8e219 --- /dev/null +++ b/assets/icons/ports_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/ports_diff_modify_24x24.png b/assets/icons/ports_diff_modify_24x24.png new file mode 100644 index 000000000..9c8673108 Binary files /dev/null and b/assets/icons/ports_diff_modify_24x24.png differ diff --git a/assets/icons/ports_diff_modify_512x512.png b/assets/icons/ports_diff_modify_512x512.png new file mode 100644 index 000000000..d1c3568b1 Binary files /dev/null and b/assets/icons/ports_diff_modify_512x512.png differ diff --git a/assets/icons/ports_diff_serialize.ico b/assets/icons/ports_diff_serialize.ico new file mode 100644 index 000000000..b085a9d43 Binary files /dev/null and b/assets/icons/ports_diff_serialize.ico differ diff --git a/assets/icons/ports_diff_serialize.svg b/assets/icons/ports_diff_serialize.svg new file mode 100644 index 000000000..be3c6971d --- /dev/null +++ b/assets/icons/ports_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/ports_diff_serialize_24x24.png b/assets/icons/ports_diff_serialize_24x24.png new file mode 100644 index 000000000..387ec2c51 Binary files /dev/null and b/assets/icons/ports_diff_serialize_24x24.png differ diff --git a/assets/icons/ports_diff_serialize_512x512.png b/assets/icons/ports_diff_serialize_512x512.png new file mode 100644 index 000000000..703af82d1 Binary files /dev/null and b/assets/icons/ports_diff_serialize_512x512.png differ diff --git a/assets/icons/prop.ico b/assets/icons/prop.ico new file mode 100644 index 000000000..9ffd58df0 Binary files /dev/null and b/assets/icons/prop.ico differ diff --git a/assets/icons/prop.svg b/assets/icons/prop.svg new file mode 100644 index 000000000..ad3d9de16 --- /dev/null +++ b/assets/icons/prop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/prop_24x24.png b/assets/icons/prop_24x24.png new file mode 100644 index 000000000..b32545cce Binary files /dev/null and b/assets/icons/prop_24x24.png differ diff --git a/assets/icons/prop_512x512.png b/assets/icons/prop_512x512.png new file mode 100644 index 000000000..230a81bbc Binary files /dev/null and b/assets/icons/prop_512x512.png differ diff --git a/assets/icons/prop_deserialize.ico b/assets/icons/prop_deserialize.ico new file mode 100644 index 000000000..8952165f3 Binary files /dev/null and b/assets/icons/prop_deserialize.ico differ diff --git a/assets/icons/prop_deserialize.svg b/assets/icons/prop_deserialize.svg new file mode 100644 index 000000000..958a01c04 --- /dev/null +++ b/assets/icons/prop_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/prop_deserialize_24x24.png b/assets/icons/prop_deserialize_24x24.png new file mode 100644 index 000000000..2debf7759 Binary files /dev/null and b/assets/icons/prop_deserialize_24x24.png differ diff --git a/assets/icons/prop_deserialize_512x512.png b/assets/icons/prop_deserialize_512x512.png new file mode 100644 index 000000000..2c664cf4b Binary files /dev/null and b/assets/icons/prop_deserialize_512x512.png differ diff --git a/assets/icons/prop_diff_24x24.png b/assets/icons/prop_diff_24x24.png new file mode 100644 index 000000000..01e63038a Binary files /dev/null and b/assets/icons/prop_diff_24x24.png differ diff --git a/assets/icons/prop_diff_deserialize_24x24.png b/assets/icons/prop_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/prop_diff_deserialize_24x24.png differ diff --git a/assets/icons/prop_diff_modify_24x24.png b/assets/icons/prop_diff_modify_24x24.png new file mode 100644 index 000000000..37ad67eca Binary files /dev/null and b/assets/icons/prop_diff_modify_24x24.png differ diff --git a/assets/icons/prop_diff_serialize_24x24.png b/assets/icons/prop_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/prop_diff_serialize_24x24.png differ diff --git a/assets/icons/prop_id_24x24.png b/assets/icons/prop_id_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/prop_id_24x24.png differ diff --git a/assets/icons/prop_id_deserialize_24x24.png b/assets/icons/prop_id_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/prop_id_deserialize_24x24.png differ diff --git a/assets/icons/prop_id_modify_24x24.png b/assets/icons/prop_id_modify_24x24.png new file mode 100644 index 000000000..e01c2bc6f Binary files /dev/null and b/assets/icons/prop_id_modify_24x24.png differ diff --git a/assets/icons/prop_id_serialize_24x24.png b/assets/icons/prop_id_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/prop_id_serialize_24x24.png differ diff --git a/assets/icons/prop_modify.ico b/assets/icons/prop_modify.ico new file mode 100644 index 000000000..3eab38c24 Binary files /dev/null and b/assets/icons/prop_modify.ico differ diff --git a/assets/icons/prop_modify.svg b/assets/icons/prop_modify.svg new file mode 100644 index 000000000..d206212e9 --- /dev/null +++ b/assets/icons/prop_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/prop_modify_24x24.png b/assets/icons/prop_modify_24x24.png new file mode 100644 index 000000000..a0cc4d21c Binary files /dev/null and b/assets/icons/prop_modify_24x24.png differ diff --git a/assets/icons/prop_modify_512x512.png b/assets/icons/prop_modify_512x512.png new file mode 100644 index 000000000..fec60f88c Binary files /dev/null and b/assets/icons/prop_modify_512x512.png differ diff --git a/assets/icons/prop_serialize.ico b/assets/icons/prop_serialize.ico new file mode 100644 index 000000000..c5aaa2621 Binary files /dev/null and b/assets/icons/prop_serialize.ico differ diff --git a/assets/icons/prop_serialize.svg b/assets/icons/prop_serialize.svg new file mode 100644 index 000000000..88dcf68e9 --- /dev/null +++ b/assets/icons/prop_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/prop_serialize_24x24.png b/assets/icons/prop_serialize_24x24.png new file mode 100644 index 000000000..3fb13bb01 Binary files /dev/null and b/assets/icons/prop_serialize_24x24.png differ diff --git a/assets/icons/prop_serialize_512x512.png b/assets/icons/prop_serialize_512x512.png new file mode 100644 index 000000000..625658879 Binary files /dev/null and b/assets/icons/prop_serialize_512x512.png differ diff --git a/assets/icons/props_diff_24x24.png b/assets/icons/props_diff_24x24.png new file mode 100644 index 000000000..e6159a3b9 Binary files /dev/null and b/assets/icons/props_diff_24x24.png differ diff --git a/assets/icons/props_diff_deserialize_24x24.png b/assets/icons/props_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/props_diff_deserialize_24x24.png differ diff --git a/assets/icons/props_diff_modify_24x24.png b/assets/icons/props_diff_modify_24x24.png new file mode 100644 index 000000000..cbe1968df Binary files /dev/null and b/assets/icons/props_diff_modify_24x24.png differ diff --git a/assets/icons/props_diff_serialize_24x24.png b/assets/icons/props_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/props_diff_serialize_24x24.png differ diff --git a/assets/icons/quality.ico b/assets/icons/quality.ico index 21d9fbfaa..e5b3e91c6 100644 Binary files a/assets/icons/quality.ico and b/assets/icons/quality.ico differ diff --git a/assets/icons/quality.svg b/assets/icons/quality.svg index e700a2efe..a4dfff52e 100644 --- a/assets/icons/quality.svg +++ b/assets/icons/quality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/quality_24x24.png b/assets/icons/quality_24x24.png index 060dbd1d6..aa86e92ea 100644 Binary files a/assets/icons/quality_24x24.png and b/assets/icons/quality_24x24.png differ diff --git a/assets/icons/quality_512x512.png b/assets/icons/quality_512x512.png index f5ed357f2..92f55111b 100644 Binary files a/assets/icons/quality_512x512.png and b/assets/icons/quality_512x512.png differ diff --git a/assets/icons/quality_deserialize.ico b/assets/icons/quality_deserialize.ico deleted file mode 100644 index 41e5dcd75..000000000 Binary files a/assets/icons/quality_deserialize.ico and /dev/null differ diff --git a/assets/icons/quality_deserialize.svg b/assets/icons/quality_deserialize.svg deleted file mode 100644 index e32ad35ae..000000000 --- a/assets/icons/quality_deserialize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/quality_deserialize_24x24.png b/assets/icons/quality_deserialize_24x24.png index f1ea9bf5b..f7068dad8 100644 Binary files a/assets/icons/quality_deserialize_24x24.png and b/assets/icons/quality_deserialize_24x24.png differ diff --git a/assets/icons/quality_deserialize_512x512.png b/assets/icons/quality_deserialize_512x512.png deleted file mode 100644 index e2ca7a200..000000000 Binary files a/assets/icons/quality_deserialize_512x512.png and /dev/null differ diff --git a/assets/icons/quality_diff.ico b/assets/icons/quality_diff.ico new file mode 100644 index 000000000..a9649f253 Binary files /dev/null and b/assets/icons/quality_diff.ico differ diff --git a/assets/icons/quality_diff.svg b/assets/icons/quality_diff.svg new file mode 100644 index 000000000..0ee158efb --- /dev/null +++ b/assets/icons/quality_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_diff_24x24.png b/assets/icons/quality_diff_24x24.png new file mode 100644 index 000000000..f6c1493c6 Binary files /dev/null and b/assets/icons/quality_diff_24x24.png differ diff --git a/assets/icons/quality_diff_512x512.png b/assets/icons/quality_diff_512x512.png new file mode 100644 index 000000000..6bbb9490e Binary files /dev/null and b/assets/icons/quality_diff_512x512.png differ diff --git a/assets/icons/quality_diff_deserialize.ico b/assets/icons/quality_diff_deserialize.ico new file mode 100644 index 000000000..46aa0dfbf Binary files /dev/null and b/assets/icons/quality_diff_deserialize.ico differ diff --git a/assets/icons/quality_diff_deserialize.svg b/assets/icons/quality_diff_deserialize.svg new file mode 100644 index 000000000..d102c3d7d --- /dev/null +++ b/assets/icons/quality_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_diff_deserialize_24x24.png b/assets/icons/quality_diff_deserialize_24x24.png new file mode 100644 index 000000000..428f78041 Binary files /dev/null and b/assets/icons/quality_diff_deserialize_24x24.png differ diff --git a/assets/icons/quality_diff_deserialize_512x512.png b/assets/icons/quality_diff_deserialize_512x512.png new file mode 100644 index 000000000..eb66bec01 Binary files /dev/null and b/assets/icons/quality_diff_deserialize_512x512.png differ diff --git a/assets/icons/quality_diff_modify.ico b/assets/icons/quality_diff_modify.ico new file mode 100644 index 000000000..8a487a1af Binary files /dev/null and b/assets/icons/quality_diff_modify.ico differ diff --git a/assets/icons/quality_diff_modify.svg b/assets/icons/quality_diff_modify.svg new file mode 100644 index 000000000..043f270d5 --- /dev/null +++ b/assets/icons/quality_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_diff_modify_24x24.png b/assets/icons/quality_diff_modify_24x24.png new file mode 100644 index 000000000..aa54b54e8 Binary files /dev/null and b/assets/icons/quality_diff_modify_24x24.png differ diff --git a/assets/icons/quality_diff_modify_512x512.png b/assets/icons/quality_diff_modify_512x512.png new file mode 100644 index 000000000..00acd6e0e Binary files /dev/null and b/assets/icons/quality_diff_modify_512x512.png differ diff --git a/assets/icons/quality_diff_serialize.ico b/assets/icons/quality_diff_serialize.ico new file mode 100644 index 000000000..5a06dfc28 Binary files /dev/null and b/assets/icons/quality_diff_serialize.ico differ diff --git a/assets/icons/quality_diff_serialize.svg b/assets/icons/quality_diff_serialize.svg new file mode 100644 index 000000000..fa4c603d0 --- /dev/null +++ b/assets/icons/quality_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_diff_serialize_24x24.png b/assets/icons/quality_diff_serialize_24x24.png new file mode 100644 index 000000000..a45cc9e10 Binary files /dev/null and b/assets/icons/quality_diff_serialize_24x24.png differ diff --git a/assets/icons/quality_diff_serialize_512x512.png b/assets/icons/quality_diff_serialize_512x512.png new file mode 100644 index 000000000..a1e41484a Binary files /dev/null and b/assets/icons/quality_diff_serialize_512x512.png differ diff --git a/assets/icons/quality_id.ico b/assets/icons/quality_id.ico new file mode 100644 index 000000000..e50f18013 Binary files /dev/null and b/assets/icons/quality_id.ico differ diff --git a/assets/icons/quality_id.svg b/assets/icons/quality_id.svg new file mode 100644 index 000000000..08256b69c --- /dev/null +++ b/assets/icons/quality_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_id_24x24.png b/assets/icons/quality_id_24x24.png new file mode 100644 index 000000000..58a8d67ad Binary files /dev/null and b/assets/icons/quality_id_24x24.png differ diff --git a/assets/icons/quality_id_512x512.png b/assets/icons/quality_id_512x512.png new file mode 100644 index 000000000..50a4404c7 Binary files /dev/null and b/assets/icons/quality_id_512x512.png differ diff --git a/assets/icons/quality_id_deserialize.ico b/assets/icons/quality_id_deserialize.ico new file mode 100644 index 000000000..498895c5d Binary files /dev/null and b/assets/icons/quality_id_deserialize.ico differ diff --git a/assets/icons/quality_id_deserialize.svg b/assets/icons/quality_id_deserialize.svg new file mode 100644 index 000000000..8c74cc7e4 --- /dev/null +++ b/assets/icons/quality_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_id_deserialize_24x24.png b/assets/icons/quality_id_deserialize_24x24.png new file mode 100644 index 000000000..b8f6c758f Binary files /dev/null and b/assets/icons/quality_id_deserialize_24x24.png differ diff --git a/assets/icons/quality_id_deserialize_512x512.png b/assets/icons/quality_id_deserialize_512x512.png new file mode 100644 index 000000000..3a10ea468 Binary files /dev/null and b/assets/icons/quality_id_deserialize_512x512.png differ diff --git a/assets/icons/quality_id_modify.ico b/assets/icons/quality_id_modify.ico new file mode 100644 index 000000000..1dd6d3452 Binary files /dev/null and b/assets/icons/quality_id_modify.ico differ diff --git a/assets/icons/quality_id_modify.svg b/assets/icons/quality_id_modify.svg new file mode 100644 index 000000000..87f7eb05f --- /dev/null +++ b/assets/icons/quality_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_id_modify_24x24.png b/assets/icons/quality_id_modify_24x24.png new file mode 100644 index 000000000..83455f0e4 Binary files /dev/null and b/assets/icons/quality_id_modify_24x24.png differ diff --git a/assets/icons/quality_id_modify_512x512.png b/assets/icons/quality_id_modify_512x512.png new file mode 100644 index 000000000..109d15736 Binary files /dev/null and b/assets/icons/quality_id_modify_512x512.png differ diff --git a/assets/icons/quality_id_serialize.ico b/assets/icons/quality_id_serialize.ico new file mode 100644 index 000000000..00fe4f474 Binary files /dev/null and b/assets/icons/quality_id_serialize.ico differ diff --git a/assets/icons/quality_id_serialize.svg b/assets/icons/quality_id_serialize.svg new file mode 100644 index 000000000..d7b93e7ec --- /dev/null +++ b/assets/icons/quality_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/quality_id_serialize_24x24.png b/assets/icons/quality_id_serialize_24x24.png new file mode 100644 index 000000000..b65461288 Binary files /dev/null and b/assets/icons/quality_id_serialize_24x24.png differ diff --git a/assets/icons/quality_id_serialize_512x512.png b/assets/icons/quality_id_serialize_512x512.png new file mode 100644 index 000000000..e4cde783a Binary files /dev/null and b/assets/icons/quality_id_serialize_512x512.png differ diff --git a/assets/icons/quality_modify_24x24.png b/assets/icons/quality_modify_24x24.png index 78cc5485c..e01c2bc6f 100644 Binary files a/assets/icons/quality_modify_24x24.png and b/assets/icons/quality_modify_24x24.png differ diff --git a/assets/icons/quality_serialize.ico b/assets/icons/quality_serialize.ico deleted file mode 100644 index b9c923b3e..000000000 Binary files a/assets/icons/quality_serialize.ico and /dev/null differ diff --git a/assets/icons/quality_serialize.svg b/assets/icons/quality_serialize.svg deleted file mode 100644 index d344ed036..000000000 --- a/assets/icons/quality_serialize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/quality_serialize_24x24.png b/assets/icons/quality_serialize_24x24.png index e0bfef6a0..1d248d09d 100644 Binary files a/assets/icons/quality_serialize_24x24.png and b/assets/icons/quality_serialize_24x24.png differ diff --git a/assets/icons/quality_serialize_512x512.png b/assets/icons/quality_serialize_512x512.png deleted file mode 100644 index 755e6fec1..000000000 Binary files a/assets/icons/quality_serialize_512x512.png and /dev/null differ diff --git a/assets/icons/representation_diff.ico b/assets/icons/representation_diff.ico new file mode 100644 index 000000000..aac9638db Binary files /dev/null and b/assets/icons/representation_diff.ico differ diff --git a/assets/icons/representation_diff.svg b/assets/icons/representation_diff.svg new file mode 100644 index 000000000..fcd1237b7 --- /dev/null +++ b/assets/icons/representation_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_diff_24x24.png b/assets/icons/representation_diff_24x24.png new file mode 100644 index 000000000..5c044b6e4 Binary files /dev/null and b/assets/icons/representation_diff_24x24.png differ diff --git a/assets/icons/representation_diff_512x512.png b/assets/icons/representation_diff_512x512.png new file mode 100644 index 000000000..8830d779e Binary files /dev/null and b/assets/icons/representation_diff_512x512.png differ diff --git a/assets/icons/representation_diff_deserialize.ico b/assets/icons/representation_diff_deserialize.ico new file mode 100644 index 000000000..816cd97fb Binary files /dev/null and b/assets/icons/representation_diff_deserialize.ico differ diff --git a/assets/icons/representation_diff_deserialize.svg b/assets/icons/representation_diff_deserialize.svg new file mode 100644 index 000000000..4369cfc70 --- /dev/null +++ b/assets/icons/representation_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_diff_deserialize_24x24.png b/assets/icons/representation_diff_deserialize_24x24.png new file mode 100644 index 000000000..95d7dba02 Binary files /dev/null and b/assets/icons/representation_diff_deserialize_24x24.png differ diff --git a/assets/icons/representation_diff_deserialize_512x512.png b/assets/icons/representation_diff_deserialize_512x512.png new file mode 100644 index 000000000..286895714 Binary files /dev/null and b/assets/icons/representation_diff_deserialize_512x512.png differ diff --git a/assets/icons/representation_diff_modify.ico b/assets/icons/representation_diff_modify.ico new file mode 100644 index 000000000..a0c663ac6 Binary files /dev/null and b/assets/icons/representation_diff_modify.ico differ diff --git a/assets/icons/representation_diff_modify.svg b/assets/icons/representation_diff_modify.svg new file mode 100644 index 000000000..00e1b4783 --- /dev/null +++ b/assets/icons/representation_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_diff_modify_24x24.png b/assets/icons/representation_diff_modify_24x24.png new file mode 100644 index 000000000..3b13ed5e9 Binary files /dev/null and b/assets/icons/representation_diff_modify_24x24.png differ diff --git a/assets/icons/representation_diff_modify_512x512.png b/assets/icons/representation_diff_modify_512x512.png new file mode 100644 index 000000000..e6446101f Binary files /dev/null and b/assets/icons/representation_diff_modify_512x512.png differ diff --git a/assets/icons/representation_diff_serialize.ico b/assets/icons/representation_diff_serialize.ico new file mode 100644 index 000000000..094f5a468 Binary files /dev/null and b/assets/icons/representation_diff_serialize.ico differ diff --git a/assets/icons/representation_diff_serialize.svg b/assets/icons/representation_diff_serialize.svg new file mode 100644 index 000000000..7554c2ff7 --- /dev/null +++ b/assets/icons/representation_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_diff_serialize_24x24.png b/assets/icons/representation_diff_serialize_24x24.png new file mode 100644 index 000000000..d29b78750 Binary files /dev/null and b/assets/icons/representation_diff_serialize_24x24.png differ diff --git a/assets/icons/representation_diff_serialize_512x512.png b/assets/icons/representation_diff_serialize_512x512.png new file mode 100644 index 000000000..85e2706da Binary files /dev/null and b/assets/icons/representation_diff_serialize_512x512.png differ diff --git a/assets/icons/representation_id.ico b/assets/icons/representation_id.ico new file mode 100644 index 000000000..26131250a Binary files /dev/null and b/assets/icons/representation_id.ico differ diff --git a/assets/icons/representation_id.svg b/assets/icons/representation_id.svg new file mode 100644 index 000000000..ed2d1ecc3 --- /dev/null +++ b/assets/icons/representation_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_id_24x24.png b/assets/icons/representation_id_24x24.png new file mode 100644 index 000000000..7d28b654d Binary files /dev/null and b/assets/icons/representation_id_24x24.png differ diff --git a/assets/icons/representation_id_512x512.png b/assets/icons/representation_id_512x512.png new file mode 100644 index 000000000..1725ff98e Binary files /dev/null and b/assets/icons/representation_id_512x512.png differ diff --git a/assets/icons/representation_id_deserialize.ico b/assets/icons/representation_id_deserialize.ico new file mode 100644 index 000000000..c2dd09b4a Binary files /dev/null and b/assets/icons/representation_id_deserialize.ico differ diff --git a/assets/icons/representation_id_deserialize.svg b/assets/icons/representation_id_deserialize.svg new file mode 100644 index 000000000..3841f4e04 --- /dev/null +++ b/assets/icons/representation_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_id_deserialize_24x24.png b/assets/icons/representation_id_deserialize_24x24.png new file mode 100644 index 000000000..e158604ab Binary files /dev/null and b/assets/icons/representation_id_deserialize_24x24.png differ diff --git a/assets/icons/representation_id_deserialize_512x512.png b/assets/icons/representation_id_deserialize_512x512.png new file mode 100644 index 000000000..88944ce99 Binary files /dev/null and b/assets/icons/representation_id_deserialize_512x512.png differ diff --git a/assets/icons/representation_id_modify.ico b/assets/icons/representation_id_modify.ico new file mode 100644 index 000000000..4307eabb0 Binary files /dev/null and b/assets/icons/representation_id_modify.ico differ diff --git a/assets/icons/representation_id_modify.svg b/assets/icons/representation_id_modify.svg new file mode 100644 index 000000000..4f7f716ca --- /dev/null +++ b/assets/icons/representation_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_id_modify_24x24.png b/assets/icons/representation_id_modify_24x24.png new file mode 100644 index 000000000..108cfcde1 Binary files /dev/null and b/assets/icons/representation_id_modify_24x24.png differ diff --git a/assets/icons/representation_id_modify_512x512.png b/assets/icons/representation_id_modify_512x512.png new file mode 100644 index 000000000..1b1ab6d42 Binary files /dev/null and b/assets/icons/representation_id_modify_512x512.png differ diff --git a/assets/icons/representation_id_serialize.ico b/assets/icons/representation_id_serialize.ico new file mode 100644 index 000000000..0dfcdd5bd Binary files /dev/null and b/assets/icons/representation_id_serialize.ico differ diff --git a/assets/icons/representation_id_serialize.svg b/assets/icons/representation_id_serialize.svg new file mode 100644 index 000000000..e17901331 --- /dev/null +++ b/assets/icons/representation_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representation_id_serialize_24x24.png b/assets/icons/representation_id_serialize_24x24.png new file mode 100644 index 000000000..2a165b47c Binary files /dev/null and b/assets/icons/representation_id_serialize_24x24.png differ diff --git a/assets/icons/representation_id_serialize_512x512.png b/assets/icons/representation_id_serialize_512x512.png new file mode 100644 index 000000000..93f53bbe2 Binary files /dev/null and b/assets/icons/representation_id_serialize_512x512.png differ diff --git a/assets/icons/representations_diff.ico b/assets/icons/representations_diff.ico new file mode 100644 index 000000000..f4904bb6b Binary files /dev/null and b/assets/icons/representations_diff.ico differ diff --git a/assets/icons/representations_diff.svg b/assets/icons/representations_diff.svg new file mode 100644 index 000000000..2f618fea7 --- /dev/null +++ b/assets/icons/representations_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representations_diff_24x24.png b/assets/icons/representations_diff_24x24.png new file mode 100644 index 000000000..858310645 Binary files /dev/null and b/assets/icons/representations_diff_24x24.png differ diff --git a/assets/icons/representations_diff_512x512.png b/assets/icons/representations_diff_512x512.png new file mode 100644 index 000000000..e10bbbe54 Binary files /dev/null and b/assets/icons/representations_diff_512x512.png differ diff --git a/assets/icons/representations_diff_deserialize.ico b/assets/icons/representations_diff_deserialize.ico new file mode 100644 index 000000000..bc52990e5 Binary files /dev/null and b/assets/icons/representations_diff_deserialize.ico differ diff --git a/assets/icons/representations_diff_deserialize.svg b/assets/icons/representations_diff_deserialize.svg new file mode 100644 index 000000000..04efba627 --- /dev/null +++ b/assets/icons/representations_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representations_diff_deserialize_24x24.png b/assets/icons/representations_diff_deserialize_24x24.png new file mode 100644 index 000000000..272c5b65e Binary files /dev/null and b/assets/icons/representations_diff_deserialize_24x24.png differ diff --git a/assets/icons/representations_diff_deserialize_512x512.png b/assets/icons/representations_diff_deserialize_512x512.png new file mode 100644 index 000000000..cf4749572 Binary files /dev/null and b/assets/icons/representations_diff_deserialize_512x512.png differ diff --git a/assets/icons/representations_diff_modify.ico b/assets/icons/representations_diff_modify.ico new file mode 100644 index 000000000..50dde611f Binary files /dev/null and b/assets/icons/representations_diff_modify.ico differ diff --git a/assets/icons/representations_diff_modify.svg b/assets/icons/representations_diff_modify.svg new file mode 100644 index 000000000..fe2cebf8a --- /dev/null +++ b/assets/icons/representations_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representations_diff_modify_24x24.png b/assets/icons/representations_diff_modify_24x24.png new file mode 100644 index 000000000..966f1aeb8 Binary files /dev/null and b/assets/icons/representations_diff_modify_24x24.png differ diff --git a/assets/icons/representations_diff_modify_512x512.png b/assets/icons/representations_diff_modify_512x512.png new file mode 100644 index 000000000..74d6bf492 Binary files /dev/null and b/assets/icons/representations_diff_modify_512x512.png differ diff --git a/assets/icons/representations_diff_serialize.ico b/assets/icons/representations_diff_serialize.ico new file mode 100644 index 000000000..b61860d23 Binary files /dev/null and b/assets/icons/representations_diff_serialize.ico differ diff --git a/assets/icons/representations_diff_serialize.svg b/assets/icons/representations_diff_serialize.svg new file mode 100644 index 000000000..372d03f1c --- /dev/null +++ b/assets/icons/representations_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/representations_diff_serialize_24x24.png b/assets/icons/representations_diff_serialize_24x24.png new file mode 100644 index 000000000..48477e99e Binary files /dev/null and b/assets/icons/representations_diff_serialize_24x24.png differ diff --git a/assets/icons/representations_diff_serialize_512x512.png b/assets/icons/representations_diff_serialize_512x512.png new file mode 100644 index 000000000..ecd3e254c Binary files /dev/null and b/assets/icons/representations_diff_serialize_512x512.png differ diff --git a/assets/icons/select_kit.ico b/assets/icons/select_kit.ico new file mode 100644 index 000000000..8a5ce7a1e Binary files /dev/null and b/assets/icons/select_kit.ico differ diff --git a/assets/icons/select_kit.svg b/assets/icons/select_kit.svg new file mode 100644 index 000000000..45abbf317 --- /dev/null +++ b/assets/icons/select_kit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/select_kit_24x24.png b/assets/icons/select_kit_24x24.png new file mode 100644 index 000000000..0cf89ecf8 Binary files /dev/null and b/assets/icons/select_kit_24x24.png differ diff --git a/assets/icons/select_kit_512x512.png b/assets/icons/select_kit_512x512.png new file mode 100644 index 000000000..4c3094ce2 Binary files /dev/null and b/assets/icons/select_kit_512x512.png differ diff --git a/assets/icons/semiofile_deserialize.ico b/assets/icons/semiofile_deserialize.ico new file mode 100644 index 000000000..fcd98d233 Binary files /dev/null and b/assets/icons/semiofile_deserialize.ico differ diff --git a/assets/icons/semiofile_deserialize.svg b/assets/icons/semiofile_deserialize.svg new file mode 100644 index 000000000..6df24626c --- /dev/null +++ b/assets/icons/semiofile_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/semiofile_deserialize_24x24.png b/assets/icons/semiofile_deserialize_24x24.png new file mode 100644 index 000000000..7aca3efba Binary files /dev/null and b/assets/icons/semiofile_deserialize_24x24.png differ diff --git a/assets/icons/semiofile_deserialize_512x512.png b/assets/icons/semiofile_deserialize_512x512.png new file mode 100644 index 000000000..7edfac40c Binary files /dev/null and b/assets/icons/semiofile_deserialize_512x512.png differ diff --git a/assets/icons/semiofile_serialize.ico b/assets/icons/semiofile_serialize.ico new file mode 100644 index 000000000..177bfafb7 Binary files /dev/null and b/assets/icons/semiofile_serialize.ico differ diff --git a/assets/icons/semiofile_serialize.svg b/assets/icons/semiofile_serialize.svg new file mode 100644 index 000000000..994052d69 --- /dev/null +++ b/assets/icons/semiofile_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/semiofile_serialize_24x24.png b/assets/icons/semiofile_serialize_24x24.png new file mode 100644 index 000000000..3085e931f Binary files /dev/null and b/assets/icons/semiofile_serialize_24x24.png differ diff --git a/assets/icons/semiofile_serialize_512x512.png b/assets/icons/semiofile_serialize_512x512.png new file mode 100644 index 000000000..bf76b4a5a Binary files /dev/null and b/assets/icons/semiofile_serialize_512x512.png differ diff --git a/assets/icons/side_deserialize.ico b/assets/icons/side_deserialize.ico index cafb76a87..4f8ec678a 100644 Binary files a/assets/icons/side_deserialize.ico and b/assets/icons/side_deserialize.ico differ diff --git a/assets/icons/side_deserialize_24x24.png b/assets/icons/side_deserialize_24x24.png index 8371ded07..f7af40b00 100644 Binary files a/assets/icons/side_deserialize_24x24.png and b/assets/icons/side_deserialize_24x24.png differ diff --git a/assets/icons/side_deserialize_512x512.png b/assets/icons/side_deserialize_512x512.png index a4d31c39f..1155bbb80 100644 Binary files a/assets/icons/side_deserialize_512x512.png and b/assets/icons/side_deserialize_512x512.png differ diff --git a/assets/icons/side_diff.ico b/assets/icons/side_diff.ico new file mode 100644 index 000000000..0fb452e45 Binary files /dev/null and b/assets/icons/side_diff.ico differ diff --git a/assets/icons/side_diff.svg b/assets/icons/side_diff.svg new file mode 100644 index 000000000..6ad00a737 --- /dev/null +++ b/assets/icons/side_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/side_diff_24x24.png b/assets/icons/side_diff_24x24.png new file mode 100644 index 000000000..0b405dfc4 Binary files /dev/null and b/assets/icons/side_diff_24x24.png differ diff --git a/assets/icons/side_diff_512x512.png b/assets/icons/side_diff_512x512.png new file mode 100644 index 000000000..5cf77160f Binary files /dev/null and b/assets/icons/side_diff_512x512.png differ diff --git a/assets/icons/side_diff_deserialize.ico b/assets/icons/side_diff_deserialize.ico new file mode 100644 index 000000000..6c59c68a0 Binary files /dev/null and b/assets/icons/side_diff_deserialize.ico differ diff --git a/assets/icons/side_diff_deserialize.svg b/assets/icons/side_diff_deserialize.svg new file mode 100644 index 000000000..19e1e4b11 --- /dev/null +++ b/assets/icons/side_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/side_diff_deserialize_24x24.png b/assets/icons/side_diff_deserialize_24x24.png new file mode 100644 index 000000000..fda8038f0 Binary files /dev/null and b/assets/icons/side_diff_deserialize_24x24.png differ diff --git a/assets/icons/side_diff_deserialize_512x512.png b/assets/icons/side_diff_deserialize_512x512.png new file mode 100644 index 000000000..98e837fa0 Binary files /dev/null and b/assets/icons/side_diff_deserialize_512x512.png differ diff --git a/assets/icons/side_diff_modify.ico b/assets/icons/side_diff_modify.ico new file mode 100644 index 000000000..74511b2f9 Binary files /dev/null and b/assets/icons/side_diff_modify.ico differ diff --git a/assets/icons/side_diff_modify.svg b/assets/icons/side_diff_modify.svg new file mode 100644 index 000000000..ba02f3761 --- /dev/null +++ b/assets/icons/side_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/side_diff_modify_24x24.png b/assets/icons/side_diff_modify_24x24.png new file mode 100644 index 000000000..8cc09b249 Binary files /dev/null and b/assets/icons/side_diff_modify_24x24.png differ diff --git a/assets/icons/side_diff_modify_512x512.png b/assets/icons/side_diff_modify_512x512.png new file mode 100644 index 000000000..65c0cbfe7 Binary files /dev/null and b/assets/icons/side_diff_modify_512x512.png differ diff --git a/assets/icons/side_diff_serialie.ico b/assets/icons/side_diff_serialie.ico new file mode 100644 index 000000000..07c71a020 Binary files /dev/null and b/assets/icons/side_diff_serialie.ico differ diff --git a/assets/icons/side_diff_serialie.svg b/assets/icons/side_diff_serialie.svg new file mode 100644 index 000000000..a03c70e63 --- /dev/null +++ b/assets/icons/side_diff_serialie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/side_diff_serialie_24x24.png b/assets/icons/side_diff_serialie_24x24.png new file mode 100644 index 000000000..429d2f0af Binary files /dev/null and b/assets/icons/side_diff_serialie_24x24.png differ diff --git a/assets/icons/side_diff_serialie_512x512.png b/assets/icons/side_diff_serialie_512x512.png new file mode 100644 index 000000000..0469c3a45 Binary files /dev/null and b/assets/icons/side_diff_serialie_512x512.png differ diff --git a/assets/icons/side_diff_serialize.ico b/assets/icons/side_diff_serialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/side_diff_serialize.ico differ diff --git a/assets/icons/side_diff_serialize.svg b/assets/icons/side_diff_serialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/side_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/side_diff_serialize_24x24.png b/assets/icons/side_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/side_diff_serialize_24x24.png differ diff --git a/assets/icons/side_diff_serialize_512x512.png b/assets/icons/side_diff_serialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/side_diff_serialize_512x512.png differ diff --git a/assets/icons/side_serialize.ico b/assets/icons/side_serialize.ico index d080a818d..c4b43c860 100644 Binary files a/assets/icons/side_serialize.ico and b/assets/icons/side_serialize.ico differ diff --git a/assets/icons/side_serialize.svg b/assets/icons/side_serialize.svg index cdaa20d9a..a03a3edc7 100644 --- a/assets/icons/side_serialize.svg +++ b/assets/icons/side_serialize.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/assets/icons/side_serialize_24x24.png b/assets/icons/side_serialize_24x24.png index a6627d751..54e571f27 100644 Binary files a/assets/icons/side_serialize_24x24.png and b/assets/icons/side_serialize_24x24.png differ diff --git a/assets/icons/side_serialize_512x512.png b/assets/icons/side_serialize_512x512.png index a7a9d3425..045ac1e89 100644 Binary files a/assets/icons/side_serialize_512x512.png and b/assets/icons/side_serialize_512x512.png differ diff --git a/assets/icons/sides_diff_modify.ico b/assets/icons/sides_diff_modify.ico new file mode 100644 index 000000000..002a0c759 Binary files /dev/null and b/assets/icons/sides_diff_modify.ico differ diff --git a/assets/icons/sides_diff_modify.svg b/assets/icons/sides_diff_modify.svg new file mode 100644 index 000000000..960927b31 --- /dev/null +++ b/assets/icons/sides_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/sides_diff_modify_24x24.png b/assets/icons/sides_diff_modify_24x24.png new file mode 100644 index 000000000..ee21e276a Binary files /dev/null and b/assets/icons/sides_diff_modify_24x24.png differ diff --git a/assets/icons/sides_diff_modify_512x512.png b/assets/icons/sides_diff_modify_512x512.png new file mode 100644 index 000000000..bc4683104 Binary files /dev/null and b/assets/icons/sides_diff_modify_512x512.png differ diff --git a/assets/icons/source/attribute.zip b/assets/icons/source/attribute.zip new file mode 100644 index 000000000..9422905d1 Binary files /dev/null and b/assets/icons/source/attribute.zip differ diff --git a/assets/icons/source/attribute_deserialize.zip b/assets/icons/source/attribute_deserialize.zip new file mode 100644 index 000000000..e5f0afcb5 Binary files /dev/null and b/assets/icons/source/attribute_deserialize.zip differ diff --git a/assets/icons/source/attribute_diff.zip b/assets/icons/source/attribute_diff.zip new file mode 100644 index 000000000..0c82dce3c Binary files /dev/null and b/assets/icons/source/attribute_diff.zip differ diff --git a/assets/icons/source/attribute_diff_deserialize.zip b/assets/icons/source/attribute_diff_deserialize.zip new file mode 100644 index 000000000..9a58fc551 Binary files /dev/null and b/assets/icons/source/attribute_diff_deserialize.zip differ diff --git a/assets/icons/source/attribute_diff_modify.zip b/assets/icons/source/attribute_diff_modify.zip new file mode 100644 index 000000000..946f72363 Binary files /dev/null and b/assets/icons/source/attribute_diff_modify.zip differ diff --git a/assets/icons/source/attribute_diff_serialize.zip b/assets/icons/source/attribute_diff_serialize.zip new file mode 100644 index 000000000..d48e51374 Binary files /dev/null and b/assets/icons/source/attribute_diff_serialize.zip differ diff --git a/assets/icons/source/attribute_id_deserialize.zip b/assets/icons/source/attribute_id_deserialize.zip new file mode 100644 index 000000000..c4809a1d3 Binary files /dev/null and b/assets/icons/source/attribute_id_deserialize.zip differ diff --git a/assets/icons/source/attribute_id_serialize.zip b/assets/icons/source/attribute_id_serialize.zip new file mode 100644 index 000000000..2b7ff0487 Binary files /dev/null and b/assets/icons/source/attribute_id_serialize.zip differ diff --git a/assets/icons/source/attribute_serialize.zip b/assets/icons/source/attribute_serialize.zip new file mode 100644 index 000000000..9d2a40a3a Binary files /dev/null and b/assets/icons/source/attribute_serialize.zip differ diff --git a/assets/icons/source/attributes_diff.zip b/assets/icons/source/attributes_diff.zip new file mode 100644 index 000000000..f0f0138a4 Binary files /dev/null and b/assets/icons/source/attributes_diff.zip differ diff --git a/assets/icons/source/attributes_diff_deserialize.zip b/assets/icons/source/attributes_diff_deserialize.zip new file mode 100644 index 000000000..def0a74f6 Binary files /dev/null and b/assets/icons/source/attributes_diff_deserialize.zip differ diff --git a/assets/icons/source/attributes_diff_modify.zip b/assets/icons/source/attributes_diff_modify.zip new file mode 100644 index 000000000..ee69dab7e Binary files /dev/null and b/assets/icons/source/attributes_diff_modify.zip differ diff --git a/assets/icons/source/attributes_diff_serialize.zip b/assets/icons/source/attributes_diff_serialize.zip new file mode 100644 index 000000000..eb382108a Binary files /dev/null and b/assets/icons/source/attributes_diff_serialize.zip differ diff --git a/assets/icons/source/author_id.zip b/assets/icons/source/author_id.zip new file mode 100644 index 000000000..f07899751 Binary files /dev/null and b/assets/icons/source/author_id.zip differ diff --git a/assets/icons/source/author_id_deserialize.zip b/assets/icons/source/author_id_deserialize.zip new file mode 100644 index 000000000..391484ad4 Binary files /dev/null and b/assets/icons/source/author_id_deserialize.zip differ diff --git a/assets/icons/source/author_id_modify.zip b/assets/icons/source/author_id_modify.zip new file mode 100644 index 000000000..6781b8f48 Binary files /dev/null and b/assets/icons/source/author_id_modify.zip differ diff --git a/assets/icons/source/author_id_serialize.zip b/assets/icons/source/author_id_serialize.zip new file mode 100644 index 000000000..6e20b692a Binary files /dev/null and b/assets/icons/source/author_id_serialize.zip differ diff --git a/assets/icons/source/benchmark.zip b/assets/icons/source/benchmark.zip new file mode 100644 index 000000000..b4f79ab78 Binary files /dev/null and b/assets/icons/source/benchmark.zip differ diff --git a/assets/icons/source/benchmark_deserialize.zip b/assets/icons/source/benchmark_deserialize.zip new file mode 100644 index 000000000..9c0aeff1e Binary files /dev/null and b/assets/icons/source/benchmark_deserialize.zip differ diff --git a/assets/icons/source/benchmark_modify.zip b/assets/icons/source/benchmark_modify.zip new file mode 100644 index 000000000..69ad9c3f7 Binary files /dev/null and b/assets/icons/source/benchmark_modify.zip differ diff --git a/assets/icons/source/benchmark_serialize.zip b/assets/icons/source/benchmark_serialize.zip new file mode 100644 index 000000000..663fe1cae Binary files /dev/null and b/assets/icons/source/benchmark_serialize.zip differ diff --git a/assets/icons/source/connection_diff.zip b/assets/icons/source/connection_diff.zip new file mode 100644 index 000000000..46e34950c Binary files /dev/null and b/assets/icons/source/connection_diff.zip differ diff --git a/assets/icons/source/connection_diff_deserialize.zip b/assets/icons/source/connection_diff_deserialize.zip new file mode 100644 index 000000000..0cfd07b7b Binary files /dev/null and b/assets/icons/source/connection_diff_deserialize.zip differ diff --git a/assets/icons/source/connection_diff_modify.zip b/assets/icons/source/connection_diff_modify.zip new file mode 100644 index 000000000..6c559b6d2 Binary files /dev/null and b/assets/icons/source/connection_diff_modify.zip differ diff --git a/assets/icons/source/connection_diff_serialize.zip b/assets/icons/source/connection_diff_serialize.zip new file mode 100644 index 000000000..bc19625d7 Binary files /dev/null and b/assets/icons/source/connection_diff_serialize.zip differ diff --git a/assets/icons/source/connection_id.zip b/assets/icons/source/connection_id.zip new file mode 100644 index 000000000..7f6b83c9d Binary files /dev/null and b/assets/icons/source/connection_id.zip differ diff --git a/assets/icons/source/connection_id_deserialize.zip b/assets/icons/source/connection_id_deserialize.zip new file mode 100644 index 000000000..187365961 Binary files /dev/null and b/assets/icons/source/connection_id_deserialize.zip differ diff --git a/assets/icons/source/connection_id_modify.zip b/assets/icons/source/connection_id_modify.zip new file mode 100644 index 000000000..5143f1f3e Binary files /dev/null and b/assets/icons/source/connection_id_modify.zip differ diff --git a/assets/icons/source/connection_id_serialize.zip b/assets/icons/source/connection_id_serialize.zip new file mode 100644 index 000000000..a88a84a72 Binary files /dev/null and b/assets/icons/source/connection_id_serialize.zip differ diff --git a/assets/icons/source/connections_diff.zip b/assets/icons/source/connections_diff.zip new file mode 100644 index 000000000..de4ffc1a0 Binary files /dev/null and b/assets/icons/source/connections_diff.zip differ diff --git a/assets/icons/source/connections_diff_deserialize.zip b/assets/icons/source/connections_diff_deserialize.zip new file mode 100644 index 000000000..717e41afa Binary files /dev/null and b/assets/icons/source/connections_diff_deserialize.zip differ diff --git a/assets/icons/source/connections_diff_modify.zip b/assets/icons/source/connections_diff_modify.zip new file mode 100644 index 000000000..7807d3a41 Binary files /dev/null and b/assets/icons/source/connections_diff_modify.zip differ diff --git a/assets/icons/source/connections_diff_serialize.zip b/assets/icons/source/connections_diff_serialize.zip new file mode 100644 index 000000000..7fe4ddd75 Binary files /dev/null and b/assets/icons/source/connections_diff_serialize.zip differ diff --git a/assets/icons/source/design_diff.zip b/assets/icons/source/design_diff.zip new file mode 100644 index 000000000..6bec0284d Binary files /dev/null and b/assets/icons/source/design_diff.zip differ diff --git a/assets/icons/source/design_diff_deserializze.zip b/assets/icons/source/design_diff_deserializze.zip new file mode 100644 index 000000000..6f1229920 Binary files /dev/null and b/assets/icons/source/design_diff_deserializze.zip differ diff --git a/assets/icons/source/design_diff_modify.zip b/assets/icons/source/design_diff_modify.zip new file mode 100644 index 000000000..5be23d35f Binary files /dev/null and b/assets/icons/source/design_diff_modify.zip differ diff --git a/assets/icons/source/design_diff_serialize.zip b/assets/icons/source/design_diff_serialize.zip new file mode 100644 index 000000000..4ac007b22 Binary files /dev/null and b/assets/icons/source/design_diff_serialize.zip differ diff --git a/assets/icons/source/design_id.zip b/assets/icons/source/design_id.zip new file mode 100644 index 000000000..b712f9008 Binary files /dev/null and b/assets/icons/source/design_id.zip differ diff --git a/assets/icons/source/design_id_deserialize.zip b/assets/icons/source/design_id_deserialize.zip new file mode 100644 index 000000000..a22c4b719 Binary files /dev/null and b/assets/icons/source/design_id_deserialize.zip differ diff --git a/assets/icons/source/design_id_modify.zip b/assets/icons/source/design_id_modify.zip new file mode 100644 index 000000000..e371d70d4 Binary files /dev/null and b/assets/icons/source/design_id_modify.zip differ diff --git a/assets/icons/source/design_id_serialize.zip b/assets/icons/source/design_id_serialize.zip new file mode 100644 index 000000000..55f8278a6 Binary files /dev/null and b/assets/icons/source/design_id_serialize.zip differ diff --git a/assets/icons/source/designs_diff.zip b/assets/icons/source/designs_diff.zip new file mode 100644 index 000000000..664e0ae05 Binary files /dev/null and b/assets/icons/source/designs_diff.zip differ diff --git a/assets/icons/source/designs_diff_deserialize.zip b/assets/icons/source/designs_diff_deserialize.zip new file mode 100644 index 000000000..9e7fe218f Binary files /dev/null and b/assets/icons/source/designs_diff_deserialize.zip differ diff --git a/assets/icons/source/designs_diff_modify.zip b/assets/icons/source/designs_diff_modify.zip new file mode 100644 index 000000000..5d1aea1b9 Binary files /dev/null and b/assets/icons/source/designs_diff_modify.zip differ diff --git a/assets/icons/source/designs_diff_serialize.zip b/assets/icons/source/designs_diff_serialize.zip new file mode 100644 index 000000000..db40caf0d Binary files /dev/null and b/assets/icons/source/designs_diff_serialize.zip differ diff --git a/assets/icons/source/file.zip b/assets/icons/source/file.zip new file mode 100644 index 000000000..f2a7519d1 Binary files /dev/null and b/assets/icons/source/file.zip differ diff --git a/assets/icons/source/file_deserialize.zip b/assets/icons/source/file_deserialize.zip new file mode 100644 index 000000000..83a2649bc Binary files /dev/null and b/assets/icons/source/file_deserialize.zip differ diff --git a/assets/icons/source/file_diff.zip b/assets/icons/source/file_diff.zip new file mode 100644 index 000000000..0fd69b7df Binary files /dev/null and b/assets/icons/source/file_diff.zip differ diff --git a/assets/icons/source/file_diff_deserialize.zip b/assets/icons/source/file_diff_deserialize.zip new file mode 100644 index 000000000..92fc464d0 Binary files /dev/null and b/assets/icons/source/file_diff_deserialize.zip differ diff --git a/assets/icons/source/file_diff_modify.zip b/assets/icons/source/file_diff_modify.zip new file mode 100644 index 000000000..7c7f4b98d Binary files /dev/null and b/assets/icons/source/file_diff_modify.zip differ diff --git a/assets/icons/source/file_diff_serialize.zip b/assets/icons/source/file_diff_serialize.zip new file mode 100644 index 000000000..1a147e1a1 Binary files /dev/null and b/assets/icons/source/file_diff_serialize.zip differ diff --git a/assets/icons/source/file_id.zip b/assets/icons/source/file_id.zip new file mode 100644 index 000000000..74b363421 Binary files /dev/null and b/assets/icons/source/file_id.zip differ diff --git a/assets/icons/source/file_id_deserialize.zip b/assets/icons/source/file_id_deserialize.zip new file mode 100644 index 000000000..577c16b54 Binary files /dev/null and b/assets/icons/source/file_id_deserialize.zip differ diff --git a/assets/icons/source/file_id_modify.zip b/assets/icons/source/file_id_modify.zip new file mode 100644 index 000000000..aa6746164 Binary files /dev/null and b/assets/icons/source/file_id_modify.zip differ diff --git a/assets/icons/source/file_id_serialize.zip b/assets/icons/source/file_id_serialize.zip new file mode 100644 index 000000000..0a5351ecc Binary files /dev/null and b/assets/icons/source/file_id_serialize.zip differ diff --git a/assets/icons/source/file_modify.zip b/assets/icons/source/file_modify.zip new file mode 100644 index 000000000..a6a14e2c9 Binary files /dev/null and b/assets/icons/source/file_modify.zip differ diff --git a/assets/icons/source/file_serialize.zip b/assets/icons/source/file_serialize.zip new file mode 100644 index 000000000..e52b24fe2 Binary files /dev/null and b/assets/icons/source/file_serialize.zip differ diff --git a/assets/icons/source/files_diff.zip b/assets/icons/source/files_diff.zip new file mode 100644 index 000000000..c267e9901 Binary files /dev/null and b/assets/icons/source/files_diff.zip differ diff --git a/assets/icons/source/files_diff_deserialize.zip b/assets/icons/source/files_diff_deserialize.zip new file mode 100644 index 000000000..b99aa5ebb Binary files /dev/null and b/assets/icons/source/files_diff_deserialize.zip differ diff --git a/assets/icons/source/files_diff_modify.zip b/assets/icons/source/files_diff_modify.zip new file mode 100644 index 000000000..f91a36dcb Binary files /dev/null and b/assets/icons/source/files_diff_modify.zip differ diff --git a/assets/icons/source/files_diff_serialize.zip b/assets/icons/source/files_diff_serialize.zip new file mode 100644 index 000000000..ecf7b13a5 Binary files /dev/null and b/assets/icons/source/files_diff_serialize.zip differ diff --git a/assets/icons/source/group.zip b/assets/icons/source/group.zip new file mode 100644 index 000000000..cdcaf5804 Binary files /dev/null and b/assets/icons/source/group.zip differ diff --git a/assets/icons/source/group_diff.zip b/assets/icons/source/group_diff.zip new file mode 100644 index 000000000..02fd36f9a Binary files /dev/null and b/assets/icons/source/group_diff.zip differ diff --git a/assets/icons/source/group_diff_deserialize.zip b/assets/icons/source/group_diff_deserialize.zip new file mode 100644 index 000000000..8406140e9 Binary files /dev/null and b/assets/icons/source/group_diff_deserialize.zip differ diff --git a/assets/icons/source/group_diff_serialize.zip b/assets/icons/source/group_diff_serialize.zip new file mode 100644 index 000000000..421581e5c Binary files /dev/null and b/assets/icons/source/group_diff_serialize.zip differ diff --git a/assets/icons/source/group_id.zip b/assets/icons/source/group_id.zip new file mode 100644 index 000000000..82925d24f Binary files /dev/null and b/assets/icons/source/group_id.zip differ diff --git a/assets/icons/source/group_id_deserialize.zip b/assets/icons/source/group_id_deserialize.zip new file mode 100644 index 000000000..70dee9b2b Binary files /dev/null and b/assets/icons/source/group_id_deserialize.zip differ diff --git a/assets/icons/source/group_id_modify.zip b/assets/icons/source/group_id_modify.zip new file mode 100644 index 000000000..6c26d216f Binary files /dev/null and b/assets/icons/source/group_id_modify.zip differ diff --git a/assets/icons/source/group_id_serialize.zip b/assets/icons/source/group_id_serialize.zip new file mode 100644 index 000000000..3b6e25193 Binary files /dev/null and b/assets/icons/source/group_id_serialize.zip differ diff --git a/assets/icons/source/groups_diff.zip b/assets/icons/source/groups_diff.zip new file mode 100644 index 000000000..b53a10f5d Binary files /dev/null and b/assets/icons/source/groups_diff.zip differ diff --git a/assets/icons/source/groups_diff_deserialize.zip b/assets/icons/source/groups_diff_deserialize.zip new file mode 100644 index 000000000..d435493ee Binary files /dev/null and b/assets/icons/source/groups_diff_deserialize.zip differ diff --git a/assets/icons/source/groups_diff_modify.zip b/assets/icons/source/groups_diff_modify.zip new file mode 100644 index 000000000..481d617dc Binary files /dev/null and b/assets/icons/source/groups_diff_modify.zip differ diff --git a/assets/icons/source/groups_diff_serialize.zip b/assets/icons/source/groups_diff_serialize.zip new file mode 100644 index 000000000..78fb14e59 Binary files /dev/null and b/assets/icons/source/groups_diff_serialize.zip differ diff --git a/assets/icons/source/kit_diff.zip b/assets/icons/source/kit_diff.zip new file mode 100644 index 000000000..965c0fd7f Binary files /dev/null and b/assets/icons/source/kit_diff.zip differ diff --git a/assets/icons/source/kit_diff_deserialize.zip b/assets/icons/source/kit_diff_deserialize.zip new file mode 100644 index 000000000..74562cdd7 Binary files /dev/null and b/assets/icons/source/kit_diff_deserialize.zip differ diff --git a/assets/icons/source/kit_diff_modify.zip b/assets/icons/source/kit_diff_modify.zip new file mode 100644 index 000000000..e6fdb6ed6 Binary files /dev/null and b/assets/icons/source/kit_diff_modify.zip differ diff --git a/assets/icons/source/kit_diff_serialize.zip b/assets/icons/source/kit_diff_serialize.zip new file mode 100644 index 000000000..41e3cb962 Binary files /dev/null and b/assets/icons/source/kit_diff_serialize.zip differ diff --git a/assets/icons/source/kit_id.zip b/assets/icons/source/kit_id.zip new file mode 100644 index 000000000..6732a1f01 Binary files /dev/null and b/assets/icons/source/kit_id.zip differ diff --git a/assets/icons/source/kit_id_deserialize.zip b/assets/icons/source/kit_id_deserialize.zip new file mode 100644 index 000000000..1c06d9cdd Binary files /dev/null and b/assets/icons/source/kit_id_deserialize.zip differ diff --git a/assets/icons/source/kit_id_modify.zip b/assets/icons/source/kit_id_modify.zip new file mode 100644 index 000000000..fe69fd4e8 Binary files /dev/null and b/assets/icons/source/kit_id_modify.zip differ diff --git a/assets/icons/source/kit_id_serialize.zip b/assets/icons/source/kit_id_serialize.zip new file mode 100644 index 000000000..622199508 Binary files /dev/null and b/assets/icons/source/kit_id_serialize.zip differ diff --git a/assets/icons/source/kit_select.zip b/assets/icons/source/kit_select.zip new file mode 100644 index 000000000..a463bc2a7 Binary files /dev/null and b/assets/icons/source/kit_select.zip differ diff --git a/assets/icons/source/kits_diff.zip b/assets/icons/source/kits_diff.zip new file mode 100644 index 000000000..af84d169c Binary files /dev/null and b/assets/icons/source/kits_diff.zip differ diff --git a/assets/icons/source/kits_diff_deserialize.zip b/assets/icons/source/kits_diff_deserialize.zip new file mode 100644 index 000000000..607188a27 Binary files /dev/null and b/assets/icons/source/kits_diff_deserialize.zip differ diff --git a/assets/icons/source/kits_diff_modify.zip b/assets/icons/source/kits_diff_modify.zip new file mode 100644 index 000000000..c8890faf0 Binary files /dev/null and b/assets/icons/source/kits_diff_modify.zip differ diff --git a/assets/icons/source/kits_diff_serialize.zip b/assets/icons/source/kits_diff_serialize.zip new file mode 100644 index 000000000..ee8ecb518 Binary files /dev/null and b/assets/icons/source/kits_diff_serialize.zip differ diff --git a/assets/icons/source/layer.zip b/assets/icons/source/layer.zip new file mode 100644 index 000000000..d3411a568 Binary files /dev/null and b/assets/icons/source/layer.zip differ diff --git a/assets/icons/source/layer_deserialize.zip b/assets/icons/source/layer_deserialize.zip new file mode 100644 index 000000000..70771f144 Binary files /dev/null and b/assets/icons/source/layer_deserialize.zip differ diff --git a/assets/icons/source/layer_id.zip b/assets/icons/source/layer_id.zip new file mode 100644 index 000000000..ca0bd2d0e Binary files /dev/null and b/assets/icons/source/layer_id.zip differ diff --git a/assets/icons/source/layer_id_deserialize.zip b/assets/icons/source/layer_id_deserialize.zip new file mode 100644 index 000000000..e7af532fa Binary files /dev/null and b/assets/icons/source/layer_id_deserialize.zip differ diff --git a/assets/icons/source/layer_id_modify.zip b/assets/icons/source/layer_id_modify.zip new file mode 100644 index 000000000..de18bc3e4 Binary files /dev/null and b/assets/icons/source/layer_id_modify.zip differ diff --git a/assets/icons/source/layer_id_serialize.zip b/assets/icons/source/layer_id_serialize.zip new file mode 100644 index 000000000..5290d80c1 Binary files /dev/null and b/assets/icons/source/layer_id_serialize.zip differ diff --git a/assets/icons/source/layer_modify.zip b/assets/icons/source/layer_modify.zip new file mode 100644 index 000000000..e1681381d Binary files /dev/null and b/assets/icons/source/layer_modify.zip differ diff --git a/assets/icons/source/layer_serialize.zip b/assets/icons/source/layer_serialize.zip new file mode 100644 index 000000000..60bc70da2 Binary files /dev/null and b/assets/icons/source/layer_serialize.zip differ diff --git a/assets/icons/source/piece_diff.zip b/assets/icons/source/piece_diff.zip new file mode 100644 index 000000000..dc32f0d0f Binary files /dev/null and b/assets/icons/source/piece_diff.zip differ diff --git a/assets/icons/source/piece_diff_deserialize.zip b/assets/icons/source/piece_diff_deserialize.zip new file mode 100644 index 000000000..35f09ad44 Binary files /dev/null and b/assets/icons/source/piece_diff_deserialize.zip differ diff --git a/assets/icons/source/piece_diff_modify.zip b/assets/icons/source/piece_diff_modify.zip new file mode 100644 index 000000000..08fdf3daa Binary files /dev/null and b/assets/icons/source/piece_diff_modify.zip differ diff --git a/assets/icons/source/piece_diff_serialize.zip b/assets/icons/source/piece_diff_serialize.zip new file mode 100644 index 000000000..150afc094 Binary files /dev/null and b/assets/icons/source/piece_diff_serialize.zip differ diff --git a/assets/icons/source/piece_id.zip b/assets/icons/source/piece_id.zip new file mode 100644 index 000000000..da62690b6 Binary files /dev/null and b/assets/icons/source/piece_id.zip differ diff --git a/assets/icons/source/piece_id_deserialize.zip b/assets/icons/source/piece_id_deserialize.zip new file mode 100644 index 000000000..a7b2beb64 Binary files /dev/null and b/assets/icons/source/piece_id_deserialize.zip differ diff --git a/assets/icons/source/piece_id_modify.zip b/assets/icons/source/piece_id_modify.zip new file mode 100644 index 000000000..12f5fa16e Binary files /dev/null and b/assets/icons/source/piece_id_modify.zip differ diff --git a/assets/icons/source/piece_id_serialize.zip b/assets/icons/source/piece_id_serialize.zip new file mode 100644 index 000000000..a9f383e42 Binary files /dev/null and b/assets/icons/source/piece_id_serialize.zip differ diff --git a/assets/icons/source/pieces_diff.zip b/assets/icons/source/pieces_diff.zip new file mode 100644 index 000000000..a08e549f6 Binary files /dev/null and b/assets/icons/source/pieces_diff.zip differ diff --git a/assets/icons/source/pieces_diff_deserialize.zip b/assets/icons/source/pieces_diff_deserialize.zip new file mode 100644 index 000000000..4e9f484ee Binary files /dev/null and b/assets/icons/source/pieces_diff_deserialize.zip differ diff --git a/assets/icons/source/pieces_diff_modify.zip b/assets/icons/source/pieces_diff_modify.zip new file mode 100644 index 000000000..386c35d4d Binary files /dev/null and b/assets/icons/source/pieces_diff_modify.zip differ diff --git a/assets/icons/source/pieces_diff_serialize.zip b/assets/icons/source/pieces_diff_serialize.zip new file mode 100644 index 000000000..450edb053 Binary files /dev/null and b/assets/icons/source/pieces_diff_serialize.zip differ diff --git a/assets/icons/source/placeholder.zip b/assets/icons/source/placeholder.zip new file mode 100644 index 000000000..8fe9a03db Binary files /dev/null and b/assets/icons/source/placeholder.zip differ diff --git a/assets/icons/source/plane.zip b/assets/icons/source/plane.zip new file mode 100644 index 000000000..8fe9a03db Binary files /dev/null and b/assets/icons/source/plane.zip differ diff --git a/assets/icons/source/point.zip b/assets/icons/source/point.zip new file mode 100644 index 000000000..8fe9a03db Binary files /dev/null and b/assets/icons/source/point.zip differ diff --git a/assets/icons/source/port_diff.zip b/assets/icons/source/port_diff.zip new file mode 100644 index 000000000..97d962853 Binary files /dev/null and b/assets/icons/source/port_diff.zip differ diff --git a/assets/icons/source/port_diff_deserialize.zip b/assets/icons/source/port_diff_deserialize.zip new file mode 100644 index 000000000..36be57f36 Binary files /dev/null and b/assets/icons/source/port_diff_deserialize.zip differ diff --git a/assets/icons/source/port_diff_modify.zip b/assets/icons/source/port_diff_modify.zip new file mode 100644 index 000000000..720a7ae4e Binary files /dev/null and b/assets/icons/source/port_diff_modify.zip differ diff --git a/assets/icons/source/port_diff_serialize.zip b/assets/icons/source/port_diff_serialize.zip new file mode 100644 index 000000000..183499c84 Binary files /dev/null and b/assets/icons/source/port_diff_serialize.zip differ diff --git a/assets/icons/source/port_id.zip b/assets/icons/source/port_id.zip new file mode 100644 index 000000000..757ce06a4 Binary files /dev/null and b/assets/icons/source/port_id.zip differ diff --git a/assets/icons/source/port_id_deserialize.zip b/assets/icons/source/port_id_deserialize.zip new file mode 100644 index 000000000..ccb5d07ac Binary files /dev/null and b/assets/icons/source/port_id_deserialize.zip differ diff --git a/assets/icons/source/port_id_modify.zip b/assets/icons/source/port_id_modify.zip new file mode 100644 index 000000000..2e85473fe Binary files /dev/null and b/assets/icons/source/port_id_modify.zip differ diff --git a/assets/icons/source/port_id_serialize.zip b/assets/icons/source/port_id_serialize.zip new file mode 100644 index 000000000..e1ed5f7e4 Binary files /dev/null and b/assets/icons/source/port_id_serialize.zip differ diff --git a/assets/icons/source/ports_diff.zip b/assets/icons/source/ports_diff.zip new file mode 100644 index 000000000..09fa61e46 Binary files /dev/null and b/assets/icons/source/ports_diff.zip differ diff --git a/assets/icons/source/ports_diff_deserialize.zip b/assets/icons/source/ports_diff_deserialize.zip new file mode 100644 index 000000000..be1f1325f Binary files /dev/null and b/assets/icons/source/ports_diff_deserialize.zip differ diff --git a/assets/icons/source/ports_diff_modify.zip b/assets/icons/source/ports_diff_modify.zip new file mode 100644 index 000000000..4193d0648 Binary files /dev/null and b/assets/icons/source/ports_diff_modify.zip differ diff --git a/assets/icons/source/ports_diff_serialize.zip b/assets/icons/source/ports_diff_serialize.zip new file mode 100644 index 000000000..17dadab24 Binary files /dev/null and b/assets/icons/source/ports_diff_serialize.zip differ diff --git a/assets/icons/source/prop.zip b/assets/icons/source/prop.zip new file mode 100644 index 000000000..9e0cf4227 Binary files /dev/null and b/assets/icons/source/prop.zip differ diff --git a/assets/icons/source/prop_deserialize.zip b/assets/icons/source/prop_deserialize.zip new file mode 100644 index 000000000..c03c55c19 Binary files /dev/null and b/assets/icons/source/prop_deserialize.zip differ diff --git a/assets/icons/source/prop_modify.zip b/assets/icons/source/prop_modify.zip new file mode 100644 index 000000000..06958dcaa Binary files /dev/null and b/assets/icons/source/prop_modify.zip differ diff --git a/assets/icons/source/prop_serialize.zip b/assets/icons/source/prop_serialize.zip new file mode 100644 index 000000000..4bc2258e9 Binary files /dev/null and b/assets/icons/source/prop_serialize.zip differ diff --git a/assets/icons/source/quality.zip b/assets/icons/source/quality.zip new file mode 100644 index 000000000..8fe9a03db Binary files /dev/null and b/assets/icons/source/quality.zip differ diff --git a/assets/icons/source/quality_diff.zip b/assets/icons/source/quality_diff.zip new file mode 100644 index 000000000..056fadccc Binary files /dev/null and b/assets/icons/source/quality_diff.zip differ diff --git a/assets/icons/source/quality_diff_deserialize.zip b/assets/icons/source/quality_diff_deserialize.zip new file mode 100644 index 000000000..01073767a Binary files /dev/null and b/assets/icons/source/quality_diff_deserialize.zip differ diff --git a/assets/icons/source/quality_diff_modify.zip b/assets/icons/source/quality_diff_modify.zip new file mode 100644 index 000000000..826546b1d Binary files /dev/null and b/assets/icons/source/quality_diff_modify.zip differ diff --git a/assets/icons/source/quality_diff_serialize.zip b/assets/icons/source/quality_diff_serialize.zip new file mode 100644 index 000000000..5e8ee0f36 Binary files /dev/null and b/assets/icons/source/quality_diff_serialize.zip differ diff --git a/assets/icons/source/quality_id.zip b/assets/icons/source/quality_id.zip new file mode 100644 index 000000000..72f4eb976 Binary files /dev/null and b/assets/icons/source/quality_id.zip differ diff --git a/assets/icons/source/quality_id_deserialize.zip b/assets/icons/source/quality_id_deserialize.zip new file mode 100644 index 000000000..5af355b3e Binary files /dev/null and b/assets/icons/source/quality_id_deserialize.zip differ diff --git a/assets/icons/source/quality_id_modify.zip b/assets/icons/source/quality_id_modify.zip new file mode 100644 index 000000000..47d4ca5ee Binary files /dev/null and b/assets/icons/source/quality_id_modify.zip differ diff --git a/assets/icons/source/quality_id_serialize.zip b/assets/icons/source/quality_id_serialize.zip new file mode 100644 index 000000000..4be925bda Binary files /dev/null and b/assets/icons/source/quality_id_serialize.zip differ diff --git a/assets/icons/source/representation_diff.zip b/assets/icons/source/representation_diff.zip new file mode 100644 index 000000000..bc56b473c Binary files /dev/null and b/assets/icons/source/representation_diff.zip differ diff --git a/assets/icons/source/representation_diff_deserialize.zip b/assets/icons/source/representation_diff_deserialize.zip new file mode 100644 index 000000000..c575f13c8 Binary files /dev/null and b/assets/icons/source/representation_diff_deserialize.zip differ diff --git a/assets/icons/source/representation_diff_modify.zip b/assets/icons/source/representation_diff_modify.zip new file mode 100644 index 000000000..7bf12aa1e Binary files /dev/null and b/assets/icons/source/representation_diff_modify.zip differ diff --git a/assets/icons/source/representation_diff_serialize.zip b/assets/icons/source/representation_diff_serialize.zip new file mode 100644 index 000000000..6e8470d3e Binary files /dev/null and b/assets/icons/source/representation_diff_serialize.zip differ diff --git a/assets/icons/source/representation_id.zip b/assets/icons/source/representation_id.zip new file mode 100644 index 000000000..b19d63d85 Binary files /dev/null and b/assets/icons/source/representation_id.zip differ diff --git a/assets/icons/source/representation_id_deserialize.zip b/assets/icons/source/representation_id_deserialize.zip new file mode 100644 index 000000000..ce36c416d Binary files /dev/null and b/assets/icons/source/representation_id_deserialize.zip differ diff --git a/assets/icons/source/representation_id_modify.zip b/assets/icons/source/representation_id_modify.zip new file mode 100644 index 000000000..7f0e530be Binary files /dev/null and b/assets/icons/source/representation_id_modify.zip differ diff --git a/assets/icons/source/representation_id_serialize.zip b/assets/icons/source/representation_id_serialize.zip new file mode 100644 index 000000000..a0d364c7e Binary files /dev/null and b/assets/icons/source/representation_id_serialize.zip differ diff --git a/assets/icons/source/representations_diff.zip b/assets/icons/source/representations_diff.zip new file mode 100644 index 000000000..2af158243 Binary files /dev/null and b/assets/icons/source/representations_diff.zip differ diff --git a/assets/icons/source/representations_diff_deserialize.zip b/assets/icons/source/representations_diff_deserialize.zip new file mode 100644 index 000000000..fff1cd83d Binary files /dev/null and b/assets/icons/source/representations_diff_deserialize.zip differ diff --git a/assets/icons/source/representations_diff_modify.zip b/assets/icons/source/representations_diff_modify.zip new file mode 100644 index 000000000..158fd305d Binary files /dev/null and b/assets/icons/source/representations_diff_modify.zip differ diff --git a/assets/icons/source/representations_diff_serialize.zip b/assets/icons/source/representations_diff_serialize.zip new file mode 100644 index 000000000..b244b3bb9 Binary files /dev/null and b/assets/icons/source/representations_diff_serialize.zip differ diff --git a/assets/icons/source/select_kit.zip b/assets/icons/source/select_kit.zip new file mode 100644 index 000000000..a6af2b0bd Binary files /dev/null and b/assets/icons/source/select_kit.zip differ diff --git a/assets/icons/source/semiofile_deserialize.zip b/assets/icons/source/semiofile_deserialize.zip new file mode 100644 index 000000000..031eb2ddb Binary files /dev/null and b/assets/icons/source/semiofile_deserialize.zip differ diff --git a/assets/icons/source/semiofile_serialize.zip b/assets/icons/source/semiofile_serialize.zip new file mode 100644 index 000000000..19bb135d8 Binary files /dev/null and b/assets/icons/source/semiofile_serialize.zip differ diff --git a/assets/icons/source/side_deserialize.zip b/assets/icons/source/side_deserialize.zip index 5a9322f0e..e3315830d 100644 Binary files a/assets/icons/source/side_deserialize.zip and b/assets/icons/source/side_deserialize.zip differ diff --git a/assets/icons/source/side_diff.zip b/assets/icons/source/side_diff.zip new file mode 100644 index 000000000..e610db352 Binary files /dev/null and b/assets/icons/source/side_diff.zip differ diff --git a/assets/icons/source/side_diff_deserialize.zip b/assets/icons/source/side_diff_deserialize.zip new file mode 100644 index 000000000..da3e4adf1 Binary files /dev/null and b/assets/icons/source/side_diff_deserialize.zip differ diff --git a/assets/icons/source/side_diff_modify.zip b/assets/icons/source/side_diff_modify.zip new file mode 100644 index 000000000..05dc4f404 Binary files /dev/null and b/assets/icons/source/side_diff_modify.zip differ diff --git a/assets/icons/source/side_diff_serialie.zip b/assets/icons/source/side_diff_serialie.zip new file mode 100644 index 000000000..79f739d56 Binary files /dev/null and b/assets/icons/source/side_diff_serialie.zip differ diff --git a/assets/icons/source/side_serialize.zip b/assets/icons/source/side_serialize.zip index d1e049ce8..380037ac2 100644 Binary files a/assets/icons/source/side_serialize.zip and b/assets/icons/source/side_serialize.zip differ diff --git a/assets/icons/source/sides_diff_modify.zip b/assets/icons/source/sides_diff_modify.zip new file mode 100644 index 000000000..b0a6bb1f0 Binary files /dev/null and b/assets/icons/source/sides_diff_modify.zip differ diff --git a/assets/icons/source/stat.zip b/assets/icons/source/stat.zip new file mode 100644 index 000000000..403cb846b Binary files /dev/null and b/assets/icons/source/stat.zip differ diff --git a/assets/icons/source/stat_deserialize.zip b/assets/icons/source/stat_deserialize.zip new file mode 100644 index 000000000..e539c0b26 Binary files /dev/null and b/assets/icons/source/stat_deserialize.zip differ diff --git a/assets/icons/source/stat_modify.zip b/assets/icons/source/stat_modify.zip new file mode 100644 index 000000000..7c00fcafa Binary files /dev/null and b/assets/icons/source/stat_modify.zip differ diff --git a/assets/icons/source/stat_serialize.zip b/assets/icons/source/stat_serialize.zip new file mode 100644 index 000000000..264b1921c Binary files /dev/null and b/assets/icons/source/stat_serialize.zip differ diff --git a/assets/icons/source/type_diff.zip b/assets/icons/source/type_diff.zip new file mode 100644 index 000000000..7135c357d Binary files /dev/null and b/assets/icons/source/type_diff.zip differ diff --git a/assets/icons/source/type_diff_deserialize.zip b/assets/icons/source/type_diff_deserialize.zip new file mode 100644 index 000000000..ccc5133c8 Binary files /dev/null and b/assets/icons/source/type_diff_deserialize.zip differ diff --git a/assets/icons/source/type_diff_modify.zip b/assets/icons/source/type_diff_modify.zip new file mode 100644 index 000000000..538f8daf8 Binary files /dev/null and b/assets/icons/source/type_diff_modify.zip differ diff --git a/assets/icons/source/type_diff_serialize.zip b/assets/icons/source/type_diff_serialize.zip new file mode 100644 index 000000000..64a048874 Binary files /dev/null and b/assets/icons/source/type_diff_serialize.zip differ diff --git a/assets/icons/source/type_id.zip b/assets/icons/source/type_id.zip new file mode 100644 index 000000000..42f62d157 Binary files /dev/null and b/assets/icons/source/type_id.zip differ diff --git a/assets/icons/source/type_id_modify.zip b/assets/icons/source/type_id_modify.zip new file mode 100644 index 000000000..4be65899b Binary files /dev/null and b/assets/icons/source/type_id_modify.zip differ diff --git a/assets/icons/source/types_diff.zip b/assets/icons/source/types_diff.zip new file mode 100644 index 000000000..f515e06bd Binary files /dev/null and b/assets/icons/source/types_diff.zip differ diff --git a/assets/icons/source/types_diff_deserialize.zip b/assets/icons/source/types_diff_deserialize.zip new file mode 100644 index 000000000..d9604ba80 Binary files /dev/null and b/assets/icons/source/types_diff_deserialize.zip differ diff --git a/assets/icons/source/types_diff_modify.zip b/assets/icons/source/types_diff_modify.zip new file mode 100644 index 000000000..09d50bae3 Binary files /dev/null and b/assets/icons/source/types_diff_modify.zip differ diff --git a/assets/icons/source/types_diff_serialize.zip b/assets/icons/source/types_diff_serialize.zip new file mode 100644 index 000000000..f997f2b97 Binary files /dev/null and b/assets/icons/source/types_diff_serialize.zip differ diff --git a/assets/icons/source/vector.zip b/assets/icons/source/vector.zip new file mode 100644 index 000000000..8fe9a03db Binary files /dev/null and b/assets/icons/source/vector.zip differ diff --git a/assets/icons/stat.ico b/assets/icons/stat.ico new file mode 100644 index 000000000..42ae0cf6e Binary files /dev/null and b/assets/icons/stat.ico differ diff --git a/assets/icons/stat.svg b/assets/icons/stat.svg new file mode 100644 index 000000000..2b26fe3de --- /dev/null +++ b/assets/icons/stat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/stat_24x24.png b/assets/icons/stat_24x24.png new file mode 100644 index 000000000..8cf3969cd Binary files /dev/null and b/assets/icons/stat_24x24.png differ diff --git a/assets/icons/stat_512x512.png b/assets/icons/stat_512x512.png new file mode 100644 index 000000000..22a621282 Binary files /dev/null and b/assets/icons/stat_512x512.png differ diff --git a/assets/icons/stat_deserialize.ico b/assets/icons/stat_deserialize.ico new file mode 100644 index 000000000..241baed16 Binary files /dev/null and b/assets/icons/stat_deserialize.ico differ diff --git a/assets/icons/stat_deserialize.svg b/assets/icons/stat_deserialize.svg new file mode 100644 index 000000000..5cf27ec64 --- /dev/null +++ b/assets/icons/stat_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/stat_deserialize_24x24.png b/assets/icons/stat_deserialize_24x24.png new file mode 100644 index 000000000..79ab54cbb Binary files /dev/null and b/assets/icons/stat_deserialize_24x24.png differ diff --git a/assets/icons/stat_deserialize_512x512.png b/assets/icons/stat_deserialize_512x512.png new file mode 100644 index 000000000..7374c3adb Binary files /dev/null and b/assets/icons/stat_deserialize_512x512.png differ diff --git a/assets/icons/stat_diff_24x24.png b/assets/icons/stat_diff_24x24.png new file mode 100644 index 000000000..01e63038a Binary files /dev/null and b/assets/icons/stat_diff_24x24.png differ diff --git a/assets/icons/stat_diff_deserialize_24x24.png b/assets/icons/stat_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stat_diff_deserialize_24x24.png differ diff --git a/assets/icons/stat_diff_modify_24x24.png b/assets/icons/stat_diff_modify_24x24.png new file mode 100644 index 000000000..37ad67eca Binary files /dev/null and b/assets/icons/stat_diff_modify_24x24.png differ diff --git a/assets/icons/stat_diff_serialize_24x24.png b/assets/icons/stat_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stat_diff_serialize_24x24.png differ diff --git a/assets/icons/stat_id_24x24.png b/assets/icons/stat_id_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stat_id_24x24.png differ diff --git a/assets/icons/stat_id_deserialize_24x24.png b/assets/icons/stat_id_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stat_id_deserialize_24x24.png differ diff --git a/assets/icons/stat_id_modify_24x24.png b/assets/icons/stat_id_modify_24x24.png new file mode 100644 index 000000000..e01c2bc6f Binary files /dev/null and b/assets/icons/stat_id_modify_24x24.png differ diff --git a/assets/icons/stat_id_serialize_24x24.png b/assets/icons/stat_id_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stat_id_serialize_24x24.png differ diff --git a/assets/icons/stat_modify.ico b/assets/icons/stat_modify.ico new file mode 100644 index 000000000..dabd6dc75 Binary files /dev/null and b/assets/icons/stat_modify.ico differ diff --git a/assets/icons/stat_modify.svg b/assets/icons/stat_modify.svg new file mode 100644 index 000000000..6032dae32 --- /dev/null +++ b/assets/icons/stat_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/stat_modify_24x24.png b/assets/icons/stat_modify_24x24.png new file mode 100644 index 000000000..0cc7d73c7 Binary files /dev/null and b/assets/icons/stat_modify_24x24.png differ diff --git a/assets/icons/stat_modify_512x512.png b/assets/icons/stat_modify_512x512.png new file mode 100644 index 000000000..741ba9e68 Binary files /dev/null and b/assets/icons/stat_modify_512x512.png differ diff --git a/assets/icons/stat_serialize.ico b/assets/icons/stat_serialize.ico new file mode 100644 index 000000000..272aef28e Binary files /dev/null and b/assets/icons/stat_serialize.ico differ diff --git a/assets/icons/stat_serialize.svg b/assets/icons/stat_serialize.svg new file mode 100644 index 000000000..f9612ac8a --- /dev/null +++ b/assets/icons/stat_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/stat_serialize_24x24.png b/assets/icons/stat_serialize_24x24.png new file mode 100644 index 000000000..885e37a9f Binary files /dev/null and b/assets/icons/stat_serialize_24x24.png differ diff --git a/assets/icons/stat_serialize_512x512.png b/assets/icons/stat_serialize_512x512.png new file mode 100644 index 000000000..9f861d16f Binary files /dev/null and b/assets/icons/stat_serialize_512x512.png differ diff --git a/assets/icons/stats_diff_24x24.png b/assets/icons/stats_diff_24x24.png new file mode 100644 index 000000000..e6159a3b9 Binary files /dev/null and b/assets/icons/stats_diff_24x24.png differ diff --git a/assets/icons/stats_diff_deserialize_24x24.png b/assets/icons/stats_diff_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stats_diff_deserialize_24x24.png differ diff --git a/assets/icons/stats_diff_modify_24x24.png b/assets/icons/stats_diff_modify_24x24.png new file mode 100644 index 000000000..cbe1968df Binary files /dev/null and b/assets/icons/stats_diff_modify_24x24.png differ diff --git a/assets/icons/stats_diff_serialize_24x24.png b/assets/icons/stats_diff_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/stats_diff_serialize_24x24.png differ diff --git a/assets/icons/type_diff.ico b/assets/icons/type_diff.ico new file mode 100644 index 000000000..683f7ab3d Binary files /dev/null and b/assets/icons/type_diff.ico differ diff --git a/assets/icons/type_diff.svg b/assets/icons/type_diff.svg new file mode 100644 index 000000000..5ed50ff3a --- /dev/null +++ b/assets/icons/type_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_diff_24x24.png b/assets/icons/type_diff_24x24.png new file mode 100644 index 000000000..3ffb2e02e Binary files /dev/null and b/assets/icons/type_diff_24x24.png differ diff --git a/assets/icons/type_diff_512x512.png b/assets/icons/type_diff_512x512.png new file mode 100644 index 000000000..c3abd1614 Binary files /dev/null and b/assets/icons/type_diff_512x512.png differ diff --git a/assets/icons/type_diff_deserialize.ico b/assets/icons/type_diff_deserialize.ico new file mode 100644 index 000000000..23c899ece Binary files /dev/null and b/assets/icons/type_diff_deserialize.ico differ diff --git a/assets/icons/type_diff_deserialize.svg b/assets/icons/type_diff_deserialize.svg new file mode 100644 index 000000000..7dff16f05 --- /dev/null +++ b/assets/icons/type_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_diff_deserialize_24x24.png b/assets/icons/type_diff_deserialize_24x24.png new file mode 100644 index 000000000..a32dfb224 Binary files /dev/null and b/assets/icons/type_diff_deserialize_24x24.png differ diff --git a/assets/icons/type_diff_deserialize_512x512.png b/assets/icons/type_diff_deserialize_512x512.png new file mode 100644 index 000000000..6d39801cc Binary files /dev/null and b/assets/icons/type_diff_deserialize_512x512.png differ diff --git a/assets/icons/type_diff_modify.ico b/assets/icons/type_diff_modify.ico new file mode 100644 index 000000000..e1b77351f Binary files /dev/null and b/assets/icons/type_diff_modify.ico differ diff --git a/assets/icons/type_diff_modify.svg b/assets/icons/type_diff_modify.svg new file mode 100644 index 000000000..075a0b61e --- /dev/null +++ b/assets/icons/type_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_diff_modify_24x24.png b/assets/icons/type_diff_modify_24x24.png new file mode 100644 index 000000000..e44d4e6f8 Binary files /dev/null and b/assets/icons/type_diff_modify_24x24.png differ diff --git a/assets/icons/type_diff_modify_512x512.png b/assets/icons/type_diff_modify_512x512.png new file mode 100644 index 000000000..ec21924eb Binary files /dev/null and b/assets/icons/type_diff_modify_512x512.png differ diff --git a/assets/icons/type_diff_serialize.ico b/assets/icons/type_diff_serialize.ico new file mode 100644 index 000000000..62a26b751 Binary files /dev/null and b/assets/icons/type_diff_serialize.ico differ diff --git a/assets/icons/type_diff_serialize.svg b/assets/icons/type_diff_serialize.svg new file mode 100644 index 000000000..57c3bf256 --- /dev/null +++ b/assets/icons/type_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_diff_serialize_24x24.png b/assets/icons/type_diff_serialize_24x24.png new file mode 100644 index 000000000..3b687c6e4 Binary files /dev/null and b/assets/icons/type_diff_serialize_24x24.png differ diff --git a/assets/icons/type_diff_serialize_512x512.png b/assets/icons/type_diff_serialize_512x512.png new file mode 100644 index 000000000..4f017df6b Binary files /dev/null and b/assets/icons/type_diff_serialize_512x512.png differ diff --git a/assets/icons/type_id.ico b/assets/icons/type_id.ico new file mode 100644 index 000000000..7e6e9e973 Binary files /dev/null and b/assets/icons/type_id.ico differ diff --git a/assets/icons/type_id.svg b/assets/icons/type_id.svg new file mode 100644 index 000000000..874824de7 --- /dev/null +++ b/assets/icons/type_id.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_id_24x24.png b/assets/icons/type_id_24x24.png new file mode 100644 index 000000000..6b6d78c4f Binary files /dev/null and b/assets/icons/type_id_24x24.png differ diff --git a/assets/icons/type_id_512x512.png b/assets/icons/type_id_512x512.png new file mode 100644 index 000000000..a6c8357d7 Binary files /dev/null and b/assets/icons/type_id_512x512.png differ diff --git a/assets/icons/type_id_deserialize.ico b/assets/icons/type_id_deserialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/type_id_deserialize.ico differ diff --git a/assets/icons/type_id_deserialize.svg b/assets/icons/type_id_deserialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/type_id_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_id_deserialize_24x24.png b/assets/icons/type_id_deserialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/type_id_deserialize_24x24.png differ diff --git a/assets/icons/type_id_deserialize_512x512.png b/assets/icons/type_id_deserialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/type_id_deserialize_512x512.png differ diff --git a/assets/icons/type_id_modify.ico b/assets/icons/type_id_modify.ico new file mode 100644 index 000000000..87bf106b1 Binary files /dev/null and b/assets/icons/type_id_modify.ico differ diff --git a/assets/icons/type_id_modify.svg b/assets/icons/type_id_modify.svg new file mode 100644 index 000000000..b5c24c281 --- /dev/null +++ b/assets/icons/type_id_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_id_modify_24x24.png b/assets/icons/type_id_modify_24x24.png new file mode 100644 index 000000000..c57072a46 Binary files /dev/null and b/assets/icons/type_id_modify_24x24.png differ diff --git a/assets/icons/type_id_modify_512x512.png b/assets/icons/type_id_modify_512x512.png new file mode 100644 index 000000000..bd61ec5cd Binary files /dev/null and b/assets/icons/type_id_modify_512x512.png differ diff --git a/assets/icons/type_id_serialize.ico b/assets/icons/type_id_serialize.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/type_id_serialize.ico differ diff --git a/assets/icons/type_id_serialize.svg b/assets/icons/type_id_serialize.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/type_id_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/type_id_serialize_24x24.png b/assets/icons/type_id_serialize_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/type_id_serialize_24x24.png differ diff --git a/assets/icons/type_id_serialize_512x512.png b/assets/icons/type_id_serialize_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/type_id_serialize_512x512.png differ diff --git a/assets/icons/types_diff.ico b/assets/icons/types_diff.ico new file mode 100644 index 000000000..6da7a7ac2 Binary files /dev/null and b/assets/icons/types_diff.ico differ diff --git a/assets/icons/types_diff.svg b/assets/icons/types_diff.svg new file mode 100644 index 000000000..696b9a5ec --- /dev/null +++ b/assets/icons/types_diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/types_diff_24x24.png b/assets/icons/types_diff_24x24.png new file mode 100644 index 000000000..5d55a00b7 Binary files /dev/null and b/assets/icons/types_diff_24x24.png differ diff --git a/assets/icons/types_diff_512x512.png b/assets/icons/types_diff_512x512.png new file mode 100644 index 000000000..219d2eba7 Binary files /dev/null and b/assets/icons/types_diff_512x512.png differ diff --git a/assets/icons/types_diff_deserialize.ico b/assets/icons/types_diff_deserialize.ico new file mode 100644 index 000000000..86244ae68 Binary files /dev/null and b/assets/icons/types_diff_deserialize.ico differ diff --git a/assets/icons/types_diff_deserialize.svg b/assets/icons/types_diff_deserialize.svg new file mode 100644 index 000000000..5193ac6ae --- /dev/null +++ b/assets/icons/types_diff_deserialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/types_diff_deserialize_24x24.png b/assets/icons/types_diff_deserialize_24x24.png new file mode 100644 index 000000000..c9f074429 Binary files /dev/null and b/assets/icons/types_diff_deserialize_24x24.png differ diff --git a/assets/icons/types_diff_deserialize_512x512.png b/assets/icons/types_diff_deserialize_512x512.png new file mode 100644 index 000000000..02860c026 Binary files /dev/null and b/assets/icons/types_diff_deserialize_512x512.png differ diff --git a/assets/icons/types_diff_modify.ico b/assets/icons/types_diff_modify.ico new file mode 100644 index 000000000..501c27699 Binary files /dev/null and b/assets/icons/types_diff_modify.ico differ diff --git a/assets/icons/types_diff_modify.svg b/assets/icons/types_diff_modify.svg new file mode 100644 index 000000000..d4fcebc2d --- /dev/null +++ b/assets/icons/types_diff_modify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/types_diff_modify_24x24.png b/assets/icons/types_diff_modify_24x24.png new file mode 100644 index 000000000..1454a0ea2 Binary files /dev/null and b/assets/icons/types_diff_modify_24x24.png differ diff --git a/assets/icons/types_diff_modify_512x512.png b/assets/icons/types_diff_modify_512x512.png new file mode 100644 index 000000000..2a64563bb Binary files /dev/null and b/assets/icons/types_diff_modify_512x512.png differ diff --git a/assets/icons/types_diff_serialize.ico b/assets/icons/types_diff_serialize.ico new file mode 100644 index 000000000..105883db7 Binary files /dev/null and b/assets/icons/types_diff_serialize.ico differ diff --git a/assets/icons/types_diff_serialize.svg b/assets/icons/types_diff_serialize.svg new file mode 100644 index 000000000..6fe8ca483 --- /dev/null +++ b/assets/icons/types_diff_serialize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/types_diff_serialize_24x24.png b/assets/icons/types_diff_serialize_24x24.png new file mode 100644 index 000000000..622da567e Binary files /dev/null and b/assets/icons/types_diff_serialize_24x24.png differ diff --git a/assets/icons/types_diff_serialize_512x512.png b/assets/icons/types_diff_serialize_512x512.png new file mode 100644 index 000000000..fdaab651e Binary files /dev/null and b/assets/icons/types_diff_serialize_512x512.png differ diff --git a/assets/icons/vector.ico b/assets/icons/vector.ico new file mode 100644 index 000000000..e5b3e91c6 Binary files /dev/null and b/assets/icons/vector.ico differ diff --git a/assets/icons/vector.svg b/assets/icons/vector.svg new file mode 100644 index 000000000..a4dfff52e --- /dev/null +++ b/assets/icons/vector.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/icons/vector_24x24.png b/assets/icons/vector_24x24.png new file mode 100644 index 000000000..aa86e92ea Binary files /dev/null and b/assets/icons/vector_24x24.png differ diff --git a/assets/icons/vector_512x512.png b/assets/icons/vector_512x512.png new file mode 100644 index 000000000..92f55111b Binary files /dev/null and b/assets/icons/vector_512x512.png differ diff --git a/assets/images/color-animated-text.gif b/assets/images/color-animated-text.gif new file mode 100644 index 000000000..e26dad95b Binary files /dev/null and b/assets/images/color-animated-text.gif differ diff --git a/assets/images/package.json b/assets/images/package.json index ee9d21462..229cfbf03 100644 --- a/assets/images/package.json +++ b/assets/images/package.json @@ -1,5 +1,5 @@ { - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "name": "@semio/images" -} \ No newline at end of file + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "projectType": "library", + "name": "@semio/images" +} diff --git a/assets/lists/adjectives.json b/assets/lists/adjectives.json index 3999a34ab..b1fa2711b 100644 --- a/assets/lists/adjectives.json +++ b/assets/lists/adjectives.json @@ -1 +1,1730 @@ -["cowardly", "xylographic", "dynamic", "xenophobic", "distant", "lost", "quick", "zippy", "trim", "living", "eager", "infantile", "worn", "live", "knowing", "next", "zesty", "utter", "rusty", "formal", "quizzical", "knobby", "little", "amazing", "vigilant", "primary", "meaty", "phony", "quixotic", "mute", "young", "jolly", "key", "positive", "miniature", "mild", "winged", "cheerful", "flashy", "habitual", "oceanic", "alike", "knotty", "holistic", "xylophonic", "generous", "quarterly", "yielding", "aquatic", "sad", "yummy", "melodic", "webbed", "versed", "zany", "outgoing", "busy", "unsightly", "bitter", "curly", "quaint", "nippy", "broken", "brainy", "grounded", "guarded", "junior", "crisp", "healthy", "colorless", "exclusive", "scattered", "zealous", "menacing", "gentle", "fond", "nifty", "gaping", "staid", "sordid", "noxious", "defiant", "rowdy", "nondescript", "personal", "adolescent", "brown", "dashing", "visible", "trustworthy", "rigid", "villainous", "regal", "clueless", "querulous", "dependable", "shiny", "numerous", "reasonable", "cold", "rebel", "worst", "broad", "humming", "runny", "youthful", "tasty", "beloved", "outlying", "soft", "belligerent", "determined", "clever", "upright", "vigorous", "fearless", "macho", "minor", "yellow", "greasy", "intent", "nonstop", "excitable", "yellowish", "xyloid", "gummy", "giving", "unlucky", "cheap", "gracious", "xerographic", "soulful", "selfish", "xenotropic", "mushy", "common", "merciful", "loathsome", "dizzy", "frightening", "guiltless", "kooky", "obscene", "alluring", "aboriginal", "purring", "makeshift", "klutzy", "fearful", "fitting", "lavish", "zigzag", "passionate", "fallacious", "pastel", "zonked", "sulky", "volatile", "gabby", "jazzy", "lamentable", "somber", "linear", "kind", "inferior", "identical", "content", "nappy", "handy", "erratic", "vagabond", "voluminous", "lowly", "feisty", "historical", "jaded", "extroverted", "concrete", "accurate", "joint", "unusual", "raw", "empty", "petite", "wooden", "wistful", "far", "flippant", "crowded", "aware", "gaudy", "spotless", "unused", "low", "rectangular", "shadowy", "spectacular", "tattered", "disgusting", "light", "dimpled", "grateful", "cooing", "overjoyed", "buttery", "instinctive", "pure", "xanthic", "forgetful", "quirky", "material", "jumbled", "heavy", "crazy", "aback", "nasty", "hanging", "incompetent", "savory", "indelible", "liquid", "loutish", "brilliant", "hurried", "open", "alienated", "imminent", "discrete", "immaculate", "altruistic", "needless", "notable", "pesky", "useful", "shrill", "easy", "abhorrent", "quarrelsome", "reddish", "colossal", "nebulous", "uniform", "scratchy", "labored", "juicy", "puny", "grumpy", "likely", "joyous", "necessary", "psychedelic", "buoyant", "woebegone", "mortified", "famous", "smelly", "defeated", "worried", "languid", "blind", "hungry", "literate", "admirable", "maddening", "tempting", "coordinated", "any", "rustic", "jealous", "green", "judicious", "flat", "exalted", "detailed", "available", "numb", "violet", "straight", "garrulous", "kindhearted", "feline", "ragged", "wretched", "overt", "tiny", "kosher", "dense", "immense", "yawning", "vacuous", "ruddy", "electric", "many", "deadly", "queasy", "unaware", "droopy", "treasured", "cynical", "difficult", "barren", "overwrought", "hellish", "divergent", "fatherly", "spicy", "ecstatic", "untrue", "panicky", "noisy", "pretty", "comfortable", "vain", "assorted", "indolent", "yearly", "noteworthy", "negligible", "psychotic", "frayed", "jagged", "jaunty", "faulty", "sarcastic", "romantic", "gargantuan", "naive", "strange", "nervous", "humdrum", "rash", "evanescent", "bowed", "uneven", "momentous", "tough", "loyal", "hearty", "monstrous", "encouraging", "aged", "standard", "futuristic", "snappy", "gusty", "jumpy", "ossified", "jubilant", "natural", "normal", "aromatic", "dry", "snobbish", "parched", "exhausted", "qualified", "bewildered", "limited", "silent", "prickly", "bronze", "crabby", "gruesome", "anguished", "draconian", "unconscious", "thorny", "concerned", "ruthless", "buzzing", "burdensome", "wordy", "frugal", "economic", "thick", "scholarly", "drafty", "gratis", "blushing", "candid", "waterlogged", "moldy", "golden", "turbulent", "gray", "overrated", "agile", "jobless", "smoggy", "stained", "genuine", "infinite", "high", "secret", "plain", "few", "mean", "naughty", "mad", "unwieldy", "verifiable", "total", "uptight", "periodic", "whimsical", "vapid", "vicious", "selective", "jittery", "whispering", "likable", "oily", "boundless", "oval", "abrasive", "timely", "slight", "obsolete", "befitting", "venomous", "striking", "homeless", "hateful", "gorgeous", "opulent", "perpetual", "picayune", "domineering", "monumental", "reliable", "erect", "demanding", "fragile", "public", "tubby", "verdant", "downright", "woeful", "deserted", "elementary", "muted", "bashful", "threatening", "thrifty", "numberless", "fluid", "sour", "thin", "powerless", "absent", "loose", "joyful", "leading", "basic", "long", "uncommon", "wan", "hushed", "obtainable", "past", "weepy", "valid", "tacky", "understood", "those", "large", "tricky", "prize", "hoarse", "wonderful", "utilized", "pathetic", "probable", "blue", "bony", "upbeat", "magenta", "putrid", "frantic", "blinding", "improbable", "greenish", "intelligent", "overcooked", "squealing", "velvety", "mere", "noiseless", "likeable", "sizzling", "thorough", "overdue", "illustrious", "organic", "fertile", "minty", "babyish", "rotating", "welcome", "marvelous", "intentional", "vast", "rough", "violent", "righteous", "thundering", "warmhearted", "weighty", "nosy", "dramatic", "beautiful", "quiet", "unwritten", "vibrant", "automatic", "sweltering", "ignorant", "decorous", "grubby", "oddball", "unbecoming", "defensive", "costly", "juvenile", "immediate", "illiterate", "great", "reckless", "crooked", "ordinary", "whole", "fabulous", "grizzled", "male", "abaft", "chemical", "laughable", "lacking", "victorious", "receptive", "flowery", "untried", "dirty", "educated", "noted", "ahead", "slushy", "curious", "traumatic", "piercing", "ubiquitous", "vital", "tiresome", "lucky", "novel", "peaceful", "blond", "same", "motherly", "unfit", "major", "impish", "vague", "bizarre", "roasted", "right", "overlooked", "smart", "curved", "workable", "playful", "late", "neighboring", "astonishing", "firm", "rural", "unfolded", "forsaken", "everlasting", "bawdy", "mealy", "super", "untidy", "tame", "unrealistic", "efficient", "new", "giddy", "plump", "unruly", "rude", "ablaze", "lazy", "hilarious", "spotty", "unfinished", "firsthand", "known", "pristine", "pleasant", "essential", "ambitious", "criminal", "humble", "honest", "hospitable", "cute", "excited", "daring", "lumbering", "colorful", "equal", "panoramic", "reflective", "stark", "gross", "ratty", "obedient", "last", "keen", "resolute", "enlightened", "needy", "arrogant", "stormy", "defenseless", "wavy", "ultimate", "real", "luxurious", "surprised", "childlike", "unselfish", "scandalous", "close", "soggy", "glum", "orange", "disturbed", "wee", "bland", "husky", "mysterious", "growing", "odd", "temporary", "flustered", "bubbly", "growling", "political", "outlandish", "suburban", "creative", "reflecting", "big", "clumsy", "damaging", "abundant", "front", "delayed", "boorish", "scented", "offbeat", "pricey", "blank", "amuck", "confused", "kindly", "pertinent", "vengeful", "exotic", "ornery", "emotional", "incredible", "sharp", "vivid", "fickle", "jumbo", "prudent", "stylish", "merry", "attached", "pessimistic", "unlined", "trained", "black", "toothsome", "insidious", "tested", "auspicious", "bulky", "chubby", "each", "supreme", "glorious", "capital", "fruitful", "handmade", "lively", "glittering", "bouncy", "utopian", "clean", "miscreant", "limping", "special", "foolhardy", "bold", "several", "hollow", "measly", "sparse", "miserly", "unsteady", "icky", "muddy", "jovial", "optimal", "ethereal", "hurt", "whopping", "glamorous", "glaring", "pink", "voiceless", "bruised", "wrong", "authentic", "abounding", "focused", "internal", "grotesque", "grey", "dearest", "impractical", "huge", "opposite", "delightful", "obese", "impeccable", "punctual", "weird", "weary", "virtuous", "poor", "undesirable", "expensive", "abject", "repentant", "instructive", "tight", "pointless", "truculent", "invincible", "better", "lawful", "helpless", "cagey", "breezy", "plastic", "bumpy", "diligent", "agonizing", "warlike", "classic", "luxuriant", "wide", "negative", "unripe", "voracious", "distinct", "early", "acrid", "unimportant", "required", "unhealthy", "embellished", "lovely", "shaggy", "animated", "glistening", "realistic", "imported", "back", "ornate", "shady", "rhetorical", "previous", "pungent", "admired", "madly", "safe", "productive", "gullible", "official", "thoughtful", "harmless", "crafty", "godly", "nostalgic", "bogus", "elfin", "earthy", "fast", "responsible", "baggy", "flagrant", "valuable", "present", "trashy", "motionless", "rich", "trifling", "unfortunate", "teeny", "unbiased", "lasting", "glossy", "gainful", "cavernous", "lonely", "rare", "wary", "fine", "earnest", "swanky", "rosy", "trivial", "expert", "interesting", "worrisome", "active", "annoyed", "vivacious", "inexpensive", "chilly", "subtle", "nonchalant", "milky", "cooked", "brave", "ritzy", "dead", "aspiring", "delirious", "delicate", "obnoxious", "wasteful", "assured", "incomplete", "barbarous", "careful", "uppity", "venerated", "dental", "extraneous", "twin", "wet", "mature", "feminine", "hysterical", "honorable", "funny", "ample", "round", "billowy", "angry", "palatable", "terrific", "prestigious", "brisk", "pushy", "average", "disloyal", "critical", "potable", "fantastic", "lovable", "stale", "vulgar", "rightful", "hypnotic", "advanced", "depressed", "hulking", "cool", "narrow", "obsequious", "hallowed", "wanting", "thoughtless", "cultivated", "unarmed", "grand", "demonic", "leafy", "gregarious", "entire", "meager", "chief", "industrious", "watchful", "variable", "wry", "sociable", "sudden", "defective", "adaptable", "fresh", "adhesive", "deafening", "nimble", "muddled", "nocturnal", "mountainous", "haunting", "hapless", "neat", "exemplary", "hissing", "fake", "posh", "painstaking", "humorous", "satisfying", "heavenly", "partial", "legal", "talented", "daffy", "clammy", "alleged", "pale", "windy", "nutritious", "true", "old", "doting", "steel", "profitable", "gaseous", "terrible", "nice", "certain", "tart", "acidic", "puzzling", "grim", "intrepid", "tasteless", "scrawny", "carefree", "innate", "obeisant", "hideous", "marked", "square", "precious", "itchy", "breakable", "other", "aggressive", "protective", "half", "aberrant", "only", "prime", "sick", "lumpy", "enraged", "gleaming", "nautical", "ultra", "damp", "mammoth", "beneficial", "grandiose", "disguised", "pleased", "inquisitive", "descriptive", "bewitched", "melted", "capricious", "maniacal", "moaning", "roomy", "unadvised", "brash", "wiry", "ten", "cloudy", "cheery", "berserk", "musty", "adept", "innocent", "elastic", "complete", "elegant", "anxious", "harmonious", "poised", "ideal", "agitated", "brief", "bare", "boiling", "eccentric", "academic", "halting", "faithful", "abortive", "plausible", "condemned", "limp", "imaginative", "plaintive", "hot", "forthright", "coherent", "frivolous", "magnificent", "fair", "tall", "dishonest", "competent", "disgusted", "virtual", "robust", "damaged", "decent", "thirsty", "revolving", "rabid", "crushing", "impossible", "craven", "pastoral", "inborn", "military", "calculating", "fanatical", "complicated", "impure", "sardonic", "rubbery", "level", "fragrant", "substantial", "immaterial", "dopey", "triangular", "constant", "grouchy", "showy", "apt", "stiff", "shocking", "our", "elderly", "miserable", "delicious", "used", "obvious", "ambiguous", "tawdry", "perfect", "stupid", "cumbersome", "acclaimed", "impassioned", "torpid", "even", "deep", "tender", "burly", "proud", "grieving", "therapeutic", "ancient", "macabre", "majestic", "honored", "thankful", "abusive", "bossy", "puffy", "frail", "legitimate", "offensive", "brawny", "dull", "raspy", "helpful", "sturdy", "distorted", "heartfelt", "misguided", "bleak", "useless", "fascinated", "first", "that", "able", "slim", "learned", "lush", "devilish", "bloody", "aching", "steady", "doubtful", "foolish", "homely", "racial", "deranged", "imperfect", "silly", "didactic", "understated", "bent", "creamy", "winding", "awesome", "third", "omniscient", "respectful", "wrathful", "unique", "illegal", "meek", "squeamish", "graceful", "scaly", "repulsive", "nutty", "lean", "frank", "elite", "wise", "another", "seemly", "regular", "serene", "unpleasant", "snotty", "scary", "irritating", "frosty", "oblong", "white", "lined", "lyrical", "ringed", "wild", "greedy", "dutiful", "granular", "unequaled", "remorseful", "untimely", "afraid", "unable", "harsh", "closed", "various", "telling", "best", "cuddly", "modern", "discreet", "rundown", "direful", "blissful", "axiomatic", "muffled", "euphoric", "feigned", "fumbling", "changeable", "adventurous", "frizzy", "dark", "hesitant", "gleeful", "tacit", "glass", "bountiful", "wholesale", "wicked", "embarrassed", "absorbing", "tense", "mixed", "alarming", "fretful", "handsome", "darling", "messy", "cut", "trusting", "tragic", "like", "unkempt", "thunderous", "tedious", "dependent", "good", "boring", "belated", "courageous", "enormous", "callous", "calm", "insistent", "monthly", "full", "weak", "shameless", "oafish", "warped", "striped", "delectable", "unwelcome", "lone", "hasty", "lying", "upset", "ashamed", "unsung", "cooperative", "shallow", "exciting", "rampant", "furtive", "petty", "fatal", "aloof", "threadbare", "forceful", "absolute", "agreeable", "squiggly", "bad", "faint", "flawless", "goofy", "tasteful", "annoying", "ugly", "tearful", "mindless", "familiar", "murky", "luminous", "classy", "uncovered", "screeching", "composed", "festive", "frightened", "mundane", "neighborly", "optimistic", "giant", "clear", "onerous", "horrible", "grimy", "witty", "apathetic", "acid", "flaky", "peppery", "neglected", "cautious", "observant", "chunky", "pumped", "frequent", "aggravating", "stable", "endurable", "taboo", "alarmed", "dear", "ripe", "flawed", "abstracted", "thinkable", "stimulating", "unhappy", "gigantic", "plush", "highfalutin", "chivalrous", "feeble", "perfumed", "redundant", "flimsy", "smiling", "polished", "left", "evasive", "sedate", "deadpan", "unnatural", "original", "disastrous", "caring", "cloistered", "sympathetic", "fat", "sandy", "married", "writhing", "ill", "short", "near", "drab", "infamous", "massive", "daily", "remarkable", "tired", "all", "vacant", "rotten", "mighty", "lewd", "attractive", "arctic", "united", "lame", "loud", "favorite", "adamant", "woozy", "exuberant", "failing", "plucky", "actual", "medical", "humiliating", "deficient", "spirited", "waiting", "guilty", "powerful", "fortunate", "lanky", "both", "flamboyant", "statuesque", "ethical", "artistic", "gifted", "elated", "magical", "malicious", "efficacious", "popular", "tinted", "drunk", "piquant", "fixed", "fancy", "ironclad", "speedy", "fluttering", "spontaneous", "worse", "lustrous", "whispered", "skillful", "female", "remote", "dusty", "coarse", "excellent", "enchanting", "experienced", "satisfied", "gamy", "furry", "hairy", "eatable", "enchanted", "snoopy", "evergreen", "sneaky", "shivering", "dispensable", "guttural", "devoted", "wobbly", "resonant", "idolized", "simplistic", "usable", "curvy", "gripping", "possible", "longing", "tightfisted", "nauseating", "successful", "exultant", "shy", "unknown", "spiritual", "which", "irate", "adorable", "possessive", "evil", "lethal", "false", "waggish", "frilly", "salty", "creepy", "standing", "unwilling", "hidden", "practical", "orderly", "alert", "abrupt", "sane", "informal", "strident", "faded", "impartial", "private", "willing", "talkative", "wacky", "dual", "profuse", "squeaky", "painful", "glib", "idealistic", "functional", "metallic", "stunning", "icy", "tepid", "direct", "forked", "subsequent", "tranquil", "steep", "angelic", "austere", "weekly", "infatuated", "trite", "freezing", "portly", "spooky", "perky", "penitent", "placid", "wiggly", "towering", "abnormal", "grave", "starchy", "wandering", "similar", "typical", "friendly", "bustling", "sticky", "occasional", "livid", "spiteful", "serpentine", "medium", "esteemed", "hefty", "tan", "polite", "rewarding", "tangy", "separate", "happy", "dim", "different", "elaborate", "starry", "physical", "considerate", "canine", "acoustic", "dimwitted", "worthless", "relieved", "heady", "recondite", "addicted", "trusty", "idle", "troubled", "careless", "masculine", "insecure", "lopsided", "mellow", "frigid", "sentimental", "fluffy", "hard", "annual", "loving", "outrageous", "wilted", "permissible", "sinful", "energetic", "finished", "abandoned", "sloppy", "disfigured", "red", "equatorial", "single", "abiding", "pitiful", "worthwhile", "slimy", "cylindrical", "premium", "groovy", "silky", "ludicrous", "flickering", "charming", "warm", "decimal", "svelte", "modest", "moist", "urban", "alive", "truthful", "equable", "succinct", "conscious", "sorrowful", "worldly", "watery", "amused", "radiant", "pointed", "ready", "tidy", "rapid", "free", "parallel", "celebrated", "outstanding", "reminiscent", "capable", "abashed", "filthy", "dismal", "corny", "finicky", "dapper", "cultured", "taut", "smooth", "sleepy", "rainy", "faraway", "slippery", "unlawful", "sassy", "skeletal", "worthy", "silver", "memorable", "bluish", "shimmering", "moral", "subdued", "womanly", "accessible", "future", "unequal", "deeply", "important", "absurd", "gloomy", "whirlwind", "wealthy", "decisive", "general", "appropriate", "spotted", "cluttered", "mediocre", "shut", "humongous", "synonymous", "bored", "fuzzy", "superb", "spiffy", "imaginary", "complex", "shocked", "spherical", "steadfast", "stereotyped", "digital", "puzzled", "definite", "cruel", "fierce", "purple", "foamy", "elliptical", "symptomatic", "circular", "superficial", "sunny", "torn", "wakeful", "sore", "combative", "sweet", "submissive", "testy", "splendid", "phobic", "proper", "edible", "swift", "hopeful", "sugary", "stupendous", "fussy", "unsuitable", "absorbed", "tangible", "eminent", "smug", "idiotic", "awful", "attentive", "ceaseless", "acrobatic", "skinny", "corrupt", "dazzling", "sable", "every", "misty", "envious", "accidental", "French", "harmful", "blaring", "arid", "dangerous", "shabby", "definitive", "unwitting", "stingy", "impressive", "amusing", "hurtful", "severe", "studious", "secretive", "soupy", "grown", "solid", "frozen", "awkward", "anchored", "impolite", "spry", "authorized", "bright", "double", "acceptable", "sniveling", "tenuous", "courteous", "debonair", "adjoining", "tremendous", "shameful", "dreary", "ajar", "strict", "plant", "scarce", "snarling", "teeming", "recent", "scared", "spiky", "superior", "antique", "favorable", "slow", "pleasing", "foregoing", "specific", "scornful", "suspicious", "second", "adored", "squalid", "supportive", "avaricious", "secondary", "royal", "athletic", "shaky", "some"] \ No newline at end of file +[ + "cowardly", + "xylographic", + "dynamic", + "xenophobic", + "distant", + "lost", + "quick", + "zippy", + "trim", + "living", + "eager", + "infantile", + "worn", + "live", + "knowing", + "next", + "zesty", + "utter", + "rusty", + "formal", + "quizzical", + "knobby", + "little", + "amazing", + "vigilant", + "primary", + "meaty", + "phony", + "quixotic", + "mute", + "young", + "jolly", + "key", + "positive", + "miniature", + "mild", + "winged", + "cheerful", + "flashy", + "habitual", + "oceanic", + "alike", + "knotty", + "holistic", + "xylophonic", + "generous", + "quarterly", + "yielding", + "aquatic", + "sad", + "yummy", + "melodic", + "webbed", + "versed", + "zany", + "outgoing", + "busy", + "unsightly", + "bitter", + "curly", + "quaint", + "nippy", + "broken", + "brainy", + "grounded", + "guarded", + "junior", + "crisp", + "healthy", + "colorless", + "exclusive", + "scattered", + "zealous", + "menacing", + "gentle", + "fond", + "nifty", + "gaping", + "staid", + "sordid", + "noxious", + "defiant", + "rowdy", + "nondescript", + "personal", + "adolescent", + "brown", + "dashing", + "visible", + "trustworthy", + "rigid", + "villainous", + "regal", + "clueless", + "querulous", + "dependable", + "shiny", + "numerous", + "reasonable", + "cold", + "rebel", + "worst", + "broad", + "humming", + "runny", + "youthful", + "tasty", + "beloved", + "outlying", + "soft", + "belligerent", + "determined", + "clever", + "upright", + "vigorous", + "fearless", + "macho", + "minor", + "yellow", + "greasy", + "intent", + "nonstop", + "excitable", + "yellowish", + "xyloid", + "gummy", + "giving", + "unlucky", + "cheap", + "gracious", + "xerographic", + "soulful", + "selfish", + "xenotropic", + "mushy", + "common", + "merciful", + "loathsome", + "dizzy", + "frightening", + "guiltless", + "kooky", + "obscene", + "alluring", + "aboriginal", + "purring", + "makeshift", + "klutzy", + "fearful", + "fitting", + "lavish", + "zigzag", + "passionate", + "fallacious", + "pastel", + "zonked", + "sulky", + "volatile", + "gabby", + "jazzy", + "lamentable", + "somber", + "linear", + "kind", + "inferior", + "identical", + "content", + "nappy", + "handy", + "erratic", + "vagabond", + "voluminous", + "lowly", + "feisty", + "historical", + "jaded", + "extroverted", + "concrete", + "accurate", + "joint", + "unusual", + "raw", + "empty", + "petite", + "wooden", + "wistful", + "far", + "flippant", + "crowded", + "aware", + "gaudy", + "spotless", + "unused", + "low", + "rectangular", + "shadowy", + "spectacular", + "tattered", + "disgusting", + "light", + "dimpled", + "grateful", + "cooing", + "overjoyed", + "buttery", + "instinctive", + "pure", + "xanthic", + "forgetful", + "quirky", + "material", + "jumbled", + "heavy", + "crazy", + "aback", + "nasty", + "hanging", + "incompetent", + "savory", + "indelible", + "liquid", + "loutish", + "brilliant", + "hurried", + "open", + "alienated", + "imminent", + "discrete", + "immaculate", + "altruistic", + "needless", + "notable", + "pesky", + "useful", + "shrill", + "easy", + "abhorrent", + "quarrelsome", + "reddish", + "colossal", + "nebulous", + "uniform", + "scratchy", + "labored", + "juicy", + "puny", + "grumpy", + "likely", + "joyous", + "necessary", + "psychedelic", + "buoyant", + "woebegone", + "mortified", + "famous", + "smelly", + "defeated", + "worried", + "languid", + "blind", + "hungry", + "literate", + "admirable", + "maddening", + "tempting", + "coordinated", + "any", + "rustic", + "jealous", + "green", + "judicious", + "flat", + "exalted", + "detailed", + "available", + "numb", + "violet", + "straight", + "garrulous", + "kindhearted", + "feline", + "ragged", + "wretched", + "overt", + "tiny", + "kosher", + "dense", + "immense", + "yawning", + "vacuous", + "ruddy", + "electric", + "many", + "deadly", + "queasy", + "unaware", + "droopy", + "treasured", + "cynical", + "difficult", + "barren", + "overwrought", + "hellish", + "divergent", + "fatherly", + "spicy", + "ecstatic", + "untrue", + "panicky", + "noisy", + "pretty", + "comfortable", + "vain", + "assorted", + "indolent", + "yearly", + "noteworthy", + "negligible", + "psychotic", + "frayed", + "jagged", + "jaunty", + "faulty", + "sarcastic", + "romantic", + "gargantuan", + "naive", + "strange", + "nervous", + "humdrum", + "rash", + "evanescent", + "bowed", + "uneven", + "momentous", + "tough", + "loyal", + "hearty", + "monstrous", + "encouraging", + "aged", + "standard", + "futuristic", + "snappy", + "gusty", + "jumpy", + "ossified", + "jubilant", + "natural", + "normal", + "aromatic", + "dry", + "snobbish", + "parched", + "exhausted", + "qualified", + "bewildered", + "limited", + "silent", + "prickly", + "bronze", + "crabby", + "gruesome", + "anguished", + "draconian", + "unconscious", + "thorny", + "concerned", + "ruthless", + "buzzing", + "burdensome", + "wordy", + "frugal", + "economic", + "thick", + "scholarly", + "drafty", + "gratis", + "blushing", + "candid", + "waterlogged", + "moldy", + "golden", + "turbulent", + "gray", + "overrated", + "agile", + "jobless", + "smoggy", + "stained", + "genuine", + "infinite", + "high", + "secret", + "plain", + "few", + "mean", + "naughty", + "mad", + "unwieldy", + "verifiable", + "total", + "uptight", + "periodic", + "whimsical", + "vapid", + "vicious", + "selective", + "jittery", + "whispering", + "likable", + "oily", + "boundless", + "oval", + "abrasive", + "timely", + "slight", + "obsolete", + "befitting", + "venomous", + "striking", + "homeless", + "hateful", + "gorgeous", + "opulent", + "perpetual", + "picayune", + "domineering", + "monumental", + "reliable", + "erect", + "demanding", + "fragile", + "public", + "tubby", + "verdant", + "downright", + "woeful", + "deserted", + "elementary", + "muted", + "bashful", + "threatening", + "thrifty", + "numberless", + "fluid", + "sour", + "thin", + "powerless", + "absent", + "loose", + "joyful", + "leading", + "basic", + "long", + "uncommon", + "wan", + "hushed", + "obtainable", + "past", + "weepy", + "valid", + "tacky", + "understood", + "those", + "large", + "tricky", + "prize", + "hoarse", + "wonderful", + "utilized", + "pathetic", + "probable", + "blue", + "bony", + "upbeat", + "magenta", + "putrid", + "frantic", + "blinding", + "improbable", + "greenish", + "intelligent", + "overcooked", + "squealing", + "velvety", + "mere", + "noiseless", + "likeable", + "sizzling", + "thorough", + "overdue", + "illustrious", + "organic", + "fertile", + "minty", + "babyish", + "rotating", + "welcome", + "marvelous", + "intentional", + "vast", + "rough", + "violent", + "righteous", + "thundering", + "warmhearted", + "weighty", + "nosy", + "dramatic", + "beautiful", + "quiet", + "unwritten", + "vibrant", + "automatic", + "sweltering", + "ignorant", + "decorous", + "grubby", + "oddball", + "unbecoming", + "defensive", + "costly", + "juvenile", + "immediate", + "illiterate", + "great", + "reckless", + "crooked", + "ordinary", + "whole", + "fabulous", + "grizzled", + "male", + "abaft", + "chemical", + "laughable", + "lacking", + "victorious", + "receptive", + "flowery", + "untried", + "dirty", + "educated", + "noted", + "ahead", + "slushy", + "curious", + "traumatic", + "piercing", + "ubiquitous", + "vital", + "tiresome", + "lucky", + "novel", + "peaceful", + "blond", + "same", + "motherly", + "unfit", + "major", + "impish", + "vague", + "bizarre", + "roasted", + "right", + "overlooked", + "smart", + "curved", + "workable", + "playful", + "late", + "neighboring", + "astonishing", + "firm", + "rural", + "unfolded", + "forsaken", + "everlasting", + "bawdy", + "mealy", + "super", + "untidy", + "tame", + "unrealistic", + "efficient", + "new", + "giddy", + "plump", + "unruly", + "rude", + "ablaze", + "lazy", + "hilarious", + "spotty", + "unfinished", + "firsthand", + "known", + "pristine", + "pleasant", + "essential", + "ambitious", + "criminal", + "humble", + "honest", + "hospitable", + "cute", + "excited", + "daring", + "lumbering", + "colorful", + "equal", + "panoramic", + "reflective", + "stark", + "gross", + "ratty", + "obedient", + "last", + "keen", + "resolute", + "enlightened", + "needy", + "arrogant", + "stormy", + "defenseless", + "wavy", + "ultimate", + "real", + "luxurious", + "surprised", + "childlike", + "unselfish", + "scandalous", + "close", + "soggy", + "glum", + "orange", + "disturbed", + "wee", + "bland", + "husky", + "mysterious", + "growing", + "odd", + "temporary", + "flustered", + "bubbly", + "growling", + "political", + "outlandish", + "suburban", + "creative", + "reflecting", + "big", + "clumsy", + "damaging", + "abundant", + "front", + "delayed", + "boorish", + "scented", + "offbeat", + "pricey", + "blank", + "amuck", + "confused", + "kindly", + "pertinent", + "vengeful", + "exotic", + "ornery", + "emotional", + "incredible", + "sharp", + "vivid", + "fickle", + "jumbo", + "prudent", + "stylish", + "merry", + "attached", + "pessimistic", + "unlined", + "trained", + "black", + "toothsome", + "insidious", + "tested", + "auspicious", + "bulky", + "chubby", + "each", + "supreme", + "glorious", + "capital", + "fruitful", + "handmade", + "lively", + "glittering", + "bouncy", + "utopian", + "clean", + "miscreant", + "limping", + "special", + "foolhardy", + "bold", + "several", + "hollow", + "measly", + "sparse", + "miserly", + "unsteady", + "icky", + "muddy", + "jovial", + "optimal", + "ethereal", + "hurt", + "whopping", + "glamorous", + "glaring", + "pink", + "voiceless", + "bruised", + "wrong", + "authentic", + "abounding", + "focused", + "internal", + "grotesque", + "gray", + "dearest", + "impractical", + "huge", + "opposite", + "delightful", + "obese", + "impeccable", + "punctual", + "weird", + "weary", + "virtuous", + "poor", + "undesirable", + "expensive", + "abject", + "repentant", + "instructive", + "tight", + "pointless", + "truculent", + "invincible", + "better", + "lawful", + "helpless", + "cagey", + "breezy", + "plastic", + "bumpy", + "diligent", + "agonizing", + "warlike", + "classic", + "luxuriant", + "wide", + "negative", + "unripe", + "voracious", + "distinct", + "early", + "acrid", + "unimportant", + "required", + "unhealthy", + "embellished", + "lovely", + "shaggy", + "animated", + "glistening", + "realistic", + "imported", + "back", + "ornate", + "shady", + "rhetorical", + "previous", + "pungent", + "admired", + "madly", + "safe", + "productive", + "gullible", + "official", + "thoughtful", + "harmless", + "crafty", + "godly", + "nostalgic", + "bogus", + "elfin", + "earthy", + "fast", + "responsible", + "baggy", + "flagrant", + "valuable", + "present", + "trashy", + "motionless", + "rich", + "trifling", + "unfortunate", + "teeny", + "unbiased", + "lasting", + "glossy", + "gainful", + "cavernous", + "lonely", + "rare", + "wary", + "fine", + "earnest", + "swanky", + "rosy", + "trivial", + "expert", + "interesting", + "worrisome", + "active", + "annoyed", + "vivacious", + "inexpensive", + "chilly", + "subtle", + "nonchalant", + "milky", + "cooked", + "brave", + "ritzy", + "dead", + "aspiring", + "delirious", + "delicate", + "obnoxious", + "wasteful", + "assured", + "incomplete", + "barbarous", + "careful", + "uppity", + "venerated", + "dental", + "extraneous", + "twin", + "wet", + "mature", + "feminine", + "hysterical", + "honorable", + "funny", + "ample", + "round", + "billowy", + "angry", + "palatable", + "terrific", + "prestigious", + "brisk", + "pushy", + "average", + "disloyal", + "critical", + "potable", + "fantastic", + "lovable", + "stale", + "vulgar", + "rightful", + "hypnotic", + "advanced", + "depressed", + "hulking", + "cool", + "narrow", + "obsequious", + "hallowed", + "wanting", + "thoughtless", + "cultivated", + "unarmed", + "grand", + "demonic", + "leafy", + "gregarious", + "entire", + "meager", + "chief", + "industrious", + "watchful", + "variable", + "wry", + "sociable", + "sudden", + "defective", + "adaptable", + "fresh", + "adhesive", + "deafening", + "nimble", + "muddled", + "nocturnal", + "mountainous", + "haunting", + "hapless", + "neat", + "exemplary", + "hissing", + "fake", + "posh", + "painstaking", + "humorous", + "satisfying", + "heavenly", + "partial", + "legal", + "talented", + "daffy", + "clammy", + "alleged", + "pale", + "windy", + "nutritious", + "true", + "old", + "doting", + "steel", + "profitable", + "gaseous", + "terrible", + "nice", + "certain", + "tart", + "acidic", + "puzzling", + "grim", + "intrepid", + "tasteless", + "scrawny", + "carefree", + "innate", + "obeisant", + "hideous", + "marked", + "square", + "precious", + "itchy", + "breakable", + "other", + "aggressive", + "protective", + "half", + "aberrant", + "only", + "prime", + "sick", + "lumpy", + "enraged", + "gleaming", + "nautical", + "ultra", + "damp", + "mammoth", + "beneficial", + "grandiose", + "disguised", + "pleased", + "inquisitive", + "descriptive", + "bewitched", + "melted", + "capricious", + "maniacal", + "moaning", + "roomy", + "unadvised", + "brash", + "wiry", + "ten", + "cloudy", + "cheery", + "berserk", + "musty", + "adept", + "innocent", + "elastic", + "complete", + "elegant", + "anxious", + "harmonious", + "poised", + "ideal", + "agitated", + "brief", + "bare", + "boiling", + "eccentric", + "academic", + "halting", + "faithful", + "abortive", + "plausible", + "condemned", + "limp", + "imaginative", + "plaintive", + "hot", + "forthright", + "coherent", + "frivolous", + "magnificent", + "fair", + "tall", + "dishonest", + "competent", + "disgusted", + "virtual", + "robust", + "damaged", + "decent", + "thirsty", + "revolving", + "rabid", + "crushing", + "impossible", + "craven", + "pastoral", + "inborn", + "military", + "calculating", + "fanatical", + "complicated", + "impure", + "sardonic", + "rubbery", + "level", + "fragrant", + "substantial", + "immaterial", + "dopey", + "triangular", + "constant", + "grouchy", + "showy", + "apt", + "stiff", + "shocking", + "our", + "elderly", + "miserable", + "delicious", + "used", + "obvious", + "ambiguous", + "tawdry", + "perfect", + "stupid", + "cumbersome", + "acclaimed", + "impassioned", + "torpid", + "even", + "deep", + "tender", + "burly", + "proud", + "grieving", + "therapeutic", + "ancient", + "macabre", + "majestic", + "honored", + "thankful", + "abusive", + "bossy", + "puffy", + "frail", + "legitimate", + "offensive", + "brawny", + "dull", + "raspy", + "helpful", + "sturdy", + "distorted", + "heartfelt", + "misguided", + "bleak", + "useless", + "fascinated", + "first", + "that", + "able", + "slim", + "learned", + "lush", + "devilish", + "bloody", + "aching", + "steady", + "doubtful", + "foolish", + "homely", + "racial", + "deranged", + "imperfect", + "silly", + "didactic", + "understated", + "bent", + "creamy", + "winding", + "awesome", + "third", + "omniscient", + "respectful", + "wrathful", + "unique", + "illegal", + "meek", + "squeamish", + "graceful", + "scaly", + "repulsive", + "nutty", + "lean", + "frank", + "elite", + "wise", + "another", + "seemly", + "regular", + "serene", + "unpleasant", + "snotty", + "scary", + "irritating", + "frosty", + "oblong", + "white", + "lined", + "lyrical", + "ringed", + "wild", + "greedy", + "dutiful", + "granular", + "unequaled", + "remorseful", + "untimely", + "afraid", + "unable", + "harsh", + "closed", + "various", + "telling", + "best", + "cuddly", + "modern", + "discreet", + "rundown", + "direful", + "blissful", + "axiomatic", + "muffled", + "euphoric", + "feigned", + "fumbling", + "changeable", + "adventurous", + "frizzy", + "dark", + "hesitant", + "gleeful", + "tacit", + "glass", + "bountiful", + "wholesale", + "wicked", + "embarrassed", + "absorbing", + "tense", + "mixed", + "alarming", + "fretful", + "handsome", + "darling", + "messy", + "cut", + "trusting", + "tragic", + "like", + "unkempt", + "thunderous", + "tedious", + "dependent", + "good", + "boring", + "belated", + "courageous", + "enormous", + "callous", + "calm", + "insistent", + "monthly", + "full", + "weak", + "shameless", + "oafish", + "warped", + "striped", + "delectable", + "unwelcome", + "lone", + "hasty", + "lying", + "upset", + "ashamed", + "unsung", + "cooperative", + "shallow", + "exciting", + "rampant", + "furtive", + "petty", + "fatal", + "aloof", + "threadbare", + "forceful", + "absolute", + "agreeable", + "squiggly", + "bad", + "faint", + "flawless", + "goofy", + "tasteful", + "annoying", + "ugly", + "tearful", + "mindless", + "familiar", + "murky", + "luminous", + "classy", + "uncovered", + "screeching", + "composed", + "festive", + "frightened", + "mundane", + "neighborly", + "optimistic", + "giant", + "clear", + "onerous", + "horrible", + "grimy", + "witty", + "apathetic", + "acid", + "flaky", + "peppery", + "neglected", + "cautious", + "observant", + "chunky", + "pumped", + "frequent", + "aggravating", + "stable", + "endurable", + "taboo", + "alarmed", + "dear", + "ripe", + "flawed", + "abstracted", + "thinkable", + "stimulating", + "unhappy", + "gigantic", + "plush", + "highfalutin", + "chivalrous", + "feeble", + "perfumed", + "redundant", + "flimsy", + "smiling", + "polished", + "left", + "evasive", + "sedate", + "deadpan", + "unnatural", + "original", + "disastrous", + "caring", + "cloistered", + "sympathetic", + "fat", + "sandy", + "married", + "writhing", + "ill", + "short", + "near", + "drab", + "infamous", + "massive", + "daily", + "remarkable", + "tired", + "all", + "vacant", + "rotten", + "mighty", + "lewd", + "attractive", + "arctic", + "united", + "lame", + "loud", + "favorite", + "adamant", + "woozy", + "exuberant", + "failing", + "plucky", + "actual", + "medical", + "humiliating", + "deficient", + "spirited", + "waiting", + "guilty", + "powerful", + "fortunate", + "lanky", + "both", + "flamboyant", + "statuesque", + "ethical", + "artistic", + "gifted", + "elated", + "magical", + "malicious", + "efficacious", + "popular", + "tinted", + "drunk", + "piquant", + "fixed", + "fancy", + "ironclad", + "speedy", + "fluttering", + "spontaneous", + "worse", + "lustrous", + "whispered", + "skillful", + "female", + "remote", + "dusty", + "coarse", + "excellent", + "enchanting", + "experienced", + "satisfied", + "gamy", + "furry", + "hairy", + "eatable", + "enchanted", + "snoopy", + "evergreen", + "sneaky", + "shivering", + "dispensable", + "guttural", + "devoted", + "wobbly", + "resonant", + "idolized", + "simplistic", + "usable", + "curvy", + "gripping", + "possible", + "longing", + "tightfisted", + "nauseating", + "successful", + "exultant", + "shy", + "unknown", + "spiritual", + "which", + "irate", + "adorable", + "possessive", + "evil", + "lethal", + "false", + "waggish", + "frilly", + "salty", + "creepy", + "standing", + "unwilling", + "hidden", + "practical", + "orderly", + "alert", + "abrupt", + "sane", + "informal", + "strident", + "faded", + "impartial", + "private", + "willing", + "talkative", + "wacky", + "dual", + "profuse", + "squeaky", + "painful", + "glib", + "idealistic", + "functional", + "metallic", + "stunning", + "icy", + "tepid", + "direct", + "forked", + "subsequent", + "tranquil", + "steep", + "angelic", + "austere", + "weekly", + "infatuated", + "trite", + "freezing", + "portly", + "spooky", + "perky", + "penitent", + "placid", + "wiggly", + "towering", + "abnormal", + "grave", + "starchy", + "wandering", + "similar", + "typical", + "friendly", + "bustling", + "sticky", + "occasional", + "livid", + "spiteful", + "serpentine", + "medium", + "esteemed", + "hefty", + "tan", + "polite", + "rewarding", + "tangy", + "separate", + "happy", + "dim", + "different", + "elaborate", + "starry", + "physical", + "considerate", + "canine", + "acoustic", + "dimwitted", + "worthless", + "relieved", + "heady", + "recondite", + "addicted", + "trusty", + "idle", + "troubled", + "careless", + "masculine", + "insecure", + "lopsided", + "mellow", + "frigid", + "sentimental", + "fluffy", + "hard", + "annual", + "loving", + "outrageous", + "wilted", + "permissible", + "sinful", + "energetic", + "finished", + "abandoned", + "sloppy", + "disfigured", + "red", + "equatorial", + "single", + "abiding", + "pitiful", + "worthwhile", + "slimy", + "cylindrical", + "premium", + "groovy", + "silky", + "ludicrous", + "flickering", + "charming", + "warm", + "decimal", + "svelte", + "modest", + "moist", + "urban", + "alive", + "truthful", + "equable", + "succinct", + "conscious", + "sorrowful", + "worldly", + "watery", + "amused", + "radiant", + "pointed", + "ready", + "tidy", + "rapid", + "free", + "parallel", + "celebrated", + "outstanding", + "reminiscent", + "capable", + "abashed", + "filthy", + "dismal", + "corny", + "finicky", + "dapper", + "cultured", + "taut", + "smooth", + "sleepy", + "rainy", + "faraway", + "slippery", + "unlawful", + "sassy", + "skeletal", + "worthy", + "silver", + "memorable", + "bluish", + "shimmering", + "moral", + "subdued", + "womanly", + "accessible", + "future", + "unequal", + "deeply", + "important", + "absurd", + "gloomy", + "whirlwind", + "wealthy", + "decisive", + "general", + "appropriate", + "spotted", + "cluttered", + "mediocre", + "shut", + "humongous", + "synonymous", + "bored", + "fuzzy", + "superb", + "spiffy", + "imaginary", + "complex", + "shocked", + "spherical", + "steadfast", + "stereotyped", + "digital", + "puzzled", + "definite", + "cruel", + "fierce", + "purple", + "foamy", + "elliptical", + "symptomatic", + "circular", + "superficial", + "sunny", + "torn", + "wakeful", + "sore", + "combative", + "sweet", + "submissive", + "testy", + "splendid", + "phobic", + "proper", + "edible", + "swift", + "hopeful", + "sugary", + "stupendous", + "fussy", + "unsuitable", + "absorbed", + "tangible", + "eminent", + "smug", + "idiotic", + "awful", + "attentive", + "ceaseless", + "acrobatic", + "skinny", + "corrupt", + "dazzling", + "sable", + "every", + "misty", + "envious", + "accidental", + "French", + "harmful", + "blaring", + "arid", + "dangerous", + "shabby", + "definitive", + "unwitting", + "stingy", + "impressive", + "amusing", + "hurtful", + "severe", + "studious", + "secretive", + "soupy", + "grown", + "solid", + "frozen", + "awkward", + "anchored", + "impolite", + "spry", + "authorized", + "bright", + "double", + "acceptable", + "sniveling", + "tenuous", + "courteous", + "debonair", + "adjoining", + "tremendous", + "shameful", + "dreary", + "ajar", + "strict", + "plant", + "scarce", + "snarling", + "teeming", + "recent", + "scared", + "spiky", + "superior", + "antique", + "favorable", + "slow", + "pleasing", + "foregoing", + "specific", + "scornful", + "suspicious", + "second", + "adored", + "squalid", + "supportive", + "avaricious", + "secondary", + "royal", + "athletic", + "shaky", + "some" +] \ No newline at end of file diff --git a/assets/lists/animals.json b/assets/lists/animals.json index 438f0276c..3a5302640 100644 --- a/assets/lists/animals.json +++ b/assets/lists/animals.json @@ -1 +1,1343 @@ -["cowbird", "kite", "hoopoe", "vulture", "whapuku", "yearling", "narwhal", "nandu", "cassowary", "cooter", "iguana", "spoonbill", "waterstrider", "davidstiger", "erne", "shark", "pachyderm", "diplodocus", "jerboa", "invisiblerail", "dipper", "tick", "junco", "frenchbulldog", "nightingale", "moa", "cutworm", "goosefish", "bullfrog", "urutu", "jay", "nightjar", "zander", "redhead", "rockrat", "bittern", "coqui", "tilefish", "xantus", "woodborer", "xeme", "nyala", "guanaco", "foxhound", "jabiru", "aurochs", "kangaroo", "ichthyosaurs", "janenschia", "bellfrog", "queenconch", "bushviper", "pitbull", "ynambu", "xenoposeidon", "skua", "papillon", "uakari", "urchin", "wingedmagpie", "canary", "warbler", "inganue", "gelada", "yapok", "nene", "unau", "yellowlegs", "zebu", "nase", "titi", "achillestang", "equine", "woodpecker", "cub", "vasesponge", "stingray", "devilfish", "hamadryas", "aoudad", "esok", "titmouse", "ostrich", "dwarfrabbit", "roan", "javalina", "brontosaurus", "creamdraft", "quoll", "pilchard", "rooster", "vireo", "lamprey", "kawala", "viper", "dikkops", "zebra", "blacklab", "urson", "quahog", "finwhale", "xanthareel", "komondor", "parrotlet", "upupa", "quarterhorse", "turkey", "olingo", "ovenbird", "lcont", "vaquita", "urial", "quetzal", "nilgai", "louse", "joey", "graywolf", "bushsqueaker", "kitten", "quadrisectus", "tiger", "schnauzer", "cockatiel", "dorking", "xrayfish", "cony", "robin", "nightheron", "yucker", "vixen", "coot", "bustard", "coelacanth", "watussi", "hornedviper", "vampirebat", "bluejay", "duiker", "naga", "hamster", "boar", "wolfhound", "mantaray", "kitty", "goat", "nubiangoat", "turtledove", "elkhound", "acaciarat", "dog", "drake", "goldfish", "eelelephant", "gelding", "llama", "umbrette", "trout", "otter", "xenopus", "yeti", "trumpeterbird", "yellowthroat", "goblinshark", "volvox", "maiasaura", "quetzalcoatlus", "goldfinch", "whiterhino", "goral", "noddy", "lion", "quokka", "tarsier", "wyvern", "ichneumonfly", "chickadee", "ichthyostega", "gardensnake", "vole", "xenurine", "ostracod", "lynx", "lobster", "hog", "honeybadger", "backswimmer", "reptile", "ram", "racerunner", "shrike", "noctule", "molesnake", "flatfish", "okapi", "whale", "blowfish", "whoopingcrane", "noctilio", "hyena", "borzoi", "ibizanhound", "dugong", "myna", "rattail", "verdin", "dodo", "guillemot", "axisdeer", "harborporpoise", "sablefish", "yak", "nurseshark", "krill", "cur", "flea", "hoatzin", "mite", "mallard", "whelp", "koalabear", "teal", "thrush", "orangutan", "wireworm", "yaffle", "jackal", "glowworm", "eland", "flyingfox", "anura", "chafer", "xoni", "fox", "howlermonkey", "merlin", "xiaosaurus", "cottonmouth", "veery", "baboon", "huemul", "olm", "noolbenger", "amoeba", "tanager", "opossum", "oryx", "leopardseal", "butterfly", "nightcrawler", "kinkajou", "xiphiasgladius", "koala", "cuckoo", "teledu", "smelts", "wirehair", "nettlefish", "rabidsquirrel", "dorado", "pewee", "falcon", "zorilla", "pterodactyl", "islandwhistler", "chevrotain", "chital", "polyturator", "vicuna", "trumpeterswan", "jaguarundi", "nymph", "horseshoebat", "pullet", "draughthorse", "yellowhammer", "electriceel", "rook", "hen", "towhee", "dotterel", "farmdog", "grouper", "kakapo", "lunamoth", "walkingstick", "axolotl", "muskrat", "puffin", "inepython", "peacock", "chihuahua", "jellyfish", "leech", "zeren", "springtail", "sheep", "leafbird", "termite", "kronosaurus", "halcyon", "molly", "lemur", "kleekai", "annelid", "toadfish", "whooper", "xenarthra", "banteng", "egret", "ridgeback", "puma", "hornedfrog", "quelea", "hippopotamus", "pangolin", "piranha", "ruddyduck", "vipersquid", "ungulate", "jackrabbit", "waterboatman", "kusimanse", "drongo", "ewe", "auklet", "loon", "eft", "massasauga", "frigatebird", "jaguar", "urus", "quagga", "xenops", "fairyfly", "andeancondor", "venomoussnake", "lice", "flycatcher", "lorikeet", "indigobunting", "eel", "hammerkop", "puppy", "elephant", "gemsbuck", "eagle", "dassie", "appaloosa", "firecrest", "yardant", "harpyeagle", "auk", "giantpetrel", "kodiakbear", "panther", "wobbegongshark", "manta", "jingle", "raccoon", "ling", "gilamonster", "pronghorn", "stag", "spreadwing", "sugarglider", "whippoorwill", "jumpingbean", "mamba", "kookaburra", "flounder", "fawn", "dungenesscrab", "rasbora", "redstart", "nighthawk", "foxterrier", "donkey", "guernseycow", "waterdogs", "trogon", "pintail", "nerka", "kiskadee", "dingo", "jacana", "vase", "lemonshark", "bear", "imperatorangel", "emeraldlizard", "ibisbill", "earthworm", "wolf", "abat", "clam", "reindeer", "bobolink", "dachshund", "ray", "cuttlefish", "gannet", "waterbug", "glasslizard", "dore", "orca", "zenaida", "dwarfmongoose", "squeaker", "allosaurus", "spaniel", "antbear", "kelpie", "hawk", "megaraptor", "imago", "fowl", "wisent", "rhea", "bovine", "vulpesvulpes", "bream", "emperorpenguin", "skimmer", "polyp", "hypacrosaurus", "kouprey", "meadowlark", "oxen", "grunion", "urubu", "tortoise", "emperorshrimp", "fluke", "iriomotecat", "nematode", "beaver", "carp", "ragfish", "husky", "schapendoes", "sifaka", "armadillo", "erin", "nuthatch", "bunting", "lizard", "feline", "kakarikis", "tapaculo", "wattlebird", "groundhornbill", "mosasaur", "walleye", "spiketail", "thoroughbred", "zebrafish", "terrapin", "viperfish", "seagull", "motmot", "guineafowl", "herald", "degu", "plankton", "lacewing", "bufflehead", "porpoise", "kittiwake", "pooch", "barasingha", "greatdane", "starfish", "izuthrush", "osprey", "billygoat", "alpaca", "koi", "discus", "xiphosuran", "limpet", "kinglet", "fantail", "boilweevil", "unicorn", "imperialeagle", "gorilla", "hedgehog", "thrip", "galah", "whiteeye", "swallow", "ocelot", "grizzlybear", "sawfish", "bird", "horseshoecrab", "earwig", "deinonychus", "deer", "rainbowtrout", "pinscher", "monkfish", "tsetsefly", "plainsqueaker", "woodchuck", "harborseal", "equestrian", "eyra", "giraffe", "tegus", "ant", "iggypops", "xanclomys", "aruanas", "zebradove", "rail", "cock", "manatee", "koodoo", "bluet", "acouchi", "catbird", "ratfish", "fossa", "oxpecker", "kob", "newt", "honeycreeper", "longspur", "quail", "roebuck", "oropendola", "pomeranian", "lemming", "goose", "quillback", "camel", "hagfish", "leveret", "hind", "aardvark", "majungatholus", "heifer", "chuckwalla", "gopher", "meadowhawk", "antelope", "sparrow", "gallinule", "chiffchaff", "hyrax", "caribou", "nandoo", "johndory", "gourami", "piedstarling", "langur", "ferret", "gull", "wallaroo", "giantschnauzer", "devil", "oyster", "hare", "hummingbird", "guineapig", "sable", "nauplius", "trumpetfish", "smew", "basilisk", "solenodon", "painthorse", "triceratops", "siskin", "wallaby", "pigeon", "pupfish", "xerus", "rottweiler", "redpoll", "malamute", "barebirdbat", "rhino", "wilddog", "zopilote", "atlasmoth", "ivorygull", "hornet", "tragopan", "kid", "waterspaniel", "hookersealion", "sakimonkey", "haddock", "killdeer", "paca", "rabbit", "bluewhale", "gangesdolphin", "gar", "hart", "pointer", "cormorant", "tench", "salmon", "raven", "fallowdeer", "wren", "gosling", "waterthrush", "eeve", "velvetworm", "karakul", "weasel", "fugu", "gnu", "ibadanmalimbe", "peafowl", "nutria", "squamata", "watermoccasin", "mangabey", "basil", "finch", "microvenator", "cockerspaniel", "human", "tahr", "dassierat", "shihtzu", "xiphias", "thrasher", "xraytetra", "airedale", "lowchen", "racer", "ptarmigan", "partridge", "mammoth", "toucan", "hydra", "hoki", "blackbird", "vulpesvelox", "tuna", "zebrafinch", "tamarin", "tomtit", "icefish", "killifish", "budgie", "wrenchbird", "wigeon", "garpike", "anaconda", "massospondylus", "hanumanmonkey", "zooplankton", "killerwhale", "palmsquirrel", "gartersnake", "fish", "gyrfalcon", "warmblood", "turtle", "copperhead", "morayeel", "affenpinscher", "bluegill", "monkey", "vervet", "swift", "anchovy", "groundsquirrel", "frog", "cygnet", "neontetra", "anhinga", "gordonsetter", "firefly", "velvetcrab", "mullet", "homalocephale", "tapir", "lionfish", "hapuku", "lungfish", "pinemarten", "cavy", "herring", "rat", "greyhound", "leafwing", "owlbutterfly", "albino", "bellsnake", "barbet", "daygecko", "sunbittern", "grayfox", "amphiuma", "hammerheadbird", "oriole", "amphibian", "umbrellabird", "cero", "stickleback", "conch", "cheetah", "fisheagle", "dowitcher", "crane", "groundjay", "parakeet", "ibex", "mussel", "dove", "phalarope", "waxwing", "glassfrog", "hogdeer", "gadwall", "pika", "elk", "ox", "ilsamochadegu", "lark", "wombat", "hadrosaurus", "dunnart", "heron", "mantis", "dragon", "fruitbat", "bug", "grub", "barbel", "crocodile", "honeyeater", "woodstorks", "ichidna", "shorebird", "blackfish", "wildebeast", "mollusk", "merganser", "cottontail", "velociraptor", "treeboa", "fiddlercrab", "gaur", "dolphin", "mole", "jenny", "nudibranch", "mussaurus", "weaverbird", "sow", "godwit", "queensnake", "flicker", "squid", "samoyeddog", "avians", "hackee", "elver", "skylark", "doctorfish", "springpeeper", "muskox", "flies", "nag", "grison", "acornweevil", "duckling", "pharaohhound", "monoclonius", "scarab", "fieldspaniel", "seabird", "snail", "duckbillcat", "kagu", "civet", "ermine", "nutcracker", "cirriped", "pinniped", "nagapies", "stallion", "coyote", "bullshark", "walrus", "kingsnake", "owl", "bergerpicard", "shoveler", "bluefintuna", "shorthair", "avocet", "komododragon", "gerbil", "gonolek", "greatargus", "wildass", "pheasant", "cougar", "wildcat", "mongrel", "starling", "polliwog", "cow", "needletail", "arkshell", "shrimp", "purplemarten", "aegeancat", "curl", "dairycow", "grayling", "cranefly", "prairiedog", "emu", "dunlin", "macaque", "doe", "comet", "gypsymoth", "leafcutterant", "nandine", "mice", "hornshark", "crustacean", "newtnutria", "coney", "fishingcat", "gemsbok", "crayfish", "magpie", "warthog", "rodent", "scorpion", "mockingbird", "incatern", "pipit", "tayra", "gecko", "ankole", "serval", "bluebird", "terrier", "urva", "parrot", "possum", "shearwater", "hatchetfish", "mudpuppy", "phoenix", "crocodileskink", "tigershark", "addax", "grayreefshark", "bluefish", "conure", "huia", "laika", "goshawk", "lobo", "kudu", "indri", "moorhen", "flyingfish", "graysquirrel", "flyingsquirrel", "bufeo", "deermouse", "tarpan", "pondskater", "seaurchin", "kingfisher", "egg", "anole", "stonefly", "cobra", "ratsnake", "anteater", "coursinghounds", "cats", "fairybluebird", "sturgeon", "marmot", "adder", "barb", "thunderbird", "loris", "macaw", "agouti", "lhasaapso", "ape", "wreckfish", "andeancat", "goitered", "thylacine", "galago", "hartebeest", "collie", "shepherd", "dikdik", "hellbender", "mara", "senegalpython", "octopus", "leonberger", "meerkat", "rainbowfish", "hoiho", "sora", "steed", "sealion", "hake", "copepod", "waterbuck", "pikeperch", "grosbeak", "larva", "burro", "buzzard", "leafhopper", "brant", "kentrosaurus", "clumber", "tuatara", "mayfly", "cockatoo", "mandrill", "cardinal", "mutt", "canine", "armyant", "screamer", "flamingo", "islandcanary", "pekingese", "rhinoceros", "turaco", "tern", "dinosaur", "spadefish", "polecat", "skunk", "boto", "germanshepherd", "capybara", "poodle", "kingbird", "finnishspitz", "sphinx", "mammal", "takin", "nabarlek", "silverfox", "eyas", "raptors", "marten", "guppy", "freshwaterclam", "kiwi", "mantid", "siamang", "frilledlizard", "duck", "numbat", "python", "hectorsdolphin", "snowmonkey", "spotteddolphin", "hapuka", "needlefish", "nakedmolerat", "groundhog", "mealworm", "squirrel", "chanticleer", "lamb", "moose", "primate", "minnow", "firesalamander", "bettong", "chicken", "reynard", "hornedtoad", "scarletibis", "milksnake", "blackbuck", "crossbill", "hamadryad", "cornsnake", "illadopsis", "rockpython", "eskimodog", "globefish", "adouri", "macropod", "agama", "harrierhawk", "roller", "caudata", "mynah", "hairstreak", "coypu", "liger", "penguin", "mouflon", "arawana", "kitfox", "dalmatian", "morpho", "carpenterant", "slothbear", "caiman", "toad", "setter", "argusfish", "honeybee", "mollies", "grouse", "armedcrab", "perch", "eider", "drever", "alligator", "sunbear", "booby", "blobfish", "fanworms", "pike", "spottedowl", "shelduck", "turnstone", "hylaeosaurus", "treecreeper", "swellfish", "clawedfrog", "panda", "pupa", "cowrie", "wrasse", "fireant", "cricket", "humpbackwhale", "chick", "sanddollar", "widgeon", "chameleon", "marabou", "squab", "moray", "marlin", "acornbarnacle", "freshwatereel", "mantisray", "wryneck", "bonobo", "whitepelican", "woodcock", "prawn", "megalosaurus", "makoshark", "ladybird", "topi", "whimbrel", "marmoset", "angelfish", "echidna", "hyracotherium", "muntjac", "anemone", "blackgoby", "goldeneye", "boutu", "myotis", "stiger", "willet", "cob", "beagle", "mastiff", "kestrel", "greathornedowl", "dromedary", "pussycat", "sidewinder", "binturong", "gentoopenguin", "sandpiper", "astarte", "bongo", "phoebe", "bighorn", "monkseal", "manxcat", "pipistrelle", "mustang", "damselfly", "horse", "dormouse", "harrier", "harvestmen", "caecilian", "gerenuk", "bullmastiff", "abalone", "sponge", "barnacle", "buck", "shrew", "pelican", "tattler", "robberfly", "flyinglemur", "elephantseal", "bass", "goa", "smoushond", "bronco", "pufferfish", "sunbird", "apatosaur", "albatross", "genet", "sheepdog", "bichonfrise", "buffalo", "bubblefish", "furseal", "pug", "platypus", "fulmar", "porcupine", "mouse", "curassow", "cat", "curlew", "grackle", "limpkin", "waterbuffalo", "amurminnow", "impala", "piglet", "sardine", "angwantibo", "caterpillar", "isopod", "foal", "rattlesnake", "tinamou", "boubou", "polarbear", "aztecant", "iguanodon", "harvestmouse", "silverfish", "minibeast", "hogget", "chinchilla", "plover", "armyworm", "amberpenshell", "ibis", "weevil", "slug", "cattle", "baiji", "alleycat", "tenrec", "antlion", "cattledog", "lovebird", "akitainu", "condor", "fieldmouse", "crab", "halicore", "hypsilophodon", "seal", "sheldrake", "blesbok", "stilt", "gemclam", "arthropod", "tadpole", "monarch", "glassfish", "halibut", "barracuda", "paddlefish", "mule", "gharial", "fennecfox", "taruca", "seriema", "caracal", "gander", "ammonite", "pygmy", "desertpupfish", "chamois", "ayeaye", "fly", "serpent", "crow", "ghostshrimp", "springbok", "archerfish", "solitaire", "horsemouse", "roach", "gallowaycow", "gavial", "pony", "midge", "piedkingfisher", "scaup", "chimneyswift", "seaslug", "whippet", "gazelle", "scallop", "stork", "seahog", "pterosaurs", "beauceron", "pig", "clingfish", "puffer", "seahorse", "harpseal", "wolverine", "argali", "planthopper", "worm", "bluebottle", "bat", "leopard", "coral", "chimpanzee", "cicada", "salamander", "dogfish", "ass", "bats", "angora", "cleanerwrasse", "sloth", "calf", "bull", "frogmouth", "skipper", "coati", "hound", "murrelet", "mink", "aardwolf", "saiga", "bison", "cusimanse", "alpinegoat", "basenji", "trex", "aracari", "silkworm", "bobcat", "bilby", "mongoose", "songbird", "darwinsfox", "dromaeosaur", "snipe", "blackfly", "peccary", "colt", "stud", "bluetang", "aidi", "nautilus", "roadrunner", "stegosaurus", "saddlebred", "bobwhite", "sanderling", "bushbaby", "mapturtle", "sambar", "mare", "waterdragons", "canvasback", "chipmunk", "snake", "badger", "blueshark", "bactrian", "betafish", "pittabird", "swallowtail", "stoat", "boa", "hermitcrab", "hornbill", "bumblebee", "chupacabra", "drafthorse", "steer", "bulldog", "gibbon", "natterjacktoad", "silkyterrier", "sapsucker", "bobtail", "bandicoot", "babirusa", "mastodon", "spitz", "creature", "cod", "catfish", "arrowana", "borer", "grebe", "goldencat", "bee", "swordfish", "mousebird", "sunfish", "swan", "seamonkey", "schipperke", "skink", "cuscus", "scoter", "bunny"] \ No newline at end of file +[ + "cowbird", + "kite", + "hoopoe", + "vulture", + "whapuku", + "yearling", + "narwhal", + "nandu", + "cassowary", + "cooter", + "iguana", + "spoonbill", + "waterstrider", + "davidstiger", + "erne", + "shark", + "pachyderm", + "diplodocus", + "jerboa", + "invisiblerail", + "dipper", + "tick", + "junco", + "frenchbulldog", + "nightingale", + "moa", + "cutworm", + "goosefish", + "bullfrog", + "urutu", + "jay", + "nightjar", + "zander", + "redhead", + "rockrat", + "bittern", + "coqui", + "tilefish", + "xantus", + "woodborer", + "xeme", + "nyala", + "guanaco", + "foxhound", + "jabiru", + "aurochs", + "kangaroo", + "ichthyosaurs", + "janenschia", + "bellfrog", + "queenconch", + "bushviper", + "pitbull", + "ynambu", + "xenoposeidon", + "skua", + "papillon", + "uakari", + "urchin", + "wingedmagpie", + "canary", + "warbler", + "inganue", + "gelada", + "yapok", + "nene", + "unau", + "yellowlegs", + "zebu", + "nase", + "titi", + "achillestang", + "equine", + "woodpecker", + "cub", + "vasesponge", + "stingray", + "devilfish", + "hamadryas", + "aoudad", + "esok", + "titmouse", + "ostrich", + "dwarfrabbit", + "roan", + "javalina", + "brontosaurus", + "creamdraft", + "quoll", + "pilchard", + "rooster", + "vireo", + "lamprey", + "kawala", + "viper", + "dikkops", + "zebra", + "blacklab", + "urson", + "quahog", + "finwhale", + "xanthareel", + "komondor", + "parrotlet", + "upupa", + "quarterhorse", + "turkey", + "olingo", + "ovenbird", + "lcont", + "vaquita", + "urial", + "quetzal", + "nilgai", + "louse", + "joey", + "graywolf", + "bushsqueaker", + "kitten", + "quadrisectus", + "tiger", + "schnauzer", + "cockatiel", + "dorking", + "xrayfish", + "cony", + "robin", + "nightheron", + "yucker", + "vixen", + "coot", + "bustard", + "coelacanth", + "watussi", + "hornedviper", + "vampirebat", + "bluejay", + "duiker", + "naga", + "hamster", + "boar", + "wolfhound", + "mantaray", + "kitty", + "goat", + "nubiangoat", + "turtledove", + "elkhound", + "acaciarat", + "dog", + "drake", + "goldfish", + "eelelephant", + "gelding", + "llama", + "umbrette", + "trout", + "otter", + "xenopus", + "yeti", + "trumpeterbird", + "yellowthroat", + "goblinshark", + "volvox", + "maiasaura", + "quetzalcoatlus", + "goldfinch", + "whiterhino", + "goral", + "noddy", + "lion", + "quokka", + "tarsier", + "wyvern", + "ichneumonfly", + "chickadee", + "ichthyostega", + "gardensnake", + "vole", + "xenurine", + "ostracod", + "lynx", + "lobster", + "hog", + "honeybadger", + "backswimmer", + "reptile", + "ram", + "racerunner", + "shrike", + "noctule", + "molesnake", + "flatfish", + "okapi", + "whale", + "blowfish", + "whoopingcrane", + "noctilio", + "hyena", + "borzoi", + "ibizanhound", + "dugong", + "myna", + "rattail", + "verdin", + "dodo", + "guillemot", + "axisdeer", + "harborporpoise", + "sablefish", + "yak", + "nurseshark", + "krill", + "cur", + "flea", + "hoatzin", + "mite", + "mallard", + "whelp", + "koalabear", + "teal", + "thrush", + "orangutan", + "wireworm", + "yaffle", + "jackal", + "glowworm", + "eland", + "flyingfox", + "anura", + "chafer", + "xoni", + "fox", + "howlermonkey", + "merlin", + "xiaosaurus", + "cottonmouth", + "veery", + "baboon", + "huemul", + "olm", + "noolbenger", + "amoeba", + "tanager", + "opossum", + "oryx", + "leopardseal", + "butterfly", + "nightcrawler", + "kinkajou", + "xiphiasgladius", + "koala", + "cuckoo", + "teledu", + "smelts", + "wirehair", + "nettlefish", + "rabidsquirrel", + "dorado", + "pewee", + "falcon", + "zorilla", + "pterodactyl", + "islandwhistler", + "chevrotain", + "chital", + "polyturator", + "vicuna", + "trumpeterswan", + "jaguarundi", + "nymph", + "horseshoebat", + "pullet", + "draughthorse", + "yellowhammer", + "electriceel", + "rook", + "hen", + "towhee", + "dotterel", + "farmdog", + "grouper", + "kakapo", + "lunamoth", + "walkingstick", + "axolotl", + "muskrat", + "puffin", + "inepython", + "peacock", + "chihuahua", + "jellyfish", + "leech", + "zeren", + "springtail", + "sheep", + "leafbird", + "termite", + "kronosaurus", + "halcyon", + "molly", + "lemur", + "kleekai", + "annelid", + "toadfish", + "whooper", + "xenarthra", + "banteng", + "egret", + "ridgeback", + "puma", + "hornedfrog", + "quelea", + "hippopotamus", + "pangolin", + "piranha", + "ruddyduck", + "vipersquid", + "ungulate", + "jackrabbit", + "waterboatman", + "kusimanse", + "drongo", + "ewe", + "auklet", + "loon", + "eft", + "massasauga", + "frigatebird", + "jaguar", + "urus", + "quagga", + "xenops", + "fairyfly", + "andeancondor", + "venomoussnake", + "lice", + "flycatcher", + "lorikeet", + "indigobunting", + "eel", + "hammerkop", + "puppy", + "elephant", + "gemsbuck", + "eagle", + "dassie", + "appaloosa", + "firecrest", + "yardant", + "harpyeagle", + "auk", + "giantpetrel", + "kodiakbear", + "panther", + "wobbegongshark", + "manta", + "jingle", + "raccoon", + "ling", + "gilamonster", + "pronghorn", + "stag", + "spreadwing", + "sugarglider", + "whippoorwill", + "jumpingbean", + "mamba", + "kookaburra", + "flounder", + "fawn", + "dungenesscrab", + "rasbora", + "redstart", + "nighthawk", + "foxterrier", + "donkey", + "guernseycow", + "waterdogs", + "trogon", + "pintail", + "nerka", + "kiskadee", + "dingo", + "jacana", + "vase", + "lemonshark", + "bear", + "imperatorangel", + "emeraldlizard", + "ibisbill", + "earthworm", + "wolf", + "abat", + "clam", + "reindeer", + "bobolink", + "dachshund", + "ray", + "cuttlefish", + "gannet", + "waterbug", + "glasslizard", + "dore", + "orca", + "zenaida", + "dwarfmongoose", + "squeaker", + "allosaurus", + "spaniel", + "antbear", + "kelpie", + "hawk", + "megaraptor", + "imago", + "fowl", + "wisent", + "rhea", + "bovine", + "vulpesvulpes", + "bream", + "emperorpenguin", + "skimmer", + "polyp", + "hypacrosaurus", + "kouprey", + "meadowlark", + "oxen", + "grunion", + "urubu", + "tortoise", + "emperorshrimp", + "fluke", + "iriomotecat", + "nematode", + "beaver", + "carp", + "ragfish", + "husky", + "schapendoes", + "sifaka", + "armadillo", + "erin", + "nuthatch", + "bunting", + "lizard", + "feline", + "kakarikis", + "tapaculo", + "wattlebird", + "groundhornbill", + "mosasaur", + "walleye", + "spiketail", + "thoroughbred", + "zebrafish", + "terrapin", + "viperfish", + "seagull", + "motmot", + "guineafowl", + "herald", + "degu", + "plankton", + "lacewing", + "bufflehead", + "porpoise", + "kittiwake", + "pooch", + "barasingha", + "greatdane", + "starfish", + "izuthrush", + "osprey", + "billygoat", + "alpaca", + "koi", + "discus", + "xiphosuran", + "limpet", + "kinglet", + "fantail", + "boilweevil", + "unicorn", + "imperialeagle", + "gorilla", + "hedgehog", + "thrip", + "galah", + "whiteeye", + "swallow", + "ocelot", + "grizzlybear", + "sawfish", + "bird", + "horseshoecrab", + "earwig", + "deinonychus", + "deer", + "rainbowtrout", + "pinscher", + "monkfish", + "tsetsefly", + "plainsqueaker", + "woodchuck", + "harborseal", + "equestrian", + "eyra", + "giraffe", + "tegus", + "ant", + "iggypops", + "xanclomys", + "aruanas", + "zebradove", + "rail", + "cock", + "manatee", + "koodoo", + "bluet", + "acouchi", + "catbird", + "ratfish", + "fossa", + "oxpecker", + "kob", + "newt", + "honeycreeper", + "longspur", + "quail", + "roebuck", + "oropendola", + "pomeranian", + "lemming", + "goose", + "quillback", + "camel", + "hagfish", + "leveret", + "hind", + "aardvark", + "majungatholus", + "heifer", + "chuckwalla", + "gopher", + "meadowhawk", + "antelope", + "sparrow", + "gallinule", + "chiffchaff", + "hyrax", + "caribou", + "nandoo", + "johndory", + "gourami", + "piedstarling", + "langur", + "ferret", + "gull", + "wallaroo", + "giantschnauzer", + "devil", + "oyster", + "hare", + "hummingbird", + "guineapig", + "sable", + "nauplius", + "trumpetfish", + "smew", + "basilisk", + "solenodon", + "painthorse", + "triceratops", + "siskin", + "wallaby", + "pigeon", + "pupfish", + "xerus", + "rottweiler", + "redpoll", + "malamute", + "barebirdbat", + "rhino", + "wilddog", + "zopilote", + "atlasmoth", + "ivorygull", + "hornet", + "tragopan", + "kid", + "waterspaniel", + "hookersealion", + "sakimonkey", + "haddock", + "killdeer", + "paca", + "rabbit", + "bluewhale", + "gangesdolphin", + "gar", + "hart", + "pointer", + "cormorant", + "tench", + "salmon", + "raven", + "fallowdeer", + "wren", + "gosling", + "waterthrush", + "eeve", + "velvetworm", + "karakul", + "weasel", + "fugu", + "gnu", + "ibadanmalimbe", + "peafowl", + "nutria", + "squamata", + "watermoccasin", + "mangabey", + "basil", + "finch", + "microvenator", + "cockerspaniel", + "human", + "tahr", + "dassierat", + "shihtzu", + "xiphias", + "thrasher", + "xraytetra", + "airedale", + "lowchen", + "racer", + "ptarmigan", + "partridge", + "mammoth", + "toucan", + "hydra", + "hoki", + "blackbird", + "vulpesvelox", + "tuna", + "zebrafinch", + "tamarin", + "tomtit", + "icefish", + "killifish", + "budgie", + "wrenchbird", + "wigeon", + "garpike", + "anaconda", + "massospondylus", + "hanumanmonkey", + "zooplankton", + "killerwhale", + "palmsquirrel", + "gartersnake", + "fish", + "gyrfalcon", + "warmblood", + "turtle", + "copperhead", + "morayeel", + "affenpinscher", + "bluegill", + "monkey", + "vervet", + "swift", + "anchovy", + "groundsquirrel", + "frog", + "cygnet", + "neontetra", + "anhinga", + "gordonsetter", + "firefly", + "velvetcrab", + "mullet", + "homalocephale", + "tapir", + "lionfish", + "hapuku", + "lungfish", + "pinemarten", + "cavy", + "herring", + "rat", + "greyhound", + "leafwing", + "owlbutterfly", + "albino", + "bellsnake", + "barbet", + "daygecko", + "sunbittern", + "grayfox", + "amphiuma", + "hammerheadbird", + "oriole", + "amphibian", + "umbrellabird", + "cero", + "stickleback", + "conch", + "cheetah", + "fisheagle", + "dowitcher", + "crane", + "groundjay", + "parakeet", + "ibex", + "mussel", + "dove", + "phalarope", + "waxwing", + "glassfrog", + "hogdeer", + "gadwall", + "pika", + "elk", + "ox", + "ilsamochadegu", + "lark", + "wombat", + "hadrosaurus", + "dunnart", + "heron", + "mantis", + "dragon", + "fruitbat", + "bug", + "grub", + "barbel", + "crocodile", + "honeyeater", + "woodstorks", + "ichidna", + "shorebird", + "blackfish", + "wildebeast", + "mollusk", + "merganser", + "cottontail", + "velociraptor", + "treeboa", + "fiddlercrab", + "gaur", + "dolphin", + "mole", + "jenny", + "nudibranch", + "mussaurus", + "weaverbird", + "sow", + "godwit", + "queensnake", + "flicker", + "squid", + "samoyeddog", + "avians", + "hackee", + "elver", + "skylark", + "doctorfish", + "springpeeper", + "muskox", + "flies", + "nag", + "grison", + "acornweevil", + "duckling", + "pharaohhound", + "monoclonius", + "scarab", + "fieldspaniel", + "seabird", + "snail", + "duckbillcat", + "kagu", + "civet", + "ermine", + "nutcracker", + "cirriped", + "pinniped", + "nagapies", + "stallion", + "coyote", + "bullshark", + "walrus", + "kingsnake", + "owl", + "bergerpicard", + "shoveler", + "bluefintuna", + "shorthair", + "avocet", + "komododragon", + "gerbil", + "gonolek", + "greatargus", + "wildass", + "pheasant", + "cougar", + "wildcat", + "mongrel", + "starling", + "polliwog", + "cow", + "needletail", + "arkshell", + "shrimp", + "purplemarten", + "aegeancat", + "curl", + "dairycow", + "grayling", + "cranefly", + "prairiedog", + "emu", + "dunlin", + "macaque", + "doe", + "comet", + "gypsymoth", + "leafcutterant", + "nandine", + "mice", + "hornshark", + "crustacean", + "newtnutria", + "coney", + "fishingcat", + "gemsbok", + "crayfish", + "magpie", + "warthog", + "rodent", + "scorpion", + "mockingbird", + "incatern", + "pipit", + "tayra", + "gecko", + "ankole", + "serval", + "bluebird", + "terrier", + "urva", + "parrot", + "possum", + "shearwater", + "hatchetfish", + "mudpuppy", + "phoenix", + "crocodileskink", + "tigershark", + "addax", + "grayreefshark", + "bluefish", + "conure", + "huia", + "laika", + "goshawk", + "lobo", + "kudu", + "indri", + "moorhen", + "flyingfish", + "graysquirrel", + "flyingsquirrel", + "bufeo", + "deermouse", + "tarpan", + "pondskater", + "seaurchin", + "kingfisher", + "egg", + "anole", + "stonefly", + "cobra", + "ratsnake", + "anteater", + "coursinghounds", + "cats", + "fairybluebird", + "sturgeon", + "marmot", + "adder", + "barb", + "thunderbird", + "loris", + "macaw", + "agouti", + "lhasaapso", + "ape", + "wreckfish", + "andeancat", + "goitered", + "thylacine", + "galago", + "hartebeest", + "collie", + "shepherd", + "dikdik", + "hellbender", + "mara", + "senegalpython", + "octopus", + "leonberger", + "meerkat", + "rainbowfish", + "hoiho", + "sora", + "steed", + "sealion", + "hake", + "copepod", + "waterbuck", + "pikeperch", + "grosbeak", + "larva", + "burro", + "buzzard", + "leafhopper", + "brant", + "kentrosaurus", + "clumber", + "tuatara", + "mayfly", + "cockatoo", + "mandrill", + "cardinal", + "mutt", + "canine", + "armyant", + "screamer", + "flamingo", + "islandcanary", + "pekingese", + "rhinoceros", + "turaco", + "tern", + "dinosaur", + "spadefish", + "polecat", + "skunk", + "boto", + "germanshepherd", + "capybara", + "poodle", + "kingbird", + "finnishspitz", + "sphinx", + "mammal", + "takin", + "nabarlek", + "silverfox", + "eyas", + "raptors", + "marten", + "guppy", + "freshwaterclam", + "kiwi", + "mantid", + "siamang", + "frilledlizard", + "duck", + "numbat", + "python", + "hectorsdolphin", + "snowmonkey", + "spotteddolphin", + "hapuka", + "needlefish", + "nakedmolerat", + "groundhog", + "mealworm", + "squirrel", + "chanticleer", + "lamb", + "moose", + "primate", + "minnow", + "firesalamander", + "bettong", + "chicken", + "reynard", + "hornedtoad", + "scarletibis", + "milksnake", + "blackbuck", + "crossbill", + "hamadryad", + "cornsnake", + "illadopsis", + "rockpython", + "eskimodog", + "globefish", + "adouri", + "macropod", + "agama", + "harrierhawk", + "roller", + "caudata", + "mynah", + "hairstreak", + "coypu", + "liger", + "penguin", + "mouflon", + "arawana", + "kitfox", + "dalmatian", + "morpho", + "carpenterant", + "slothbear", + "caiman", + "toad", + "setter", + "argusfish", + "honeybee", + "mollies", + "grouse", + "armedcrab", + "perch", + "eider", + "drever", + "alligator", + "sunbear", + "booby", + "blobfish", + "fanworms", + "pike", + "spottedowl", + "shelduck", + "turnstone", + "hylaeosaurus", + "treecreeper", + "swellfish", + "clawedfrog", + "panda", + "pupa", + "cowrie", + "wrasse", + "fireant", + "cricket", + "humpbackwhale", + "chick", + "sanddollar", + "widgeon", + "chameleon", + "marabou", + "squab", + "moray", + "marlin", + "acornbarnacle", + "freshwatereel", + "mantisray", + "wryneck", + "bonobo", + "whitepelican", + "woodcock", + "prawn", + "megalosaurus", + "makoshark", + "ladybird", + "topi", + "whimbrel", + "marmoset", + "angelfish", + "echidna", + "hyracotherium", + "muntjac", + "anemone", + "blackgoby", + "goldeneye", + "boutu", + "myotis", + "stiger", + "willet", + "cob", + "beagle", + "mastiff", + "kestrel", + "greathornedowl", + "dromedary", + "pussycat", + "sidewinder", + "binturong", + "gentoopenguin", + "sandpiper", + "astarte", + "bongo", + "phoebe", + "bighorn", + "monkseal", + "manxcat", + "pipistrelle", + "mustang", + "damselfly", + "horse", + "dormouse", + "harrier", + "harvestmen", + "caecilian", + "gerenuk", + "bullmastiff", + "abalone", + "sponge", + "barnacle", + "buck", + "shrew", + "pelican", + "tattler", + "robberfly", + "flyinglemur", + "elephantseal", + "bass", + "goa", + "smoushond", + "bronco", + "pufferfish", + "sunbird", + "apatosaur", + "albatross", + "genet", + "sheepdog", + "bichonfrise", + "buffalo", + "bubblefish", + "furseal", + "pug", + "platypus", + "fulmar", + "porcupine", + "mouse", + "curassow", + "cat", + "curlew", + "grackle", + "limpkin", + "waterbuffalo", + "amurminnow", + "impala", + "piglet", + "sardine", + "angwantibo", + "caterpillar", + "isopod", + "foal", + "rattlesnake", + "tinamou", + "boubou", + "polarbear", + "aztecant", + "iguanodon", + "harvestmouse", + "silverfish", + "minibeast", + "hogget", + "chinchilla", + "plover", + "armyworm", + "amberpenshell", + "ibis", + "weevil", + "slug", + "cattle", + "baiji", + "alleycat", + "tenrec", + "antlion", + "cattledog", + "lovebird", + "akitainu", + "condor", + "fieldmouse", + "crab", + "halicore", + "hypsilophodon", + "seal", + "sheldrake", + "blesbok", + "stilt", + "gemclam", + "arthropod", + "tadpole", + "monarch", + "glassfish", + "halibut", + "barracuda", + "paddlefish", + "mule", + "gharial", + "fennecfox", + "taruca", + "seriema", + "caracal", + "gander", + "ammonite", + "pygmy", + "desertpupfish", + "chamois", + "ayeaye", + "fly", + "serpent", + "crow", + "ghostshrimp", + "springbok", + "archerfish", + "solitaire", + "horsemouse", + "roach", + "gallowaycow", + "gavial", + "pony", + "midge", + "piedkingfisher", + "scaup", + "chimneyswift", + "seaslug", + "whippet", + "gazelle", + "scallop", + "stork", + "seahog", + "pterosaurs", + "beauceron", + "pig", + "clingfish", + "puffer", + "seahorse", + "harpseal", + "wolverine", + "argali", + "planthopper", + "worm", + "bluebottle", + "bat", + "leopard", + "coral", + "chimpanzee", + "cicada", + "salamander", + "dogfish", + "ass", + "bats", + "angora", + "cleanerwrasse", + "sloth", + "calf", + "bull", + "frogmouth", + "skipper", + "coati", + "hound", + "murrelet", + "mink", + "aardwolf", + "saiga", + "bison", + "cusimanse", + "alpinegoat", + "basenji", + "trex", + "aracari", + "silkworm", + "bobcat", + "bilby", + "mongoose", + "songbird", + "darwinsfox", + "dromaeosaur", + "snipe", + "blackfly", + "peccary", + "colt", + "stud", + "bluetang", + "aidi", + "nautilus", + "roadrunner", + "stegosaurus", + "saddlebred", + "bobwhite", + "sanderling", + "bushbaby", + "mapturtle", + "sambar", + "mare", + "waterdragons", + "canvasback", + "chipmunk", + "snake", + "badger", + "blueshark", + "bactrian", + "betafish", + "pittabird", + "swallowtail", + "stoat", + "boa", + "hermitcrab", + "hornbill", + "bumblebee", + "chupacabra", + "drafthorse", + "steer", + "bulldog", + "gibbon", + "natterjacktoad", + "silkyterrier", + "sapsucker", + "bobtail", + "bandicoot", + "babirusa", + "mastodon", + "spitz", + "creature", + "cod", + "catfish", + "arrowana", + "borer", + "grebe", + "goldencat", + "bee", + "swordfish", + "mousebird", + "sunfish", + "swan", + "seamonkey", + "schipperke", + "skink", + "cuscus", + "scoter", + "bunny" +] diff --git a/assets/lists/qualities.json b/assets/lists/qualities.json index 230236506..4b130bb72 100644 --- a/assets/lists/qualities.json +++ b/assets/lists/qualities.json @@ -4,386 +4,451 @@ "area": { "TYPE": "TAXONOMY", "UNITS": ["m²", "ft²"], + "SYMBOL": "$A$", "NAME": "Floor Area", "TRANSLATIONS": { "DE": "Grundfläche" }, - "gross": { + "gfa": { "NAME": "Gross Floor Area", + "SYMBOL": "$A_{gfa}$", "TRANSLATIONS": { "DE": "Brutto-Grundfläche" }, - "net": { + "nfa": { "NAME": "Net Floor Area", + "SYMBOL": "$A_{nfa}$", "TRANSLATIONS": { "DE": "Netto-Raumfläche" }, - "usable": { + "usbl": { "NAME": "Usable Floor Area", + "SYMBOL": "$A_{usbl}$", "TRANSLATIONS": { "DE": "Nutzungsfläche" }, - "living-and-staying": { + "liv-stay": { "NAME": "Living And Staying Floor Area", + "SYMBOL": "$A_{liv}$", "TRANSLATIONS": { "DE": "Wohnen und Aufenthalt" }, - "living-room": { + "liv-rm": { "NAME": "Living Room Floor Area", + "SYMBOL": "$A_{liv-rm}$", "TRANSLATIONS": { "DE": "Wohnzimmerfläche" }, - "living": { + "liv": { "NAME": "Living Floor Area", + "SYMBOL": "$A_{liv}$", "TRANSLATIONS": { "DE": "Wohnfläche" } }, - "kitchen": { + "kit": { "NAME": "Kitchen Floor Area", + "SYMBOL": "$A_{kit}$", "TRANSLATIONS": { "DE": "Küchenfläche" } }, - "sanitary": { + "san": { "NAME": "Sanitary Floor Area", + "SYMBOL": "$A_{san}$", "TRANSLATIONS": { "DE": "Sanitärfläche" } }, - "circulation": { + "circ": { "NAME": "Circulation Floor Area", + "SYMBOL": "$A_{circ}$", "TRANSLATIONS": { "DE": "Verkehrsfläche" } }, - "outdoor-seating": { + "out-seat": { "NAME": "Outdoor Seating Floor Area", + "SYMBOL": "$A_{out-seat}$", "TRANSLATIONS": { "DE": "Freisitzfläche" } }, - "storage": { + "stor": { "NAME": "Storage Floor Area", + "SYMBOL": "$A_{stor}$", "TRANSLATIONS": { "DE": "Abstellraumfläche" } } }, - "common-room": { + "com-rm": { "NAME": "Common Room Floor Area", + "SYMBOL": "$A_{com-rm}$", "TRANSLATIONS": { "DE": "Gemeinschaftsraumfläche" } }, - "break-room": { + "brk-rm": { "NAME": "Break Room Floor Area", + "SYMBOL": "$A_{brk-rm}$", "TRANSLATIONS": { "DE": "Pausenraumfläche" } }, - "waiting-room": { + "wait-rm": { "NAME": "Waiting Room Floor Area", + "SYMBOL": "$A_{wait-rm}$", "TRANSLATIONS": { "DE": "Warteraumfläche" } }, - "dining-room": { + "din-rm": { "NAME": "Dining Room Floor Area", + "SYMBOL": "$A_{din-rm}$", "TRANSLATIONS": { "DE": "Speiseraumfläche" } }, - "detention-room": { + "det-rm": { "NAME": "Detention Room Floor Area", + "SYMBOL": "$A_{det-rm}$", "TRANSLATIONS": { "DE": "Haftraumfläche" } } }, - "office-work": { + "ofc-work": { "NAME": "Office Work Floor Area", + "SYMBOL": "$A_{ofc}$", "TRANSLATIONS": { "DE": "Büroarbeit" }, - "office-room": { + "ofc-rm": { "NAME": "Office Room Floor Area", + "SYMBOL": "$A_{ofc-rm}$", "TRANSLATIONS": { "DE": "Büroraumfläche" } }, - "open-plan-office": { + "open-ofc": { "NAME": "Open Plan Office Floor Area", + "SYMBOL": "$A_{open-ofc}$", "TRANSLATIONS": { "DE": "Großraumbürofläche" } }, - "meeting-room": { + "meet-rm": { "NAME": "Meeting Room Floor Area", + "SYMBOL": "$A_{meet-rm}$", "TRANSLATIONS": { "DE": "Besprechungsraumfläche" } }, - "design-room": { + "des-rm": { "NAME": "Design Room Floor Area", + "SYMBOL": "$A_{des-rm}$", "TRANSLATIONS": { "DE": "Konstruktionsraumfläche" } }, - "counter-room": { + "cnt-rm": { "NAME": "Counter Room Floor Area", + "SYMBOL": "$A_{cnt-rm}$", "TRANSLATIONS": { "DE": "Schalterraumfläche" } }, - "control-room": { + "ctrl-rm": { "NAME": "Control Room Floor Area", + "SYMBOL": "$A_{ctrl-rm}$", "TRANSLATIONS": { "DE": "Kontrollraumfläche" } }, - "supervision-room": { + "sup-rm": { "NAME": "Supervision Room Floor Area", + "SYMBOL": "$A_{sup-rm}$", "TRANSLATIONS": { "DE": "Aufsichtsraumfläche" } }, - "office-technology-room": { + "ofc-tech-rm": { "NAME": "Office Technology Room Floor Area", + "SYMBOL": "$A_{ofc-tech}$", "TRANSLATIONS": { "DE": "Bürotechnikraumfläche" } }, "other": { "NAME": "Other Office Work Floor Area", + "SYMBOL": "$A_{other-ofc}$", "TRANSLATIONS": { "DE": "Sonstige Büroarbeitsfläche" } } }, - "production-experiments-work": { + "prod-exp": { "NAME": "Production Experiments Work Floor Area", + "SYMBOL": "$A_{prod}$", "TRANSLATIONS": { "DE": "Produktion, Hand- und Maschinenarbeit, Experimente" }, - "production-hall": { + "prod-hall": { "NAME": "Production Hall Floor Area", + "SYMBOL": "$A_{prod-hall}$", "TRANSLATIONS": { "DE": "Produktionshallenfläche" } }, - "workshop": { + "work": { "NAME": "Workshop Floor Area", + "SYMBOL": "$A_{work}$", "TRANSLATIONS": { "DE": "Werkstattfläche" } }, - "technology-lab": { + "tech-lab": { "NAME": "Technology Lab Floor Area", + "SYMBOL": "$A_{tech-lab}$", "TRANSLATIONS": { "DE": "Techniklaborfläche" } }, - "physics-electrical-lab": { + "phys-elec-lab": { "NAME": "Physics Electrical Lab Floor Area", + "SYMBOL": "$A_{phys-lab}$", "TRANSLATIONS": { "DE": "Physik- und Elektrolaborfläche" } }, - "chemistry-biology-lab": { + "chem-bio-lab": { "NAME": "Chemistry Biology Lab Floor Area", + "SYMBOL": "$A_{chem-lab}$", "TRANSLATIONS": { "DE": "Chemie- und Biologielaborfläche" } }, - "animal-husbandry-room": { + "anim-rm": { "NAME": "Animal Husbandry Room Floor Area", + "SYMBOL": "$A_{anim}$", "TRANSLATIONS": { "DE": "Tierhaltungsraumfläche" } }, - "plant-cultivation-room": { + "plant-rm": { "NAME": "Plant Cultivation Room Floor Area", + "SYMBOL": "$A_{plant}$", "TRANSLATIONS": { "DE": "Pflanzenzuchtraumfläche" } }, - "kitchen": { + "kit": { "NAME": "Kitchen Floor Area", + "SYMBOL": "$A_{kit}$", "TRANSLATIONS": { "DE": "Küchenfläche" } }, - "special-work-room": { + "spec-work-rm": { "NAME": "Special Work Room Floor Area", + "SYMBOL": "$A_{spec-work}$", "TRANSLATIONS": { "DE": "Sonderarbeitsraumfläche" } } }, - "storage-distribution-sales": { + "stor-dist-sales": { "NAME": "Storage Distribution Sales Floor Area", + "SYMBOL": "$A_{stor-sales}$", "TRANSLATIONS": { "DE": "Lagern, Verteilen und Verkaufen" }, - "storage-room": { + "stor-rm": { "NAME": "Storage Room Floor Area", + "SYMBOL": "$A_{stor-rm}$", "TRANSLATIONS": { "DE": "Lagerraumfläche" } }, - "collection-archive": { + "coll-arch": { "NAME": "Collection Archive Floor Area", + "SYMBOL": "$A_{arch}$", "TRANSLATIONS": { "DE": "Sammlungs- und Archivfläche" } }, - "cold-storage-room": { + "cold-stor": { "NAME": "Cold Storage Room Floor Area", + "SYMBOL": "$A_{cold-stor}$", "TRANSLATIONS": { "DE": "Kühllagerraumfläche" } }, - "receiving-dispatch-room": { + "recv-disp": { "NAME": "Receiving Dispatch Room Floor Area", + "SYMBOL": "$A_{recv}$", "TRANSLATIONS": { "DE": "Warenannahme- und Versandfläche" } }, - "sales-room": { + "sales-rm": { "NAME": "Sales Room Floor Area", + "SYMBOL": "$A_{sales}$", "TRANSLATIONS": { "DE": "Verkaufsraumfläche" } }, - "exhibition-room": { + "exh-rm": { "NAME": "Exhibition Room Floor Area", + "SYMBOL": "$A_{exh}$", "TRANSLATIONS": { "DE": "Ausstellungsraumfläche" } }, "other": { "NAME": "Other Storage Distribution Sales Floor Area", + "SYMBOL": "$A_{other-stor}$", "TRANSLATIONS": { "DE": "Sonstige Lager-, Verteil- und Verkaufsfläche" } } }, - "education-culture-instruction": { + "edu-cult": { "NAME": "Education Culture Instruction Floor Area", + "SYMBOL": "$A_{edu}$", "TRANSLATIONS": { "DE": "Bildung, Unterricht und Kultur" }, - "classwith-fixed-seating": { + "class-fix-seat": { "NAME": "Class With Fixed Seating Floor Area", + "SYMBOL": "$A_{class}$", "TRANSLATIONS": { "DE": "Hörsaalfläche" } }, - "teaching-practice-room": { + "teach-prac": { "NAME": "Teaching Practice Room Floor Area", + "SYMBOL": "$A_{teach}$", "TRANSLATIONS": { "DE": "Unterrichts- und Übungsraumfläche" } }, - "special-classroom": { + "spec-class": { "NAME": "Special Classroom Floor Area", + "SYMBOL": "$A_{spec-class}$", "TRANSLATIONS": { "DE": "Sonderunterrichtsraumfläche" } }, - "library-room": { + "lib": { "NAME": "Library Room Floor Area", + "SYMBOL": "$A_{lib}$", "TRANSLATIONS": { "DE": "Bibliotheks- und Lesesaalfläche" } }, - "sports-room": { + "sport": { "NAME": "Sports Room Floor Area", + "SYMBOL": "$A_{sport}$", "TRANSLATIONS": { "DE": "Sportraumfläche" } }, - "assembly-room": { + "assm-rm": { "NAME": "Assembly Room Floor Area", + "SYMBOL": "$A_{assm}$", "TRANSLATIONS": { "DE": "Versammlungsraumfläche" } }, - "stage-studio-room": { + "stage-studio": { "NAME": "Stage Studio Room Floor Area", + "SYMBOL": "$A_{stage}$", "TRANSLATIONS": { "DE": "Bühnen- und Studioraumfläche" } }, - "display-room": { + "disp-rm": { "NAME": "Display Room Floor Area", + "SYMBOL": "$A_{disp}$", "TRANSLATIONS": { "DE": "Schau- und Vorführraumfläche" } }, - "sacred-room": { + "sacr-rm": { "NAME": "Sacred Room Floor Area", + "SYMBOL": "$A_{sacr}$", "TRANSLATIONS": { "DE": "Sakralraumfläche" } } }, - "healing-and-care": { + "heal-care": { "NAME": "Healing And Care Floor Area", + "SYMBOL": "$A_{med}$", "TRANSLATIONS": { "DE": "Heilen und Pflegen" }, - "general-medical-equipment-room": { + "gen-med-equip": { "NAME": "General Medical Equipment Room Floor Area", + "SYMBOL": "$A_{gen-med}$", "TRANSLATIONS": { "DE": "Raum für allgemeine medizinische Ausstattung" } }, - "special-medical-equipment-room": { + "spec-med-equip": { "NAME": "Special Medical Equipment Room Floor Area", + "SYMBOL": "$A_{spec-med}$", "TRANSLATIONS": { "DE": "Raum für spezielle medizinische Ausstattung" } }, - "surgical-room": { + "surg-rm": { "NAME": "Surgical Room Floor Area", + "SYMBOL": "$A_{surg}$", "TRANSLATIONS": { "DE": "Operationsraumfläche" } }, - "radiation-diagnostic-room": { + "rad-diag": { "NAME": "Radiation Diagnostic Room Floor Area", + "SYMBOL": "$A_{rad-diag}$", "TRANSLATIONS": { "DE": "Strahlendiagnostikraumfläche" } }, - "radiation-therapy-room": { + "rad-ther": { "NAME": "Radiation Therapy Room Floor Area", + "SYMBOL": "$A_{rad-ther}$", "TRANSLATIONS": { "DE": "Strahlentherapieraumfläche" } }, - "rehabilitation-physiotherapy": { + "rehab-physio": { "NAME": "Rehabilitation Physiotherapy Floor Area", + "SYMBOL": "$A_{rehab}$", "TRANSLATIONS": { "DE": "Rehabilitations- und Physiotherapiefläche" } }, - "general-patient-room": { + "gen-pat-rm": { "NAME": "General Patient Room Floor Area", + "SYMBOL": "$A_{gen-pat}$", "TRANSLATIONS": { "DE": "Allgemeines Patientenzimmerfläche" } }, - "special-patient-room": { + "spec-pat-rm": { "NAME": "Special Patient Room Floor Area", + "SYMBOL": "$A_{spec-pat}$", "TRANSLATIONS": { "DE": "Spezielles Patientenzimmerfläche" } }, "other": { "NAME": "Other Healing And Care Floor Area", + "SYMBOL": "$A_{other-med}$", "TRANSLATIONS": { "DE": "Sonstige Heil- und Pflegefläche" } @@ -391,258 +456,301 @@ }, "other": { "NAME": "Other Usable Floor Area", + "SYMBOL": "$A_{other-usbl}$", "TRANSLATIONS": { "DE": "Sonstige Nutzungsfläche" }, - "sanitary-room": { + "san-rm": { "NAME": "Sanitary Room Floor Area", + "SYMBOL": "$A_{san-rm}$", "TRANSLATIONS": { "DE": "Sanitärraumfläche" } }, - "cloakroom": { + "cloak": { "NAME": "Cloakroom Floor Area", + "SYMBOL": "$A_{cloak}$", "TRANSLATIONS": { "DE": "Garderobenfläche" } }, - "storage-room": { + "stor-rm": { "NAME": "Storage Room Floor Area", + "SYMBOL": "$A_{stor-rm}$", "TRANSLATIONS": { "DE": "Abstellraumfläche" } }, - "vehicle-parking": { + "veh-park": { "NAME": "Vehicle Parking Floor Area", + "SYMBOL": "$A_{park}$", "TRANSLATIONS": { "DE": "Fahrzeugabstellfläche" } }, - "passenger": { + "pass": { "NAME": "Passenger Floor Area", + "SYMBOL": "$A_{pass}$", "TRANSLATIONS": { "DE": "Personenverkehrsfläche" } }, - "central-technical-room": { + "cent-tech": { "NAME": "Central Technical Room Floor Area", + "SYMBOL": "$A_{cent-tech}$", "TRANSLATIONS": { "DE": "Zentraler Technikraum" } }, - "protective-room": { + "prot-rm": { "NAME": "Protective Room Floor Area", + "SYMBOL": "$A_{prot}$", "TRANSLATIONS": { "DE": "Schutzraumfläche" } }, - "laundry-room": { + "laund": { "NAME": "Laundry Room Floor Area", + "SYMBOL": "$A_{laund}$", "TRANSLATIONS": { "DE": "Wäschereiraumfläche" } }, "other": { "NAME": "Other Floor Area", + "SYMBOL": "$A_{other}$", "TRANSLATIONS": { "DE": "Sonstige Nutzungsfläche" } } } }, - "technical": { + "tech": { "NAME": "Technical Floor Area", + "SYMBOL": "$A_{tech}$", "TRANSLATIONS": { "DE": "Technikfläche" }, - "wastewater-gases-water-supply": { + "waste-gas-water": { "NAME": "Wastewater Gases Water Supply Floor Area", + "SYMBOL": "$A_{water}$", "TRANSLATIONS": { "DE": "Abwasser-, Gas- und Wasserversorgung" } }, - "heating-hot-water": { + "heat-hw": { "NAME": "Heating Hot Water Floor Area", + "SYMBOL": "$A_{heat}$", "TRANSLATIONS": { "DE": "Heizung und Warmwasser" } }, - "ventilation-air-conditioning": { + "vent-ac": { "NAME": "Ventilation Air Conditioning Floor Area", + "SYMBOL": "$A_{vent}$", "TRANSLATIONS": { "DE": "Lüftung und Klimatisierung" } }, - "electrical-power-supply": { + "elec-pwr": { "NAME": "Electrical Power Supply Floor Area", + "SYMBOL": "$A_{elec}$", "TRANSLATIONS": { "DE": "Stromversorgung" } }, - "telecommunications": { + "telecom": { "NAME": "Telecommunications Floor Area", + "SYMBOL": "$A_{telecom}$", "TRANSLATIONS": { "DE": "Telekommunikation" } }, - "elevator-conveyor-systems": { + "elev-conv": { "NAME": "Elevator Conveyor Systems Floor Area", + "SYMBOL": "$A_{elev}$", "TRANSLATIONS": { "DE": "Aufzugs- und Förderanlagen" } }, "other": { "NAME": "Other Technical Floor Area", + "SYMBOL": "$A_{other-tech}$", "TRANSLATIONS": { "DE": "Sonstige Technikfläche" } } }, - "circulation": { + "circ": { "NAME": "Circulation Floor Area", + "SYMBOL": "$A_{circ}$", "TRANSLATIONS": { "DE": "Verkehrsfläche" }, - "corridor-hall": { + "corr-hall": { "NAME": "Corridor Hall Floor Area", + "SYMBOL": "$A_{corr}$", "TRANSLATIONS": { "DE": "Flur und Halle" } }, "stair": { "NAME": "Stair Floor Area", + "SYMBOL": "$A_{stair}$", "TRANSLATIONS": { "DE": "Treppenraum" } }, - "shaft-for-conveyor-system": { + "shaft-conv": { "NAME": "Shaft For Conveyor System Floor Area", + "SYMBOL": "$A_{shaft}$", "TRANSLATIONS": { "DE": "Schacht für Förderanlage" } }, - "vehicle-traffic": { + "veh-traf": { "NAME": "Vehicle Traffic Floor Area", + "SYMBOL": "$A_{veh-traf}$", "TRANSLATIONS": { "DE": "Fahrzeugverkehr" } }, "other": { "NAME": "Other Circulation Floor Area", + "SYMBOL": "$A_{other-circ}$", "TRANSLATIONS": { "DE": "Sonstige Verkehrsfläche" } } }, - "construction": { + "const": { "NAME": "Construction Floor Area", + "SYMBOL": "$A_{const}$", "TRANSLATIONS": { "DE": "Konstruktions-Grundfläche" }, - "exterior-wall-construction": { + "ext-wall-const": { "NAME": "Exterior Wall Construction Floor Area", + "SYMBOL": "$A_{ext-wall}$", "TRANSLATIONS": { "DE": "Außenwandkonstruktion" } }, - "interior-wall-construction": { + "int-wall-const": { "NAME": "Interior Wall Construction Floor Area", + "SYMBOL": "$A_{int-wall}$", "TRANSLATIONS": { "DE": "Innenwandkonstruktion" } }, - "partition-wall": { + "part-wall": { "NAME": "Partition Wall Floor Area", + "SYMBOL": "$A_{part-wall}$", "TRANSLATIONS": { "DE": "Trennwandausbildung" } }, - "column": { + "col": { "NAME": "Column Floor Area", + "SYMBOL": "$A_{col}$", "TRANSLATIONS": { "DE": "Stütze" } }, "shaft": { "NAME": "Shaft Floor Area", + "SYMBOL": "$A_{shaft}$", "TRANSLATIONS": { "DE": "Schacht" } }, "beam": { "NAME": "Beam Floor Area", + "SYMBOL": "$A_{beam}$", "TRANSLATIONS": { "DE": "Träger" } }, "other": { "NAME": "Other Construction Floor Area", + "SYMBOL": "$A_{other-const}$", "TRANSLATIONS": { "DE": "Sonstige Konstruktionsfläche" } } } }, - "property": { + "prop": { "NAME": "Property Area", + "SYMBOL": "$A_{prop}$", "TRANSLATIONS": { "DE": "Grundstücksfläche" }, - "built-up": { + "built": { "NAME": "Built Up Area", + "SYMBOL": "$A_{built}$", "TRANSLATIONS": { "DE": "Bebaute Fläche" } }, "unbuilt": { "NAME": "Unbuilt Area", + "SYMBOL": "$A_{unbuilt}$", "TRANSLATIONS": { "DE": "Unbebaute Fläche" } }, - "outdoor-facility": { + "out-fac": { "NAME": "Outdoor Facility Area", + "SYMBOL": "$A_{out-fac}$", "TRANSLATIONS": { "DE": "Außenanlagenfläche" }, - "traffic": { + "traf": { "NAME": "Traffic Area", + "SYMBOL": "$A_{traf}$", "TRANSLATIONS": { "DE": "Verkehrsfläche" } }, "sidewalk": { "NAME": "Sidewalk Area", + "SYMBOL": "$A_{sidewalk}$", "TRANSLATIONS": { "DE": "Gehwegfläche" } }, - "driveway": { + "drive": { "NAME": "Driveway Area", + "SYMBOL": "$A_{drive}$", "TRANSLATIONS": { "DE": "Zufahrtsfläche" } }, - "parking-space": { + "park-sp": { "NAME": "Parking Space Area", + "SYMBOL": "$A_{park-sp}$", "TRANSLATIONS": { "DE": "Stellplatzfläche" } }, - "bicycle-parking": { + "bike-park": { "NAME": "Bicycle Parking Area", + "SYMBOL": "$A_{bike-park}$", "TRANSLATIONS": { "DE": "Fahrradabstellfläche" } }, - "turning": { + "turn": { "NAME": "Turning Area", + "SYMBOL": "$A_{turn}$", "TRANSLATIONS": { "DE": "Wendeplatzfläche" } }, "other": { "NAME": "Other Traffic Area", + "SYMBOL": "$A_{other-traf}$", "TRANSLATIONS": { "DE": "Sonstige Verkehrsfläche" } @@ -650,47 +758,55 @@ }, "green": { "NAME": "Green Area", + "SYMBOL": "$A_{green}$", "TRANSLATIONS": { "DE": "Grünfläche" }, "lawn": { "NAME": "Lawn Area", + "SYMBOL": "$A_{lawn}$", "TRANSLATIONS": { "DE": "Rasenfläche" } }, - "planted-bed": { + "plant-bed": { "NAME": "Planted Bed Area", + "SYMBOL": "$A_{plant-bed}$", "TRANSLATIONS": { "DE": "Pflanzbeetfläche" } }, "hedge": { "NAME": "Hedge Area", + "SYMBOL": "$A_{hedge}$", "TRANSLATIONS": { "DE": "Heckenfläche" } }, "tree": { "NAME": "Tree Area", + "SYMBOL": "$A_{tree}$", "TRANSLATIONS": { "DE": "Baumfläche" } }, - "roof-greening": { + "roof-green": { "NAME": "Roof Greening Area", + "SYMBOL": "$A_{roof-green}$", "TRANSLATIONS": { "DE": "Dachbegrünungsfläche" } }, - "facade-greening": { + "fac-green": { "NAME": "Facade Greening Area", + "SYMBOL": "$A_{fac-green}$", "TRANSLATIONS": { "DE": "Fassadenbegrünungsfläche" } }, "other": { "NAME": "Other Green Area", + "SYMBOL": "$A_{other-green}$", "TRANSLATIONS": { "DE": "Sonstige Grünfläche" } @@ -698,83 +814,97 @@ }, "paved": { "NAME": "Paved Area", + "SYMBOL": "$A_{paved}$", "TRANSLATIONS": { "DE": "Befestigte Fläche" }, - "terrace": { + "terr": { "NAME": "Terrace Area", + "SYMBOL": "$A_{terr}$", "TRANSLATIONS": { "DE": "Terrassenfläche" } }, - "balcony": { + "balc": { "NAME": "Balcony Area", + "SYMBOL": "$A_{balc}$", "TRANSLATIONS": { "DE": "Balkonfläche" } }, - "courtyard": { + "court": { "NAME": "Courtyard Area", + "SYMBOL": "$A_{court}$", "TRANSLATIONS": { "DE": "Hoffläche" } }, - "storage-utility": { + "stor-util": { "NAME": "Storage Utility Area", + "SYMBOL": "$A_{stor-util}$", "TRANSLATIONS": { "DE": "Lager- und Nutzfläche" } }, - "playground": { + "play": { "NAME": "Playground Area", + "SYMBOL": "$A_{play}$", "TRANSLATIONS": { "DE": "Spielplatzfläche" } }, "other": { "NAME": "Other Paved Area", + "SYMBOL": "$A_{other-paved}$", "TRANSLATIONS": { "DE": "Sonstige befestigte Fläche" } } }, - "technical-facility": { + "tech-fac": { "NAME": "Technical Facility Area", + "SYMBOL": "$A_{tech-fac}$", "TRANSLATIONS": { "DE": "Technische Anlagenfläche" }, - "waste-collection-point": { + "waste-coll": { "NAME": "Waste Collection Point Area", + "SYMBOL": "$A_{waste-coll}$", "TRANSLATIONS": { "DE": "Müllsammelplatzfläche" } }, - "utility-line": { + "util-line": { "NAME": "Utility Line Area", + "SYMBOL": "$A_{util-line}$", "TRANSLATIONS": { "DE": "Versorgungsleitungsfläche" } }, - "stormwater-management": { + "storm-mgmt": { "NAME": "Stormwater Management Area", + "SYMBOL": "$A_{storm}$", "TRANSLATIONS": { "DE": "Regenwasserbewirtschaftungsfläche" } }, - "lighting-system": { + "light-sys": { "NAME": "Lighting System Area", + "SYMBOL": "$A_{light}$", "TRANSLATIONS": { "DE": "Beleuchtungsanlagenfläche" } }, - "fence-enclosure": { + "fence": { "NAME": "Fence Enclosure Area", + "SYMBOL": "$A_{fence}$", "TRANSLATIONS": { "DE": "Zaun- und Einfriedungsfläche" } }, "other": { "NAME": "Other Technical Facility Area", + "SYMBOL": "$A_{other-tech-fac}$", "TRANSLATIONS": { "DE": "Sonstige technische Anlagenfläche" } @@ -782,29 +912,34 @@ }, "water": { "NAME": "Water Area", + "SYMBOL": "$A_{water}$", "TRANSLATIONS": { "DE": "Wasserfläche" }, "pond": { "NAME": "Pond Area", + "SYMBOL": "$A_{pond}$", "TRANSLATIONS": { "DE": "Teichfläche" } }, "fountain": { "NAME": "Fountain Area", + "SYMBOL": "$A_{fountain}$", "TRANSLATIONS": { "DE": "Brunnenfläche" } }, - "stormwater-retention": { + "storm-ret": { "NAME": "Stormwater Retention Area", + "SYMBOL": "$A_{storm-ret}$", "TRANSLATIONS": { "DE": "Regenwasserrückhaltefläche" } }, "other": { "NAME": "Other Water Area", + "SYMBOL": "$A_{other-water}$", "TRANSLATIONS": { "DE": "Sonstige Wasserfläche" } @@ -812,115 +947,147 @@ }, "other": { "NAME": "Other Outdoor Facility Area", + "SYMBOL": "$A_{other-out}$", "TRANSLATIONS": { "DE": "Sonstige Außenanlagenfläche" } } } }, - "volume": { + "vol": { "TYPE": "TAXONOMY", "UNITS": ["m³", "ft³"], - "gross-volume": { - "net-volume": { + "SYMBOL": "$V$", + "NAME": "Volume", + "gv": { + "NAME": "Gross Volume", + "SYMBOL": "$V_{gv}$", + "nv": { "NAME": "Net Volume", + "SYMBOL": "$V_{nv}$", "TRANSLATIONS": { "DE": "Netto-Rauminhalt" } }, - "construction-volume": { + "const-vol": { "NAME": "Construction Volume", + "SYMBOL": "$V_{const}$", "TRANSLATIONS": { "DE": "Konstruktions-Rauminhalt" } } } }, - "people": { + "ppl": { "TYPE": "TAXONOMY", "UNITS": ["count"], - "stationary": { - "living": { - "residents": { + "SYMBOL": "$N$", + "NAME": "People", + "stat": { + "NAME": "Stationary People", + "SYMBOL": "$N_{stat}$", + "liv": { + "NAME": "Living People", + "SYMBOL": "$N_{liv}$", + "res": { "NAME": "Residents", + "SYMBOL": "$N_{res}$", "TRANSLATIONS": { "DE": "Einwohner" } }, - "guests": { + "guest": { "NAME": "Guests", + "SYMBOL": "$N_{guest}$", "TRANSLATIONS": { "DE": "Gäste" } } }, - "working": { - "office": { + "work": { + "NAME": "Working People", + "SYMBOL": "$N_{work}$", + "ofc": { "NAME": "Office Workers", + "SYMBOL": "$N_{ofc}$", "TRANSLATIONS": { "DE": "Büroangestellte" } }, - "production": { + "prod": { "NAME": "Production Workers", + "SYMBOL": "$N_{prod}$", "TRANSLATIONS": { "DE": "Produktionsmitarbeiter" } }, - "service": { + "serv": { "NAME": "Service Workers", + "SYMBOL": "$N_{serv}$", "TRANSLATIONS": { "DE": "Dienstleistungsmitarbeiter" } }, - "education": { + "edu": { "NAME": "Education Workers", + "SYMBOL": "$N_{edu}$", "TRANSLATIONS": { "DE": "Bildungspersonal" } }, - "healthcare": { + "health": { "NAME": "Healthcare Workers", + "SYMBOL": "$N_{health}$", "TRANSLATIONS": { "DE": "Gesundheitspersonal" } }, "other": { "NAME": "Other Workers", + "SYMBOL": "$N_{other-work}$", "TRANSLATIONS": { "DE": "Sonstige Arbeitskräfte" } } }, - "students": { - "pupils": { + "stud": { + "NAME": "Students", + "SYMBOL": "$N_{stud}$", + "pupil": { "NAME": "Pupils", + "SYMBOL": "$N_{pupil}$", "TRANSLATIONS": { "DE": "Schüler" } }, - "students": { + "stud": { "NAME": "Students", + "SYMBOL": "$N_{stud}$", "TRANSLATIONS": { "DE": "Studenten" } } }, "client": { - "customers": { + "NAME": "Clients", + "SYMBOL": "$N_{client}$", + "cust": { "NAME": "Customers", + "SYMBOL": "$N_{cust}$", "TRANSLATIONS": { "DE": "Kunden" } }, - "visitors": { + "visit": { "NAME": "Visitors", + "SYMBOL": "$N_{visit}$", "TRANSLATIONS": { "DE": "Besucher" } }, - "patients": { + "pat": { "NAME": "Patients", + "SYMBOL": "$N_{pat}$", "TRANSLATIONS": { "DE": "Patienten" } @@ -928,49 +1095,64 @@ } }, "mobile": { - "visitors": { - "customers": { + "NAME": "Mobile People", + "SYMBOL": "$N_{mobile}$", + "visit": { + "NAME": "Mobile Visitors", + "SYMBOL": "$N_{mobile-visit}$", + "cust": { "NAME": "Mobile Customers", + "SYMBOL": "$N_{mobile-cust}$", "TRANSLATIONS": { "DE": "Mobile Kunden" } }, - "guests": { + "guest": { "NAME": "Mobile Guests", + "SYMBOL": "$N_{mobile-guest}$", "TRANSLATIONS": { "DE": "Mobile Gäste" } }, - "tourists": { + "tourist": { "NAME": "Tourists", + "SYMBOL": "$N_{tourist}$", "TRANSLATIONS": { "DE": "Touristen" } } }, - "employees": { - "mobile-workers": { + "emp": { + "NAME": "Mobile Employees", + "SYMBOL": "$N_{mobile-emp}$", + "mobile-work": { "NAME": "Mobile Workers", + "SYMBOL": "$N_{mobile-work}$", "TRANSLATIONS": { "DE": "Mobile Arbeitskräfte" } }, - "delivery-personnel": { + "deliv": { "NAME": "Delivery Personnel", + "SYMBOL": "$N_{deliv}$", "TRANSLATIONS": { "DE": "Lieferpersonal" } } }, - "students": { - "commuters": { + "stud": { + "NAME": "Mobile Students", + "SYMBOL": "$N_{mobile-stud}$", + "commute": { "NAME": "Commuters", + "SYMBOL": "$N_{commute}$", "TRANSLATIONS": { "DE": "Pendler" } }, - "exchange-students": { + "exch": { "NAME": "Exchange Students", + "SYMBOL": "$N_{exch}$", "TRANSLATIONS": { "DE": "Austauschstudenten" } @@ -980,43 +1162,52 @@ }, "energy": { "TYPE": "CLASSIFICATION", - "primary demand": { + "SYMBOL": "$E$", + "NAME": "Energy", + "prim-dem": { "TYPE": "TAXONOMY", "UNITS": ["kWh/m²a"], "NAME": "Primary Energy Demand", + "SYMBOL": "$E_{prim}$", "TRANSLATIONS": { "DE": "" }, - "primary heating": { + "prim-heat": { "NAME": "Primary Heating Energy Demand", + "SYMBOL": "$E_{prim-heat}$", "TRANSLATIONS": { "DE": "" }, "final": { "NAME": "Final Heating Energy Demand", + "SYMBOL": "$E_{final-heat}$", "TRANSLATIONS": { "DE": "" }, "FACTOR": "Primary Heating Energy Factor", - "heating": { + "heat": { "NAME": "Heating Energy Demand", + "SYMBOL": "$E_{heat}$", "TRANSLATIONS": { "DE": "" }, - "FACTOR": "Heating Effeciency Factor", - "transmission": { + "FACTOR": "Heating Efficiency Factor", + "trans": { "NAME": "Transmission Heat Loss", + "SYMBOL": "$Q_{trans}$", "TRANSLATIONS": { "DE": "" } }, - "final ventilation": { + "final-vent": { "NAME": "Final Ventilation Heat Loss", + "SYMBOL": "$Q_{final-vent}$", "TRANSLATIONS": { "DE": "" }, - "ventialtion": { + "vent": { "NAME": "Ventilation Heat Loss", + "SYMBOL": "$Q_{vent}$", "TRANSLATIONS": { "DE": "" }, @@ -1026,19 +1217,22 @@ } } }, - "primary cooling": { + "prim-cool": { "NAME": "Primary Cooling Energy Demand", + "SYMBOL": "$E_{prim-cool}$", "TRANSLATIONS": { "DE": "" }, "final": { "NAME": "Final Cooling Energy Demand", + "SYMBOL": "$E_{final-cool}$", "TRANSLATIONS": { "DE": "" }, "FACTOR": "Primary Cooling Energy Factor", - "cooling energy": { + "cool-energy": { "NAME": "Cooling Energy Demand", + "SYMBOL": "$E_{cool}$", "TRANSLATIONS": { "DE": "" }, @@ -1046,19 +1240,22 @@ } } }, - "primary electricity": { + "prim-elec": { "NAME": "Primary Electricity Energy Demand", + "SYMBOL": "$E_{prim-elec}$", "TRANSLATIONS": { "DE": "" }, - "electricity": { + "elec": { "NAME": "Electricity Energy Demand", + "SYMBOL": "$E_{elec}$", "TRANSLATIONS": { "DE": "" }, "FACTOR": "Electricity Primary Energy Factor", - "technical equipment": { + "tech-equip": { "NAME": "Technical Equipment Energy Demand", + "SYMBOL": "$E_{tech-equip}$", "TRANSLATIONS": { "DE": "" } @@ -1068,93 +1265,114 @@ }, "load": { "TYPE": "CLASSIFICATION", - "heating": { + "SYMBOL": "$P$", + "NAME": "Load", + "heat": { "TYPE": "TAXONOMY", "NAME": "Heating Load", + "SYMBOL": "$P_{heat}$", "TRANSLATIONS": { "DE": "Heizlast" } }, - "cooling": { + "cool": { "TYPE": "TAXONOMY", "NAME": "Cooling Load", + "SYMBOL": "$P_{cool}$", "TRANSLATIONS": { "DE": "Kühllast" } }, - "lighting": { + "light": { "TYPE": "TAXONOMY", "NAME": "Lighting Load", + "SYMBOL": "$P_{light}$", "TRANSLATIONS": { "DE": "Beleuchtungslast" } }, - "ventilation": { + "vent": { "TYPE": "TAXONOMY", "NAME": "Ventilation Load", + "SYMBOL": "$P_{vent}$", "TRANSLATIONS": { "DE": "Lüftungslast" } }, - "hot-water": { + "hw": { "TYPE": "TAXONOMY", "NAME": "Hot Water Load", + "SYMBOL": "$P_{hw}$", "TRANSLATIONS": { "DE": "Warmwasserlast" } } } }, - "global-warming-potential": { + "gwp": { "TYPE": "TAXONOMY", "UNITS": ["tCO₂e", "MtCO₂e"], - "embodied": { - "construction": { + "SYMBOL": "$GWP$", + "NAME": "Global Warming Potential", + "embod": { + "NAME": "Embodied GWP", + "SYMBOL": "$GWP_{embod}$", + "const": { "NAME": "Construction GWP", + "SYMBOL": "$GWP_{const}$", "TRANSLATIONS": { "DE": "Herstellung (Baukonstruktion)" } }, - "technical-equipment": { + "tech-equip": { "NAME": "Technical Equipment GWP", + "SYMBOL": "$GWP_{tech-equip}$", "TRANSLATIONS": { "DE": "Herstellung (Technische Anlagen)" } } }, - "operational": { - "heating": { + "oper": { + "NAME": "Operational GWP", + "SYMBOL": "$GWP_{oper}$", + "heat": { "NAME": "Heating GWP", + "SYMBOL": "$GWP_{heat}$", "TRANSLATIONS": { "DE": "Betrieb (Heizung)" } }, - "cooling": { + "cool": { "NAME": "Cooling GWP", + "SYMBOL": "$GWP_{cool}$", "TRANSLATIONS": { "DE": "Betrieb (Kühlung)" } }, - "lighting": { + "light": { "NAME": "Lighting GWP", + "SYMBOL": "$GWP_{light}$", "TRANSLATIONS": { "DE": "Betrieb (Beleuchtung)" } }, - "ventilation": { + "vent": { "NAME": "Ventilation GWP", + "SYMBOL": "$GWP_{vent}$", "TRANSLATIONS": { "DE": "Betrieb (Lüftung)" } }, - "hot-water": { + "hw": { "NAME": "Hot Water GWP", + "SYMBOL": "$GWP_{hw}$", "TRANSLATIONS": { "DE": "Betrieb (Warmwasser)" } }, "other": { "NAME": "Other GWP", + "SYMBOL": "$GWP_{other}$", "TRANSLATIONS": { "DE": "Betrieb (Sonstige)" } @@ -1163,1120 +1381,127 @@ }, "costs": { "TYPE": "CLASSIFICATION", - "global life cycle costs": { + "SYMBOL": "$C$", + "NAME": "Costs", + "glcc": { "TYPE": "TAXONOMY", "NAME": "Global Life Cycle Costs", + "SYMBOL": "$C_{glcc}$", "TRANSLATIONS": { "DE": "Globale Lebenszykluskosten" }, "UNITS": ["currency"], - "life-cycle-costs": { + "lcc": { "NAME": "Life Cycle Costs", + "SYMBOL": "$C_{lcc}$", "TRANSLATIONS": { "DE": "Lebenszykluskosten" }, - "investment-costs-construction-phase": { + "inv-const": { "NAME": "Investment Costs Construction Phase", + "SYMBOL": "$C_{inv-const}$", "TRANSLATIONS": { "DE": "Investitionskosten in der Bauphase" }, "land-costs": { "NAME": "Land Costs", + "SYMBOL": "$C_{land}$", "TRANSLATIONS": { "DE": "Grundstückskosten" }, "land": { "NAME": "Land", + "SYMBOL": "$C_{land-base}$", "TRANSLATIONS": { "DE": "Grundstück" }, - "land-value": { + "land-val": { "NAME": "Land Value", + "SYMBOL": "$C_{land-val}$", "TRANSLATIONS": { "DE": "Grundstückswert" } }, - "ancillary-land-costs": { + "anc-land": { "NAME": "Ancillary Land Costs", + "SYMBOL": "$C_{anc-land}$", "TRANSLATIONS": { "DE": "Grundstücksnebenkosten" - }, - "surveying-fees": { - "NAME": "Surveying Fees", - "TRANSLATIONS": { - "DE": "Vermessungsgebühren" - } - }, - "court-fees": { - "NAME": "Court Fees", - "TRANSLATIONS": { - "DE": "Gerichtsgebühren" - } - }, - "notary-fees": { - "NAME": "Notary Fees", - "TRANSLATIONS": { - "DE": "Notargebühren" - } - }, - "land-transfer-tax": { - "NAME": "Land Transfer Tax", - "TRANSLATIONS": { - "DE": "Grunderwerbsteuer" - } - }, - "investigations": { - "NAME": "Investigations", - "TRANSLATIONS": { - "DE": "Untersuchungen" - } - }, - "valuations": { - "NAME": "Valuations", - "TRANSLATIONS": { - "DE": "Gutachten" - } - }, - "permit-fees": { - "NAME": "Permit Fees", - "TRANSLATIONS": { - "DE": "Genehmigungsgebühren" - } - }, - "land-reorganization": { - "NAME": "Land Reorganization", - "TRANSLATIONS": { - "DE": "Bodenordnung" - } - }, - "other": { - "NAME": "Other Ancillary Land Costs", - "TRANSLATIONS": { - "DE": "Sonstige Grundstücksnebenkosten" - } } }, - "third-party-rights": { + "third-party": { "NAME": "Third Party Rights", + "SYMBOL": "$C_{third-party}$", "TRANSLATIONS": { "DE": "Rechte Dritter" - }, - "compensations": { - "NAME": "Third Party Compensations", - "TRANSLATIONS": { - "DE": "Entschädigungen" - } - }, - "redemption-of-real-rights": { - "NAME": "Redemption Of Real Rights", - "TRANSLATIONS": { - "DE": "Ablösung von dinglichen Rechten" - } - }, - "other": { - "NAME": "Other Third Party Rights", - "TRANSLATIONS": { - "DE": "Sonstige Rechte Dritter" - } } }, - "compensations": { + "comp": { "NAME": "Land Compensations", + "SYMBOL": "$C_{comp}$", "TRANSLATIONS": { "DE": "Entschädigungen" } }, - "redemption-of-real-rights": { - "NAME": "Land Redemption Of Real Rights", - "TRANSLATIONS": { - "DE": "Ablösung von dinglichen Rechten" - } - }, "other": { "NAME": "Other Land Costs", + "SYMBOL": "$C_{other-land}$", "TRANSLATIONS": { "DE": "Sonstige Grundstückskosten" } } - }, - "other": { - "NAME": "Other Land Costs", - "TRANSLATIONS": { - "DE": "Sonstige Grundstückskosten" - } } }, - "development-costs": { + "dev-costs": { "NAME": "Development Costs", + "SYMBOL": "$C_{dev}$", "TRANSLATIONS": { "DE": "Erschließungskosten" }, - "preparatory-measures": { + "prep-meas": { "NAME": "Preparatory Measures", + "SYMBOL": "$C_{prep}$", "TRANSLATIONS": { "DE": "Vorbereitende Maßnahmen" - }, - "site-preparation": { - "NAME": "Site Preparation", - "TRANSLATIONS": { - "DE": "Herrichten des Grundstücks" - }, - "safety-measures": { - "NAME": "Safety Measures", - "TRANSLATIONS": { - "DE": "Sicherungsmaßnahmen" - } - }, - "demolition-measures": { - "NAME": "Demolition Measures", - "TRANSLATIONS": { - "DE": "Abbruchmaßnahmen" - } - }, - "contaminated-site-remediation": { - "NAME": "Contaminated Site Remediation", - "TRANSLATIONS": { - "DE": "Altlastensanierung" - } - }, - "surface-preparation": { - "NAME": "Surface Preparation", - "TRANSLATIONS": { - "DE": "Oberflächenvorbereitung" - } - }, - "explosive-ordnance-clearance": { - "NAME": "Explosive Ordnance Clearance", - "TRANSLATIONS": { - "DE": "Kampfmittelbeseitigung" - } - }, - "cultural-heritage-finds": { - "NAME": "Cultural Heritage Finds", - "TRANSLATIONS": { - "DE": "Kulturerbe-Funde" - } - }, - "other": { - "NAME": "Other Site Preparation", - "TRANSLATIONS": { - "DE": "Sonstiges Herrichten des Grundstücks" - } - } - }, - "public-infrastructure-development": { - "NAME": "Public Infrastructure Development", - "TRANSLATIONS": { - "DE": "Öffentliche Erschließung" - }, - "wastewater-disposal": { - "NAME": "Wastewater Disposal", - "TRANSLATIONS": { - "DE": "Abwasserentsorgung" - } - }, - "water-supply": { - "NAME": "Water Supply", - "TRANSLATIONS": { - "DE": "Wasserversorgung" - } - }, - "gas-supply": { - "NAME": "Gas Supply", - "TRANSLATIONS": { - "DE": "Gasversorgung" - } - }, - "district-heating-supply": { - "NAME": "District Heating Supply", - "TRANSLATIONS": { - "DE": "Fernwärmeversorgung" - } - }, - "power-supply": { - "NAME": "Power Supply", - "TRANSLATIONS": { - "DE": "Stromversorgung" - } - }, - "telecommunications": { - "NAME": "Telecommunications", - "TRANSLATIONS": { - "DE": "Telekommunikation" - } - }, - "traffic-development": { - "NAME": "Traffic Development", - "TRANSLATIONS": { - "DE": "Verkehrserschließung" - } - }, - "waste-disposal": { - "NAME": "Waste Disposal", - "TRANSLATIONS": { - "DE": "Abfallentsorgung" - } - }, - "other": { - "NAME": "Other Public Infrastructure Development", - "TRANSLATIONS": { - "DE": "Sonstige öffentliche Erschließung" - } - } - }, - "private-infrastructure-development": { - "NAME": "Private Infrastructure Development", - "TRANSLATIONS": { - "DE": "Private Erschließung" - } - }, - "compensatory-measures-and-levies": { - "NAME": "Compensatory Measures And Levies", - "TRANSLATIONS": { - "DE": "Ausgleichsmaßnahmen und -abgaben" - }, - "compensatory-measures": { - "NAME": "Compensatory Measures", - "TRANSLATIONS": { - "DE": "Ausgleichsmaßnahmen" - } - }, - "compensatory-levies": { - "NAME": "Compensatory Levies", - "TRANSLATIONS": { - "DE": "Ausgleichsabgaben" - } - }, - "other": { - "NAME": "Other Compensatory Measures And Levies", - "TRANSLATIONS": { - "DE": "Sonstige Ausgleichsmaßnahmen und -abgaben" - } - } - }, - "transitional-measures": { - "NAME": "Transitional Measures", - "TRANSLATIONS": { - "DE": "Übergangsmaßnahmen" - }, - "structural-measures": { - "NAME": "Structural Measures", - "TRANSLATIONS": { - "DE": "Bauliche Maßnahmen" - } - }, - "organizational-measures": { - "NAME": "Organizational Measures", - "TRANSLATIONS": { - "DE": "Organisatorische Maßnahmen" - } - }, - "other": { - "NAME": "Other Transitional Measures", - "TRANSLATIONS": { - "DE": "Sonstige Übergangsmaßnahmen" - } - } - } - }, - "other": { - "NAME": "Other Development Costs", - "TRANSLATIONS": { - "DE": "Sonstige Erschließungskosten" } } }, - "building-structural-components": { + "bldg-struct": { "NAME": "Building Structural Components", + "SYMBOL": "$C_{bldg-struct}$", "TRANSLATIONS": { "DE": "Bauwerk - Baukonstruktionen" - }, - "excavation-earthworks": { - "NAME": "Excavation Earthworks", - "TRANSLATIONS": { - "DE": "Baugrube/Erdarbeiten" - } - }, - "foundation-substructure": { - "NAME": "Foundation Substructure", - "TRANSLATIONS": { - "DE": "Gründung/Unterbau" - } - }, - "external-walls-vertical-structural-components-outside": { - "NAME": "External Walls Vertical Structural Components Outside", - "TRANSLATIONS": { - "DE": "Außenwände/Vertikale Baukonstruktionen, außen" - } - }, - "internal-walls-vertical-structural-components-inside": { - "NAME": "Internal Walls Vertical Structural Components Inside", - "TRANSLATIONS": { - "DE": "Innenwände/Vertikale Baukonstruktionen, innen" - } - }, - "ceilings-horizontal-structural-components": { - "NAME": "Ceilings Horizontal Structural Components", - "TRANSLATIONS": { - "DE": "Decken/Horizontale Baukonstruktionen" - } - }, - "roofs": { - "NAME": "Roofs", - "TRANSLATIONS": { - "DE": "Dächer" - } - }, - "infrastructure-facilities": { - "NAME": "Infrastructure Facilities", - "TRANSLATIONS": { - "DE": "Infrastrukturanlagen" - } - }, - "structural-installations": { - "NAME": "Structural Installations", - "TRANSLATIONS": { - "DE": "Baukonstruktive Einbauten" - } - }, - "other-measures-for-structural-components": { - "NAME": "Other Measures For Structural Components", - "TRANSLATIONS": { - "DE": "Sonstige Maßnahmen für Baukonstruktionen" - } } }, - "technical-systems": { + "tech-sys": { "NAME": "Technical Systems", + "SYMBOL": "$C_{tech-sys}$", "TRANSLATIONS": { "DE": "Bauwerk - Technische Anlagen" - }, - "wastewater-water-gas-systems": { - "NAME": "Wastewater Water Gas Systems", - "TRANSLATIONS": { - "DE": "Abwasser-, Wasser-, Gasanlagen" - } - }, - "heating-supply-systems": { - "NAME": "Heating Supply Systems", - "TRANSLATIONS": { - "DE": "Wärmeversorgungsanlagen" - } - }, - "room-air-technology-systems": { - "NAME": "Room Air Technology Systems", - "TRANSLATIONS": { - "DE": "Lufttechnische Anlagen" - } - }, - "electrical-systems": { - "NAME": "Electrical Systems", - "TRANSLATIONS": { - "DE": "Starkstromanlagen" - } - }, - "communication-safety-and-information-technology-systems": { - "NAME": "Communication Safety And Information Technology Systems", - "TRANSLATIONS": { - "DE": "Kommunikations-, Sicherheits- und informationstechnische Anlagen" - } - }, - "conveying-systems": { - "NAME": "Conveying Systems", - "TRANSLATIONS": { - "DE": "Förderanlagen" - } - }, - "usage-specific-and-process-engineering-systems": { - "NAME": "Usage Specific And Process Engineering Systems", - "TRANSLATIONS": { - "DE": "Nutzungsspezifische und verfahrenstechnische Anlagen" - } - }, - "building-and-facility-automation": { - "NAME": "Building And Facility Automation", - "TRANSLATIONS": { - "DE": "Gebäude- und Anlagenautomation" - } - }, - "other-measures-for-technical-systems": { - "NAME": "Other Measures For Technical Systems", - "TRANSLATIONS": { - "DE": "Sonstige Maßnahmen für technische Anlagen" - } } }, - "outdoor-facilities-and-open-spaces": { + "out-fac": { "NAME": "Outdoor Facilities And Open Spaces", + "SYMBOL": "$C_{out-fac}$", "TRANSLATIONS": { "DE": "Außenanlagen und Freiflächen" - }, - "earthworks": { - "NAME": "Earthworks", - "TRANSLATIONS": { - "DE": "Erdarbeiten" - } - }, - "foundation-substructure": { - "NAME": "Foundation Substructure", - "TRANSLATIONS": { - "DE": "Gründung/Unterbau" - } - }, - "pavement-surface-courses": { - "NAME": "Pavement Surface Courses", - "TRANSLATIONS": { - "DE": "Beläge, Oberflächenschichten" - } - }, - "structural-components": { - "NAME": "Structural Components", - "TRANSLATIONS": { - "DE": "Baukonstruktionen" - } - }, - "technical-systems": { - "NAME": "Technical Systems", - "TRANSLATIONS": { - "DE": "Technische Anlagen" - } - }, - "installations-in-outdoor-facilities-and-open-spaces": { - "NAME": "Installations In Outdoor Facilities And Open Spaces", - "TRANSLATIONS": { - "DE": "Einbauten in Außenanlagen und Freiflächen" - } - }, - "other-measures-for-outdoor-facilities-and-open-spaces": { - "NAME": "Other Measures For Outdoor Facilities And Open Spaces", - "TRANSLATIONS": { - "DE": "Sonstige Maßnahmen für Außenanlagen und Freiflächen" - } } }, - "equipment-and-artworks": { + "equip-art": { "NAME": "Equipment And Artworks", + "SYMBOL": "$C_{equip-art}$", "TRANSLATIONS": { "DE": "Ausstattung und Kunstwerke" - }, - "general-equipment": { - "NAME": "General Equipment", - "TRANSLATIONS": { - "DE": "Allgemeine Ausstattung" - } - }, - "special-equipment": { - "NAME": "Special Equipment", - "TRANSLATIONS": { - "DE": "Besondere Ausstattung" - } - }, - "information-technology-equipment": { - "NAME": "Information Technology Equipment", - "TRANSLATIONS": { - "DE": "Informationstechnische Ausstattung" - } - }, - "artistic-equipment": { - "NAME": "Artistic Equipment", - "TRANSLATIONS": { - "DE": "Künstlerische Ausstattung" - }, - "art-objects": { - "NAME": "Art Objects", - "TRANSLATIONS": { - "DE": "Kunstobjekte" - } - }, - "artistic-design-of-the-building": { - "NAME": "Artistic Design Of The Building", - "TRANSLATIONS": { - "DE": "Künstlerische Gestaltung des Bauwerks" - } - }, - "artistic-design-of-outdoor-facilities-and-open-spaces": { - "NAME": "Artistic Design Of Outdoor Facilities And Open Spaces", - "TRANSLATIONS": { - "DE": "Künstlerische Gestaltung der Außenanlagen und Freiflächen" - } - }, - "other": { - "NAME": "Other Artistic Equipment", - "TRANSLATIONS": { - "DE": "Sonstige künstlerische Ausstattung" - } - } - }, - "other": { - "NAME": "Other Equipment And Artworks", - "TRANSLATIONS": { - "DE": "Sonstige Ausstattung und Kunstwerke" - } } }, - "construction-ancillary-costs": { + "const-anc": { "NAME": "Construction Ancillary Costs", + "SYMBOL": "$C_{const-anc}$", "TRANSLATIONS": { "DE": "Baunebenkosten" - }, - "client-tasks": { - "NAME": "Client Tasks", - "TRANSLATIONS": { - "DE": "Bauherrenaufgaben" - }, - "project-management": { - "NAME": "Project Management", - "TRANSLATIONS": { - "DE": "Projektleitung" - } - }, - "needs-assessment": { - "NAME": "Needs Assessment", - "TRANSLATIONS": { - "DE": "Bedarfsplanung" - } - }, - "project-control": { - "NAME": "Project Control", - "TRANSLATIONS": { - "DE": "Projektsteuerung" - } - }, - "safety-and-health-protection-coordination": { - "NAME": "Safety And Health Protection Coordination", - "TRANSLATIONS": { - "DE": "Sicherheits- und Gesundheitsschutzkoordination" - } - }, - "award-procedures": { - "NAME": "Award Procedures", - "TRANSLATIONS": { - "DE": "Vergabeverfahren" - } - }, - "other": { - "NAME": "Other Client Tasks", - "TRANSLATIONS": { - "DE": "Sonstige Bauherrenaufgaben" - } - } - }, - "preparation-of-object-planning": { - "NAME": "Preparation Of Object Planning", - "TRANSLATIONS": { - "DE": "Vorbereitung der Objektplanung" - }, - "investigations": { - "NAME": "Investigations", - "TRANSLATIONS": { - "DE": "Untersuchungen" - } - }, - "valuations": { - "NAME": "Valuations", - "TRANSLATIONS": { - "DE": "Gutachten" - } - }, - "urban-planning-services": { - "NAME": "Urban Planning Services", - "TRANSLATIONS": { - "DE": "Städtebauliche Leistungen" - } - }, - "landscape-planning-services": { - "NAME": "Landscape Planning Services", - "TRANSLATIONS": { - "DE": "Landschaftsplanerische Leistungen" - } - }, - "competitions": { - "NAME": "Competitions", - "TRANSLATIONS": { - "DE": "Wettbewerbe" - } - }, - "other": { - "NAME": "Other Preparation Of Object Planning", - "TRANSLATIONS": { - "DE": "Sonstige Vorbereitung der Objektplanung" - } - } - }, - "object-planning": { - "NAME": "Object Planning", - "TRANSLATIONS": { - "DE": "Objektplanung" - }, - "buildings-and-interiors": { - "NAME": "Buildings And Interiors", - "TRANSLATIONS": { - "DE": "Gebäude und Innenräume" - } - }, - "open-spaces": { - "NAME": "Open Spaces", - "TRANSLATIONS": { - "DE": "Freianlagen" - } - }, - "civil-engineering-structures": { - "NAME": "Civil Engineering Structures", - "TRANSLATIONS": { - "DE": "Ingenieurbauwerke" - } - }, - "traffic-facilities": { - "NAME": "Traffic Facilities", - "TRANSLATIONS": { - "DE": "Verkehrsanlagen" - } - }, - "other": { - "NAME": "Other Object Planning", - "TRANSLATIONS": { - "DE": "Sonstige Objektplanung" - } - } - }, - "specialist-planning": { - "NAME": "Specialist Planning", - "TRANSLATIONS": { - "DE": "Fachplanung" - }, - "structural-planning": { - "NAME": "Structural Planning", - "TRANSLATIONS": { - "DE": "Tragwerksplanung" - } - }, - "technical-equipment": { - "NAME": "Technical Equipment", - "TRANSLATIONS": { - "DE": "Technische Ausrüstung" - } - }, - "building-physics": { - "NAME": "Building Physics", - "TRANSLATIONS": { - "DE": "Bauphysik" - } - }, - "geotechnics": { - "NAME": "Geotechnics", - "TRANSLATIONS": { - "DE": "Geotechnik" - } - }, - "engineering-surveying": { - "NAME": "Engineering Surveying", - "TRANSLATIONS": { - "DE": "Ingenieurvermessung" - } - }, - "lighting-technology-daylight-technology": { - "NAME": "Lighting Technology Daylight Technology", - "TRANSLATIONS": { - "DE": "Lichttechnik/Tageslichttechnik" - } - }, - "fire-protection": { - "NAME": "Fire Protection", - "TRANSLATIONS": { - "DE": "Brandschutz" - } - }, - "contaminated-sites-explosive-ordnance-cultural-heritage-finds": { - "NAME": "Contaminated Sites Explosive Ordnance Cultural Heritage Finds", - "TRANSLATIONS": { - "DE": "Altlasten, Kampfmittel, Kulturerbe-Funde" - } - }, - "other": { - "NAME": "Other Specialist Planning", - "TRANSLATIONS": { - "DE": "Sonstige Fachplanung" - } - } - }, - "artistic-services": { - "NAME": "Artistic Services", - "TRANSLATIONS": { - "DE": "Künstlerische Leistungen" - }, - "art-competitions": { - "NAME": "Art Competitions", - "TRANSLATIONS": { - "DE": "Kunstwettbewerbe" - } - }, - "fees": { - "NAME": "Artistic Service Fees", - "TRANSLATIONS": { - "DE": "Honorare für künstlerische Leistungen" - } - }, - "other": { - "NAME": "Other Artistic Services", - "TRANSLATIONS": { - "DE": "Sonstige künstlerische Leistungen" - } - } - }, - "general-construction-ancillary-costs": { - "NAME": "General Construction Ancillary Costs", - "TRANSLATIONS": { - "DE": "Allgemeine Baunebenkosten" - }, - "expertise-and-consulting": { - "NAME": "Expertise And Consulting", - "TRANSLATIONS": { - "DE": "Gutachten und Beratung" - } - }, - "inspections-approvals-acceptance": { - "NAME": "Inspections Approvals Acceptance", - "TRANSLATIONS": { - "DE": "Prüfungen, Genehmigungen, Abnahmen" - } - }, - "operating-costs": { - "NAME": "Operating Costs", - "TRANSLATIONS": { - "DE": "Betriebskosten" - } - }, - "sampling-costs": { - "NAME": "Sampling Costs", - "TRANSLATIONS": { - "DE": "Bemusterungskosten" - } - }, - "operating-costs-after-acceptance": { - "NAME": "Operating Costs After Acceptance", - "TRANSLATIONS": { - "DE": "Betriebskosten nach Abnahme" - } - }, - "insurance": { - "NAME": "Insurance", - "TRANSLATIONS": { - "DE": "Versicherungen" - } - }, - "other": { - "NAME": "Other General Construction Ancillary Costs", - "TRANSLATIONS": { - "DE": "Sonstige allgemeine Baunebenkosten" - } - } - }, - "other-construction-ancillary-costs": { - "NAME": "Other Construction Ancillary Costs", - "TRANSLATIONS": { - "DE": "Sonstige Baunebenkosten" - }, - "documentation-of-existing-conditions": { - "NAME": "Documentation Of Existing Conditions", - "TRANSLATIONS": { - "DE": "Bestandsdokumentation" - } - }, - "other": { - "NAME": "Other Construction Ancillary Costs", - "TRANSLATIONS": { - "DE": "Sonstige Baunebenkosten" - } - } - } - }, - "financing": { - "NAME": "Financing", - "TRANSLATIONS": { - "DE": "Finanzierung" - }, - "financing-ancillary-costs": { - "NAME": "Financing Ancillary Costs", - "TRANSLATIONS": { - "DE": "Finanzierungsnebenkosten" - } - }, - "debt-capital-interest": { - "NAME": "Debt Capital Interest", - "TRANSLATIONS": { - "DE": "Fremdkapitalzinsen" - } - }, - "equity-capital-interest": { - "NAME": "Equity Capital Interest", - "TRANSLATIONS": { - "DE": "Eigenkapitalzinsen" - } - }, - "guarantees": { - "NAME": "Guarantees", - "TRANSLATIONS": { - "DE": "Bürgschaften" - } - }, - "other": { - "NAME": "Other Financing", - "TRANSLATIONS": { - "DE": "Sonstige Finanzierung" - } - } - }, - "taxes-and-duties": { - "NAME": "Construction Taxes And Duties", - "TRANSLATIONS": { - "DE": "Steuern und Abgaben" - } - }, - "grants-subsidies": { - "NAME": "Construction Grants Subsidies", - "TRANSLATIONS": { - "DE": "Zuschüsse, Subventionen" - } - }, - "income": { - "NAME": "Construction Income", - "TRANSLATIONS": { - "DE": "Einnahmen" - } - } - }, - "operating-costs-ongoing-use": { - "NAME": "Operating Costs Ongoing Use", - "TRANSLATIONS": { - "DE": "Betriebskosten im laufenden Betrieb" - }, - "operational-management-costs": { - "NAME": "Operational Management Costs", - "TRANSLATIONS": { - "DE": "Betriebsführungskosten" - }, - "property-management": { - "NAME": "Property Management Costs", - "TRANSLATIONS": { - "DE": "Hausverwaltung" - } - }, - "caretaker": { - "NAME": "Caretaker Costs", - "TRANSLATIONS": { - "DE": "Hausmeister" - } - }, - "insurance": { - "NAME": "Insurance Costs", - "TRANSLATIONS": { - "DE": "Versicherungen" - } - } - }, - "energy-costs": { - "NAME": "Energy Costs", - "TRANSLATIONS": { - "DE": "Energiekosten" - }, - "electricity": { - "NAME": "Electricity Costs", - "TRANSLATIONS": { - "DE": "Strom" - } - }, - "heating": { - "NAME": "Heating Costs", - "TRANSLATIONS": { - "DE": "Heizung" - } - }, - "hot-water": { - "NAME": "Hot Water Costs", - "TRANSLATIONS": { - "DE": "Warmwasser" - } - } - }, - "water-costs-wastewater-fees": { - "NAME": "Water Costs Wastewater Fees", - "TRANSLATIONS": { - "DE": "Wasserkosten, Abwassergebühren" - } - }, - "waste-disposal": { - "NAME": "Waste Disposal Costs", - "TRANSLATIONS": { - "DE": "Müllentsorgung" - } - }, - "security-and-maintenance-costs": { - "NAME": "Security And Maintenance Costs", - "TRANSLATIONS": { - "DE": "Sicherheits- und Wartungskosten" - } - }, - "costs-for-common-facilities": { - "NAME": "Costs For Common Facilities", - "TRANSLATIONS": { - "DE": "Kosten für Gemeinschaftsanlagen" - }, - "elevators": { - "NAME": "Elevators Common Facility Costs", - "TRANSLATIONS": { - "DE": "Aufzüge" - } - }, - "underground-garage": { - "NAME": "Underground Garage Common Facility Costs", - "TRANSLATIONS": { - "DE": "Tiefgarage" - } - }, - "technical-rooms": { - "NAME": "Technical Rooms Common Facility Costs", - "TRANSLATIONS": { - "DE": "Technikräume" - } } } - }, - "maintenance-and-modernization-costs": { - "NAME": "Maintenance And Modernization Costs", - "TRANSLATIONS": { - "DE": "Instandhaltungs- und Modernisierungskosten" - }, - "regular-maintenance": { - "NAME": "Regular Maintenance", - "TRANSLATIONS": { - "DE": "Regelmäßige Wartung" - }, - "elevators": { - "NAME": "Elevators Maintenance", - "TRANSLATIONS": { - "DE": "Aufzüge" - } - }, - "heating-systems": { - "NAME": "Heating Systems Maintenance", - "TRANSLATIONS": { - "DE": "Heizungsanlagen" - } - } - }, - "replacement-of-components": { - "NAME": "Replacement Of Components", - "TRANSLATIONS": { - "DE": "Austausch von Bauteilen" - }, - "windows": { - "NAME": "Windows Replacement", - "TRANSLATIONS": { - "DE": "Fenster" - } - }, - "facade": { - "NAME": "Facade Replacement", - "TRANSLATIONS": { - "DE": "Fassade" - } - }, - "roofs": { - "NAME": "Roofs Replacement", - "TRANSLATIONS": { - "DE": "Dächer" - } - } - }, - "modernization": { - "NAME": "Modernization", - "TRANSLATIONS": { - "DE": "Modernisierung" - }, - "energy-rehabilitation": { - "NAME": "Energy Rehabilitation", - "TRANSLATIONS": { - "DE": "Energetische Sanierung" - } - }, - "barrier-free-conversion": { - "NAME": "Barrier Free Conversion", - "TRANSLATIONS": { - "DE": "Barrierefreier Umbau" - } - } - } - }, - "dismantling-and-disposal-costs": { - "NAME": "Dismantling And Disposal Costs", - "TRANSLATIONS": { - "DE": "Rückbau- und Entsorgungskosten" - }, - "demolition-costs": { - "NAME": "Demolition Costs", - "TRANSLATIONS": { - "DE": "Abbruchkosten" - } - }, - "disposal-of-contaminated-materials": { - "NAME": "Disposal Of Contaminated Materials", - "TRANSLATIONS": { - "DE": "Entsorgung von kontaminierten Materialien" - } - }, - "renaturation-or-reuse-of-the-land": { - "NAME": "Renaturation Or Reuse Of The Land", - "TRANSLATIONS": { - "DE": "Renaturierung oder Wiederverwendung des Grundstücks" - } - } - } - }, - "financing-costs": { - "NAME": "Financing Costs", - "TRANSLATIONS": { - "DE": "Finanzierungskosten" - }, - "interest": { - "NAME": "Financing Interest", - "TRANSLATIONS": { - "DE": "Zinsen" - } - }, - "fees": { - "NAME": "Financing Fees", - "TRANSLATIONS": { - "DE": "Gebühren" - } } - }, - "taxes-and-duties": { - "NAME": "Taxes And Duties", - "TRANSLATIONS": { - "DE": "Steuern und Abgaben" - } - }, - "grants-subsidies": { - "NAME": "Grants Subsidies", - "TRANSLATIONS": { - "DE": "Zuschüsse, Subventionen" - } - }, - "income": { - "NAME": "Income", - "TRANSLATIONS": { - "DE": "Einnahmen" - } - } - } - } - }, - "wasp": { - "connection": { - "rotation": { - "NAME": "rotation", - "TRANSLATIONS": { - "DE": "Drehung" } } } diff --git a/assets/lists/qualities_area.json b/assets/lists/qualities_area.json new file mode 100644 index 000000000..e600b0c33 --- /dev/null +++ b/assets/lists/qualities_area.json @@ -0,0 +1,1645 @@ +{ + "qualities": [ + { + "key": "semio.area.floor.gross", + "name": "Gross Floor Area", + "translation": { + "de": "Brutto-Grundfläche" + }, + "description": "The gross floor area encompasses all floor areas within the external dimensions of a building.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{gfa}", + "formula": "Add ( semio.area.floor.gross.net semio.area.floor.gross.construction )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net", + "name": "Net Floor Area", + "translation": { + "de": "Netto-Raumfläche" + }, + "description": "The net floor area is the usable floor area excluding construction elements.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{nfa}", + "formula": "Add ( semio.area.floor.gross.net.usable semio.area.floor.gross.net.technical semio.area.floor.gross.net.circulation )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable", + "name": "Usable Floor Area", + "translation": { + "de": "Nutzungsfläche" + }, + "description": "The usable floor area includes all areas directly used for the building's intended purpose.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{usbl}", + "formula": "Add ( semio.area.floor.gross.net.usable.living-staying semio.area.floor.gross.net.usable.office-work semio.area.floor.gross.net.usable.production-experiments semio.area.floor.gross.net.usable.storage-distribution-sales semio.area.floor.gross.net.usable.education-culture semio.area.floor.gross.net.usable.healing-care semio.area.floor.gross.net.usable.other )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying", + "name": "Living And Staying Floor Area", + "translation": { + "de": "Wohnen und Aufenthalt" + }, + "description": "Floor area designated for living and staying purposes including residential and common areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{liv}", + "formula": "Add ( semio.area.floor.gross.net.usable.living-staying.living semio.area.floor.gross.net.usable.living-staying.common-room semio.area.floor.gross.net.usable.living-staying.break-room semio.area.floor.gross.net.usable.living-staying.waiting-room semio.area.floor.gross.net.usable.living-staying.dining-room semio.area.floor.gross.net.usable.living-staying.detention-room )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living-room", + "name": "Living Room Floor Area", + "translation": { + "de": "Wohnzimmerfläche" + }, + "description": "Floor area for actual living rooms and main residential spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{liv-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living", + "name": "Living Floor Area", + "translation": { + "de": "Wohnfläche" + }, + "description": "The main living area floor space including living rooms and associated areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{liv}", + "formula": "Add ( semio.area.floor.gross.net.usable.living-staying.living-room semio.area.floor.gross.net.usable.living-staying.living.kitchen semio.area.floor.gross.net.usable.living-staying.living.sanitary semio.area.floor.gross.net.usable.living-staying.living.circulation semio.area.floor.gross.net.usable.living-staying.living.outdoor-seating semio.area.floor.gross.net.usable.living-staying.living.storage )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living.kitchen", + "name": "Kitchen Floor Area", + "translation": { + "de": "Küchenfläche" + }, + "description": "Floor area designated for kitchen facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{kit}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living.sanitary", + "name": "Sanitary Floor Area", + "translation": { + "de": "Sanitärfläche" + }, + "description": "Floor area for sanitary facilities including bathrooms and toilets.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{san}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living.circulation", + "name": "Circulation Floor Area (Living)", + "translation": { + "de": "Verkehrsfläche (Wohnen)" + }, + "description": "Circulation areas within living spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{circ}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living.outdoor-seating", + "name": "Outdoor Seating Floor Area", + "translation": { + "de": "Freisitzfläche" + }, + "description": "Floor area for outdoor seating and relaxation areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{out-seat}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.living.storage", + "name": "Storage Floor Area", + "translation": { + "de": "Abstellraumfläche" + }, + "description": "Floor area designated for storage purposes.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stor}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.common-room", + "name": "Common Room Floor Area", + "translation": { + "de": "Gemeinschaftsraumfläche" + }, + "description": "Floor area for common rooms and shared spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{com-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.break-room", + "name": "Break Room Floor Area", + "translation": { + "de": "Pausenraumfläche" + }, + "description": "Floor area designated for break rooms and rest areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{brk-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.waiting-room", + "name": "Waiting Room Floor Area", + "translation": { + "de": "Warteraumfläche" + }, + "description": "Floor area for waiting rooms and reception areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{wait-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.dining-room", + "name": "Dining Room Floor Area", + "translation": { + "de": "Speiseraumfläche" + }, + "description": "Floor area designated for dining rooms and eating areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{din-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.living-staying.detention-room", + "name": "Detention Room Floor Area", + "translation": { + "de": "Haftraumfläche" + }, + "description": "Floor area for detention rooms and secure spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{det-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work", + "name": "Office Work Floor Area", + "translation": { + "de": "Büroarbeit" + }, + "description": "Floor area designated for office work and administrative functions.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{ofc}", + "formula": "Add ( semio.area.floor.gross.net.usable.office-work.office-room semio.area.floor.gross.net.usable.office-work.open-office semio.area.floor.gross.net.usable.office-work.meeting-room semio.area.floor.gross.net.usable.office-work.design-room semio.area.floor.gross.net.usable.office-work.counter-room semio.area.floor.gross.net.usable.office-work.control-room semio.area.floor.gross.net.usable.office-work.supervision-room semio.area.floor.gross.net.usable.office-work.technology-room semio.area.floor.gross.net.usable.office-work.other )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.office-room", + "name": "Office Room Floor Area", + "translation": { + "de": "Büroraumfläche" + }, + "description": "Floor area for individual office rooms.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{ofc-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.open-office", + "name": "Open Plan Office Floor Area", + "translation": { + "de": "Großraumbürofläche" + }, + "description": "Floor area for open plan office spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{open-ofc}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.meeting-room", + "name": "Meeting Room Floor Area", + "translation": { + "de": "Besprechungsraumfläche" + }, + "description": "Floor area for meeting rooms and conference spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{meet-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.design-room", + "name": "Design Room Floor Area", + "translation": { + "de": "Konstruktionsraumfläche" + }, + "description": "Floor area for design rooms and drafting spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{des-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.counter-room", + "name": "Counter Room Floor Area", + "translation": { + "de": "Schalterraumfläche" + }, + "description": "Floor area for counter rooms and service areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{cnt-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.control-room", + "name": "Control Room Floor Area", + "translation": { + "de": "Kontrollraumfläche" + }, + "description": "Floor area for control rooms and monitoring spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{ctrl-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.supervision-room", + "name": "Supervision Room Floor Area", + "translation": { + "de": "Aufsichtsraumfläche" + }, + "description": "Floor area for supervision rooms and oversight spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{sup-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.technology-room", + "name": "Office Technology Room Floor Area", + "translation": { + "de": "Bürotechnikraumfläche" + }, + "description": "Floor area for office technology rooms and equipment spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{ofc-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.office-work.other", + "name": "Other Office Work Floor Area", + "translation": { + "de": "Sonstige Büroarbeitsfläche" + }, + "description": "Floor area for other office work spaces not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-ofc}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments", + "name": "Production Experiments Work Floor Area", + "translation": { + "de": "Produktion, Hand- und Maschinenarbeit, Experimente" + }, + "description": "Floor area designated for production work, experiments and manufacturing activities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{prod}", + "formula": "Add ( semio.area.prod-hall semio.area.work semio.area.tech-lab semio.area.phys-elec-lab semio.area.chem-bio-lab semio.area.anim-rm semio.area.plant-rm semio.area.kit-prod semio.area.spec-work-rm )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.production-hall", + "name": "Production Hall Floor Area", + "translation": { + "de": "Produktionshallenfläche" + }, + "description": "Floor area for production halls and manufacturing spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{prod-hall}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.workshop", + "name": "Workshop Floor Area", + "translation": { + "de": "Werkstattfläche" + }, + "description": "Floor area for workshops and manual work spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{work}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.technology-lab", + "name": "Technology Lab Floor Area", + "translation": { + "de": "Techniklaborfläche" + }, + "description": "Floor area for technology laboratories and research spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{tech-lab}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.physics-electrical-lab", + "name": "Physics Electrical Lab Floor Area", + "translation": { + "de": "Physik- und Elektrolaborfläche" + }, + "description": "Floor area for physics and electrical laboratories.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{phys-lab}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.chemistry-biology-lab", + "name": "Chemistry Biology Lab Floor Area", + "translation": { + "de": "Chemie- und Biologielaborfläche" + }, + "description": "Floor area for chemistry and biology laboratories.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{chem-lab}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.animal-room", + "name": "Animal Husbandry Room Floor Area", + "translation": { + "de": "Tierhaltungsraumfläche" + }, + "description": "Floor area for animal husbandry and care facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{anim}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.plant-room", + "name": "Plant Cultivation Room Floor Area", + "translation": { + "de": "Pflanzenzuchtraumfläche" + }, + "description": "Floor area for plant cultivation and greenhouse facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{plant}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.kitchen", + "name": "Kitchen Floor Area (Production)", + "translation": { + "de": "Küchenfläche (Produktion)" + }, + "description": "Floor area for production kitchen facilities and food preparation.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{kit}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.production-experiments.special-work-room", + "name": "Special Work Room Floor Area", + "translation": { + "de": "Sonderarbeitsraumfläche" + }, + "description": "Floor area for special work rooms and specialized activities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{spec-work}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales", + "name": "Storage Distribution Sales Floor Area", + "translation": { + "de": "Lagern, Verteilen und Verkaufen" + }, + "description": "Floor area for storage, distribution and sales activities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stor-sales}", + "formula": "Add ( semio.area.stor-rm semio.area.coll-arch semio.area.cold-stor semio.area.recv-disp semio.area.sales-rm semio.area.exh-rm semio.area.other-stor )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.storage-room", + "name": "Storage Room Floor Area", + "translation": { + "de": "Lagerraumfläche" + }, + "description": "Floor area for storage rooms and warehousing.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stor-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.collection-archive", + "name": "Collection Archive Floor Area", + "translation": { + "de": "Sammlungs- und Archivfläche" + }, + "description": "Floor area for collections and archive storage.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{arch}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.cold-storage", + "name": "Cold Storage Room Floor Area", + "translation": { + "de": "Kühllagerraumfläche" + }, + "description": "Floor area for cold storage and refrigerated spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{cold-stor}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.receiving-dispatch", + "name": "Receiving Dispatch Room Floor Area", + "translation": { + "de": "Warenannahme- und Versandfläche" + }, + "description": "Floor area for receiving and dispatching goods.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{recv}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.sales-room", + "name": "Sales Room Floor Area", + "translation": { + "de": "Verkaufsraumfläche" + }, + "description": "Floor area for sales rooms and retail spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{sales}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.exhibition-room", + "name": "Exhibition Room Floor Area", + "translation": { + "de": "Ausstellungsraumfläche" + }, + "description": "Floor area for exhibition rooms and display spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{exh}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.storage-distribution-sales.other", + "name": "Other Storage Distribution Sales Floor Area", + "translation": { + "de": "Sonstige Lager-, Verteil- und Verkaufsfläche" + }, + "description": "Floor area for other storage, distribution and sales activities not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-stor}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture", + "name": "Education Culture Instruction Floor Area", + "translation": { + "de": "Bildung, Unterricht und Kultur" + }, + "description": "Floor area designated for education, instruction and cultural activities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{edu}", + "formula": "Add ( semio.area.class-fix-seat semio.area.teach-prac semio.area.spec-class semio.area.lib semio.area.sport semio.area.assm-rm semio.area.stage-studio semio.area.disp-rm semio.area.sacr-rm )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.classroom-fixed-seating", + "name": "Class With Fixed Seating Floor Area", + "translation": { + "de": "Hörsaalfläche" + }, + "description": "Floor area for lecture halls and classrooms with fixed seating.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{class}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.teaching-practice", + "name": "Teaching Practice Room Floor Area", + "translation": { + "de": "Unterrichts- und Übungsraumfläche" + }, + "description": "Floor area for teaching and practice rooms.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{teach}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.special-classroom", + "name": "Special Classroom Floor Area", + "translation": { + "de": "Sonderunterrichtsraumfläche" + }, + "description": "Floor area for special classrooms and specialized instruction spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{spec-class}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.library", + "name": "Library Room Floor Area", + "translation": { + "de": "Bibliotheks- und Lesesaalfläche" + }, + "description": "Floor area for libraries and reading rooms.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{lib}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.sports", + "name": "Sports Room Floor Area", + "translation": { + "de": "Sportraumfläche" + }, + "description": "Floor area for sports rooms and athletic facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{sport}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.assembly-room", + "name": "Assembly Room Floor Area", + "translation": { + "de": "Versammlungsraumfläche" + }, + "description": "Floor area for assembly rooms and meeting halls.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{assm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.stage-studio", + "name": "Stage Studio Room Floor Area", + "translation": { + "de": "Bühnen- und Studioraumfläche" + }, + "description": "Floor area for stages, studios and performance spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stage}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.display-room", + "name": "Display Room Floor Area", + "translation": { + "de": "Schau- und Vorführraumfläche" + }, + "description": "Floor area for display rooms and demonstration spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{disp}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.education-culture.sacred-room", + "name": "Sacred Room Floor Area", + "translation": { + "de": "Sakralraumfläche" + }, + "description": "Floor area for sacred rooms and religious spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{sacr}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care", + "name": "Healing And Care Floor Area", + "translation": { + "de": "Heilen und Pflegen" + }, + "description": "Floor area designated for healing, care and medical activities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{med}", + "formula": "Add ( semio.area.gen-med-equip semio.area.spec-med-equip semio.area.surg-rm semio.area.rad-diag semio.area.rad-ther semio.area.rehab-physio semio.area.gen-pat-rm semio.area.spec-pat-rm semio.area.other-med )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.general-medical-equipment", + "name": "General Medical Equipment Room Floor Area", + "translation": { + "de": "Raum für allgemeine medizinische Ausstattung" + }, + "description": "Floor area for general medical equipment rooms.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{gen-med}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.special-medical-equipment", + "name": "Special Medical Equipment Room Floor Area", + "translation": { + "de": "Raum für spezielle medizinische Ausstattung" + }, + "description": "Floor area for special medical equipment rooms.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{spec-med}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.surgical-room", + "name": "Surgical Room Floor Area", + "translation": { + "de": "Operationsraumfläche" + }, + "description": "Floor area for surgical rooms and operating theaters.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{surg}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.radiation-diagnostic", + "name": "Radiation Diagnostic Room Floor Area", + "translation": { + "de": "Strahlendiagnostikraumfläche" + }, + "description": "Floor area for radiation diagnostic rooms and imaging facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{rad-diag}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.radiation-therapy", + "name": "Radiation Therapy Room Floor Area", + "translation": { + "de": "Strahlentherapieraumfläche" + }, + "description": "Floor area for radiation therapy rooms and treatment facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{rad-ther}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.rehabilitation-physiotherapy", + "name": "Rehabilitation Physiotherapy Floor Area", + "translation": { + "de": "Rehabilitations- und Physiotherapiefläche" + }, + "description": "Floor area for rehabilitation and physiotherapy facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{rehab}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.general-patient-room", + "name": "General Patient Room Floor Area", + "translation": { + "de": "Allgemeines Patientenzimmerfläche" + }, + "description": "Floor area for general patient rooms.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{gen-pat}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.special-patient-room", + "name": "Special Patient Room Floor Area", + "translation": { + "de": "Spezielles Patientenzimmerfläche" + }, + "description": "Floor area for special patient rooms and intensive care units.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{spec-pat}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.healing-care.other", + "name": "Other Healing And Care Floor Area", + "translation": { + "de": "Sonstige Heil- und Pflegefläche" + }, + "description": "Floor area for other healing and care activities not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-med}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other", + "name": "Other Usable Floor Area", + "translation": { + "de": "Sonstige Nutzungsfläche" + }, + "description": "Floor area for other usable spaces not classified in main categories.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-usbl}", + "formula": "Add ( semio.area.san-rm semio.area.cloak semio.area.stor-rm-other semio.area.veh-park semio.area.pass semio.area.cent-tech semio.area.prot-rm semio.area.laund semio.area.other )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.sanitary-room", + "name": "Sanitary Room Floor Area", + "translation": { + "de": "Sanitärraumfläche" + }, + "description": "Floor area for sanitary rooms and facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{san-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.cloakroom", + "name": "Cloakroom Floor Area", + "translation": { + "de": "Garderobenfläche" + }, + "description": "Floor area for cloakrooms and wardrobe facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{cloak}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.storage-room", + "name": "Storage Room Floor Area (Other)", + "translation": { + "de": "Abstellraumfläche (Sonstige)" + }, + "description": "Floor area for general storage rooms and utility spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stor-rm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.vehicle-parking", + "name": "Vehicle Parking Floor Area", + "translation": { + "de": "Fahrzeugabstellfläche" + }, + "description": "Floor area for vehicle parking and garage spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{park}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.passenger", + "name": "Passenger Floor Area", + "translation": { + "de": "Personenverkehrsfläche" + }, + "description": "Floor area for passenger circulation and transit spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{pass}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.central-technical", + "name": "Central Technical Room Floor Area", + "translation": { + "de": "Zentraler Technikraum" + }, + "description": "Floor area for central technical rooms and equipment spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{cent-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.protective-room", + "name": "Protective Room Floor Area", + "translation": { + "de": "Schutzraumfläche" + }, + "description": "Floor area for protective rooms and secure spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{prot}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.laundry", + "name": "Laundry Room Floor Area", + "translation": { + "de": "Wäschereiraumfläche" + }, + "description": "Floor area for laundry rooms and cleaning facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{laund}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.usable.other.miscellaneous", + "name": "Other Floor Area", + "translation": { + "de": "Sonstige Nutzungsfläche" + }, + "description": "Floor area for other miscellaneous usable spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical", + "name": "Technical Floor Area", + "translation": { + "de": "Technikfläche" + }, + "description": "Floor area designated for technical installations and building services.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{tech}", + "formula": "Add ( semio.area.waste-gas-water semio.area.heat-hw semio.area.vent-ac semio.area.elec-pwr semio.area.telecom semio.area.elev-conv semio.area.other-tech )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.wastewater-gas-water-supply", + "name": "Wastewater Gases Water Supply Floor Area", + "translation": { + "de": "Abwasser-, Gas- und Wasserversorgung" + }, + "description": "Floor area for wastewater, gas and water supply systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{water}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.heating-hot-water", + "name": "Heating Hot Water Floor Area", + "translation": { + "de": "Heizung und Warmwasser" + }, + "description": "Floor area for heating and hot water systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{heat}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.ventilation-air-conditioning", + "name": "Ventilation Air Conditioning Floor Area", + "translation": { + "de": "Lüftung und Klimatisierung" + }, + "description": "Floor area for ventilation and air conditioning systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{vent}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.electrical-power-supply", + "name": "Electrical Power Supply Floor Area", + "translation": { + "de": "Stromversorgung" + }, + "description": "Floor area for electrical power supply systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{elec}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.telecommunications", + "name": "Telecommunications Floor Area", + "translation": { + "de": "Telekommunikation" + }, + "description": "Floor area for telecommunications and IT systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{telecom}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.elevator-conveyor-systems", + "name": "Elevator Conveyor Systems Floor Area", + "translation": { + "de": "Aufzugs- und Förderanlagen" + }, + "description": "Floor area for elevator and conveyor systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{elev}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.technical.other", + "name": "Other Technical Floor Area", + "translation": { + "de": "Sonstige Technikfläche" + }, + "description": "Floor area for other technical systems not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.circulation", + "name": "Circulation Floor Area", + "translation": { + "de": "Verkehrsfläche" + }, + "description": "Floor area designated for circulation and movement within the building.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{circ}", + "formula": "Add ( semio.area.corr-hall semio.area.stair semio.area.shaft-conv semio.area.veh-traf semio.area.other-circ )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.circulation.corridor-hall", + "name": "Corridor Hall Floor Area", + "translation": { + "de": "Flur und Halle" + }, + "description": "Floor area for corridors, hallways and entrance halls.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{corr}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.circulation.stair", + "name": "Stair Floor Area", + "translation": { + "de": "Treppenraum" + }, + "description": "Floor area for stairways and stair landings.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stair}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.circulation.shaft-conveyor", + "name": "Shaft For Conveyor System Floor Area", + "translation": { + "de": "Schacht für Förderanlage" + }, + "description": "Floor area for shafts and conveyor system spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{shaft}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.circulation.vehicle-traffic", + "name": "Vehicle Traffic Floor Area", + "translation": { + "de": "Fahrzeugverkehr" + }, + "description": "Floor area for vehicle traffic and internal roads.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{veh-traf}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.net.circulation.other", + "name": "Other Circulation Floor Area", + "translation": { + "de": "Sonstige Verkehrsfläche" + }, + "description": "Floor area for other circulation spaces not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-circ}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction", + "name": "Construction Floor Area", + "translation": { + "de": "Konstruktions-Grundfläche" + }, + "description": "Floor area occupied by structural construction elements.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{const}", + "formula": "Add ( semio.area.ext-wall-const semio.area.int-wall-const semio.area.part-wall semio.area.col semio.area.shaft semio.area.beam semio.area.other-const )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.exterior-wall", + "name": "Exterior Wall Construction Floor Area", + "translation": { + "de": "Außenwandkonstruktion" + }, + "description": "Floor area occupied by exterior wall construction.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{ext-wall}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.interior-wall", + "name": "Interior Wall Construction Floor Area", + "translation": { + "de": "Innenwandkonstruktion" + }, + "description": "Floor area occupied by interior wall construction.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{int-wall}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.partition-wall", + "name": "Partition Wall Floor Area", + "translation": { + "de": "Trennwandausbildung" + }, + "description": "Floor area occupied by partition walls and dividers.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{part-wall}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.column", + "name": "Column Floor Area", + "translation": { + "de": "Stütze" + }, + "description": "Floor area occupied by columns and supports.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{col}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.shaft", + "name": "Shaft Floor Area", + "translation": { + "de": "Schacht" + }, + "description": "Floor area occupied by structural shafts.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{shaft}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.beam", + "name": "Beam Floor Area", + "translation": { + "de": "Träger" + }, + "description": "Floor area occupied by structural beams.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{beam}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.gross.construction.other", + "name": "Other Construction Floor Area", + "translation": { + "de": "Sonstige Konstruktionsfläche" + }, + "description": "Floor area occupied by other construction elements not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-const}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property", + "name": "Property Area", + "translation": { + "de": "Grundstücksfläche" + }, + "description": "Total area of the property including built and unbuilt areas.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{prop}", + "formula": "Add ( semio.area.floor.property.built semio.area.floor.property.unbuilt )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.built", + "name": "Built Up Area", + "translation": { + "de": "Bebaute Fläche" + }, + "description": "Area of the property that is built up with structures.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{built}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt", + "name": "Unbuilt Area", + "translation": { + "de": "Unbebaute Fläche" + }, + "description": "Area of the property that is not built up with structures.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{unbuilt}", + "formula": "Add ( semio.area.out-fac semio.area.green semio.area.paved semio.area.tech-fac semio.area.water semio.area.other-out )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility", + "name": "Outdoor Facility Area", + "translation": { + "de": "Außenanlagenfläche" + }, + "description": "Area designated for outdoor facilities and infrastructure.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{out-fac}", + "formula": "Add ( semio.area.traf semio.area.sidewalk semio.area.drive semio.area.park-sp semio.area.bike-park semio.area.turn semio.area.other-traf )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.traffic", + "name": "Traffic Area", + "translation": { + "de": "Verkehrsfläche" + }, + "description": "Area designated for vehicular traffic and transportation.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{traf}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.sidewalk", + "name": "Sidewalk Area", + "translation": { + "de": "Gehwegfläche" + }, + "description": "Area designated for sidewalks and pedestrian walkways.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{sidewalk}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.driveway", + "name": "Driveway Area", + "translation": { + "de": "Zufahrtsfläche" + }, + "description": "Area designated for driveways and vehicle access roads.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{drive}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.parking-space", + "name": "Parking Space Area", + "translation": { + "de": "Stellplatzfläche" + }, + "description": "Area designated for parking spaces and vehicle storage.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{park-sp}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.bicycle-parking", + "name": "Bicycle Parking Area", + "translation": { + "de": "Fahrradabstellfläche" + }, + "description": "Area designated for bicycle parking and storage.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{bike-park}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.turning", + "name": "Turning Area", + "translation": { + "de": "Wendeplatzfläche" + }, + "description": "Area designated for vehicle turning and maneuvering.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{turn}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.outdoor-facility.other-traffic", + "name": "Other Traffic Area", + "translation": { + "de": "Sonstige Verkehrsfläche" + }, + "description": "Area for other traffic-related facilities not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-traf}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green", + "name": "Green Area", + "translation": { + "de": "Grünfläche" + }, + "description": "Area designated for green spaces and vegetation.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{green}", + "formula": "Add ( semio.area.lawn semio.area.plant-bed semio.area.hedge semio.area.tree semio.area.roof-green semio.area.fac-green semio.area.other-green )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.lawn", + "name": "Lawn Area", + "translation": { + "de": "Rasenfläche" + }, + "description": "Area covered with lawn and grass surfaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{lawn}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.plant-bed", + "name": "Planted Bed Area", + "translation": { + "de": "Pflanzbeetfläche" + }, + "description": "Area designated for planted beds and flower gardens.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{plant-bed}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.hedge", + "name": "Hedge Area", + "translation": { + "de": "Heckenfläche" + }, + "description": "Area covered with hedges and shrub borders.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{hedge}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.tree", + "name": "Tree Area", + "translation": { + "de": "Baumfläche" + }, + "description": "Area designated for trees and tree canopy coverage.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{tree}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.roof-greening", + "name": "Roof Greening Area", + "translation": { + "de": "Dachbegrünungsfläche" + }, + "description": "Area of roof surfaces with green vegetation coverage.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{roof-green}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.facade-greening", + "name": "Facade Greening Area", + "translation": { + "de": "Fassadenbegrünungsfläche" + }, + "description": "Area of facade surfaces with green vegetation coverage.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{fac-green}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.green.other", + "name": "Other Green Area", + "translation": { + "de": "Sonstige Grünfläche" + }, + "description": "Area for other green spaces not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-green}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved", + "name": "Paved Area", + "translation": { + "de": "Befestigte Fläche" + }, + "description": "Area with paved or hard surface treatments.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{paved}", + "formula": "Add ( semio.area.terr semio.area.balc semio.area.court semio.area.stor-util semio.area.play semio.area.other-paved )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved.terrace", + "name": "Terrace Area", + "translation": { + "de": "Terrassenfläche" + }, + "description": "Area designated for terraces and outdoor decking.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{terr}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved.balcony", + "name": "Balcony Area", + "translation": { + "de": "Balkonfläche" + }, + "description": "Area designated for balconies and elevated outdoor spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{balc}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved.courtyard", + "name": "Courtyard Area", + "translation": { + "de": "Hoffläche" + }, + "description": "Area designated for courtyards and enclosed outdoor spaces.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{court}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved.storage-utility", + "name": "Storage Utility Area", + "translation": { + "de": "Lager- und Nutzfläche" + }, + "description": "Paved area designated for storage and utility purposes.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{stor-util}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved.playground", + "name": "Playground Area", + "translation": { + "de": "Spielplatzfläche" + }, + "description": "Area designated for playgrounds and recreational activities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{play}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.paved.other", + "name": "Other Paved Area", + "translation": { + "de": "Sonstige befestigte Fläche" + }, + "description": "Area for other paved surfaces not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-paved}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility", + "name": "Technical Facility Area", + "translation": { + "de": "Technische Anlagenfläche" + }, + "description": "Area designated for technical facilities and outdoor installations.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{tech-fac}", + "formula": "Add ( semio.area.waste-coll semio.area.util-line semio.area.storm-mgmt semio.area.light-sys semio.area.fence semio.area.other-tech-fac )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility.waste-collection", + "name": "Waste Collection Point Area", + "translation": { + "de": "Müllsammelplatzfläche" + }, + "description": "Area designated for waste collection and disposal facilities.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{waste-coll}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility.utility-line", + "name": "Utility Line Area", + "translation": { + "de": "Versorgungsleitungsfläche" + }, + "description": "Area occupied by utility lines and service corridors.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{util-line}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility.stormwater-management", + "name": "Stormwater Management Area", + "translation": { + "de": "Regenwasserbewirtschaftungsfläche" + }, + "description": "Area designated for stormwater management and drainage systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{storm}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility.lighting-system", + "name": "Lighting System Area", + "translation": { + "de": "Beleuchtungsanlagenfläche" + }, + "description": "Area occupied by outdoor lighting systems and installations.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{light}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility.fence", + "name": "Fence Enclosure Area", + "translation": { + "de": "Zaun- und Einfriedungsfläche" + }, + "description": "Area occupied by fencing and enclosure systems.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{fence}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.technical-facility.other", + "name": "Other Technical Facility Area", + "translation": { + "de": "Sonstige technische Anlagenfläche" + }, + "description": "Area for other technical facilities not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-tech-fac}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.water", + "name": "Water Area", + "translation": { + "de": "Wasserfläche" + }, + "description": "Area designated for water features and aquatic installations.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{water}", + "formula": "Add ( semio.area.pond semio.area.fountain semio.area.storm-ret semio.area.other-water )", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.water.pond", + "name": "Pond Area", + "translation": { + "de": "Teichfläche" + }, + "description": "Area designated for ponds and decorative water bodies.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{pond}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.water.fountain", + "name": "Fountain Area", + "translation": { + "de": "Brunnenfläche" + }, + "description": "Area designated for fountains and water features.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{fountain}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.water.stormwater-retention", + "name": "Stormwater Retention Area", + "translation": { + "de": "Regenwasserrückhaltefläche" + }, + "description": "Area designated for stormwater retention and management.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{storm-ret}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.water.other", + "name": "Other Water Area", + "translation": { + "de": "Sonstige Wasserfläche" + }, + "description": "Area for other water features not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-water}", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.property.unbuilt.other-outdoor", + "name": "Other Outdoor Facility Area", + "translation": { + "de": "Sonstige Außenanlagenfläche" + }, + "description": "Area for other outdoor facilities not classified elsewhere.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_{other-out}", + "format": "#,##0.##" + } + ] +} diff --git a/assets/lists/qualities_assess-performance.json b/assets/lists/qualities_assess-performance.json new file mode 100644 index 000000000..6b60a0c3e --- /dev/null +++ b/assets/lists/qualities_assess-performance.json @@ -0,0 +1,873 @@ +{ + "qualities": [ + { + "key": "semio.costs.life-cycle.earnings.roi", + "name": "Return on Investment", + "translation": { + "de": "Rendite" + }, + "description": "The interest is the Return on Investment (ROI) [%] between the initial investment cost and the net life cycle earnings.", + "si": "%", + "imperial": "%", + "symbol": "ROI", + "formula": " Divide ( Subtract ( semio.costs.life-cycle.earnings semio.costs.investment ) semio.costs.investment ) ", + "format": "#,##0.#%" + }, + { + "key": "semio.costs.life-cycle.earnings", + "name": "Life Cycle earnings", + "translation": { + "de": "Lebenszyklus-Einnahmen" + }, + "description": "The life cycle earnings is the total earnings of its income over the life cycle of the building.", + "si": "€", + "imperial": "$", + "symbol": "E", + "formula": "Multiply ( semio.time.life semio.costs.annual.income )", + "format": "#,##0.##" + }, + { + "key": "semio.time.life", + "name": "Life Time", + "translation": { + "de": "Lebensdauer" + }, + "description": "The lifetime is the total expected lifespan of the building, expressed in years.", + "si": "a", + "imperial": "yr", + "symbol": "t", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.income", + "name": "Income per Year", + "translation": { + "de": "Einnahmen pro Jahr" + }, + "description": "The income per year is the total income generated by the building per year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "I", + "format": "#,##0.##" + }, + { + "key": "semio.costs.investment", + "name": "Initial Investment", + "translation": { + "de": "Startinvestition" + }, + "description": "The initial investment is the total cost to construct the building.", + "si": "€", + "imperial": "$", + "symbol": "C₀", + "formula": "Add ( semio.costs.investment.construction semio.costs.investment.technical-equipment )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.investment.construction", + "name": "Building Construction Costs", + "translation": { + "de": "Konstruktionskosten" + }, + "description": "The total cost of the building construction.", + "si": "€", + "imperial": "$", + "symbol": "C_c", + "format": "#,##0.##" + }, + { + "key": "semio.costs.investment.technical-equipment", + "name": "Technical Equipment Costs", + "translation": { + "de": "Kosten für technische Ausrüstung" + }, + "description": "The total cost of the technical equipment needed for the building.", + "si": "€", + "imperial": "$", + "symbol": "C_{eq}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.life-cycle", + "name": "Life Cycle Costs", + "translation": { + "de": "Lebenszykluskosten" + }, + "description": "The total cost during the life cycle of the building.", + "si": "€", + "imperial": "$", + "symbol": "LCC", + "formula": "Add ( semio.costs.investment semio.costs.life-cycle.operating )", + "format": "#,##0.##" + }, + + { + "key": "semio.costs.life-cycle.operating", + "name": "Operating Costs", + "translation": { + "de": "Betriebskosten" + }, + "description": "The total operating costs during the life cycle of the building.", + "si": "€", + "imperial": "$", + "symbol": "C_o", + "formula": "Multiply ( semio.time.life semio.costs.annual.operating.expenses )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses", + "name": "Operating Expenses", + "translation": { + "de": "laufende Ausgaben" + }, + "description": "The operating expenses during one year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{op}", + "formula": "Add ( semio.costs.annual.operating.expenses.maintenance semio.costs.annual.operating.expenses.energy )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.maintenance", + "name": "Maintenance Expenses", + "translation": { + "de": "Instandhaltungskosten" + }, + "description": "The maintenance expenses during one year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_m", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy", + "name": "Energy Expenses", + "translation": { + "de": "Energiekosten" + }, + "description": "The energy expenses during one year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_E", + "formula": "Add ( semio.costs.annual.operating.expenses.energy.heating.total semio.costs.annual.operating.expenses.energy.electricity.total semio.costs.annual.operating.expenses.energy.ventilation.total )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.heating.total", + "name": "Heating Expenses", + "translation": { + "de": "Heizkosten" + }, + "description": "The heating expenses over a year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_h", + "formula": "Add ( semio.costs.annual.operating.expenses.energy.heating semio.costs.annual.operating.expenses.energy.co2-price.heating )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.electricity.total", + "name": "Electricity Expenses", + "translation": { + "de": "Stromkosten" + }, + "description": "The electricity expenses over a year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_e", + "formula": "Add ( semio.costs.annual.operating.expenses.energy.electricity semio.costs.annual.operating.expenses.energy.co2-price.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.ventilation.total", + "name": "Ventilation Expenses", + "translation": { + "de": "Ventilationskosten" + }, + "description": "The ventilation expenses over a year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_v", + "formula": "Add ( semio.costs.annual.operating.expenses.energy.ventilation semio.costs.annual.operating.expenses.energy.co2-price.ventilation )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.heating", + "name": "Heating Costs", + "translation": { + "de": "Heizkosten" + }, + "description": "The heating costs are the product of the final heating energy demand and heating energy price over a year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{h,cost}", + "formula": "Multiply ( semio.energy.demand.final.heating semio.costs.price.energy.heating )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.final.heating", + "name": "Final Heating Energy Demand", + "translation": { + "de": "Endenergiebedarf Heizung" + }, + "description": "The final heating energy demand is the heating energy demand multiplied with the heating efficiency factor of one year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{h,f}", + "formula": "Multiply ( semio.factor.energy.efficiency.heating semio.energy.demand.heating )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.energy.efficiency.heating", + "name": "Heating Efficiency Factor", + "translation": { + "de": "Heizungseffizienzfaktor" + }, + "description": "The efficiency factor for the heating system.", + "si": "", + "imperial": "", + "symbol": "η_h", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.heating", + "name": "Heating Energy Demand", + "translation": { + "de": "Heizenergiebedarf" + }, + "description": "The energy demand for heating the building per year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{v,loss}", + "formula": "Add ( Multiply (semio.energy.heating.loss.ventilation Subtract( 1 semio.factor.energy.heating.recovery ) ) semio.energy.heating.loss.transmission )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.load.heating", + "name": "Heating Load", + "translation": { + "de": "Heizlast" + }, + "description": "The maximum heating power required to maintain comfort conditions.", + "si": "kW", + "imperial": "kW", + "symbol": "P_h", + "format": "#,##0.##" + }, + { + "key": "semio.energy.load.cooling", + "name": "Cooling Load", + "translation": { + "de": "Kühllast" + }, + "description": "The maximum cooling power required to maintain comfort conditions.", + "si": "kW", + "imperial": "kW", + "symbol": "P_c", + "format": "#,##0.##" + }, + { + "key": "semio.energy.heating.loss.transmission", + "name": "Transmission Heat Loss", + "translation": { + "de": "Transmissionswärmeverlust" + }, + "description": "The heat loss due to transmission through the building envelope per year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{t,loss}", + "format": "#,##0.##" + }, + { + "key": "semio.energy.heating.loss.ventilation", + "name": "Ventilation Heat Loss", + "translation": { + "de": "Lüftungswärmeverlust" + }, + "description": "The heat loss due to ventilation in the building over a year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{v,loss}", + "formula": "Multiply ( semio.factor.energy.heating.ventilation semio.energy.demand.heating )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.energy.heating.ventilation", + "name": "Ventilation Heat Loss Factor", + "translation": { + "de": "Lüftungswärmeverlustfaktor" + }, + "description": "The factor representing the proportion of heat lost through ventilation.", + "si": "", + "imperial": "", + "symbol": "f_{v,loss}", + "format": "#,##0.##" + }, + { + "key": "semio.factor.energy.heating.recovery", + "name": "Ventilation Heat Recovery Factor", + "translation": { + "de": "Lüftungswärmerückgewinnungsfaktor" + }, + "description": "The factor representing the proportion of heat recovered from ventilation.", + "si": "", + "imperial": "", + "symbol": "f_{v,recovery}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.price.energy.heating", + "name": "Heating Energy Price", + "translation": { + "de": "Heizenergie-Preis" + }, + "description": "The price per unit of heating energy.", + "si": "€/kWh", + "imperial": "$/kWh", + "symbol": "p_h", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.co2-price.heating", + "name": "Heating CO2 Price", + "translation": { + "de": "CO2-Preis zum heizen" + }, + "description": "The heating CO2 price is the product of heating global warming potential and CO2 price per year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{h,CO₂}", + "formula": "Multiply ( semio.gwp.heating semio.costs.CO2-price )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.CO2-price", + "name": "CO2 Price", + "translation": { + "de": "CO2-Preis" + }, + "description": "The price per unit of CO2 emissions.", + "si": "€/kgCO2e", + "imperial": "$/kgCO2e", + "symbol": "p_{CO₂}", + "format": "#,##0.##" + }, + + { + "key": "semio.costs.annual.operating.expenses.energy.electricity", + "name": "Electricity Costs", + "translation": { + "de": "Stromkosten" + }, + "description": "The electricity costs are the product of the electricity energy demand and electricity energy price for one year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{e,cost}", + "formula": "Multiply ( semio.energy.demand.electricity semio.costs.price.energy.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.electricity", + "name": "Electricity Energy Demand", + "translation": { + "de": "Strombedarf" + }, + "description": "The energy demand for electricity in the building per year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{e,f}", + "formula": "Add ( 0 semio.energy.demand.electricity.technical-equipment )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.electricity.technical-equipment", + "name": "Technical Equipment Energy Demand", + "translation": { + "de": "Energiebedarf der technischen Ausstattung" + }, + "description": "The energy demand of the technical equipment in the building for one year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{e,f,tech}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.price.energy.electricity", + "name": "Electricity Energy Price", + "translation": { + "de": "Strompreis" + }, + "description": "The price per unit of electricity energy.", + "si": "€/kWh", + "imperial": "$/kWh", + "symbol": "p_e", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.co2-price.electricity", + "name": "Electricity CO2 Price", + "translation": { + "de": "CO2-Preis Strom" + }, + "description": "The electricity CO2 price is the product of electricity global warming potential and CO2 price per year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{e,CO₂}", + "formula": "Multiply ( semio.gwp.electricity semio.costs.CO2-price )", + "format": "#,##0.##" + }, + + { + "key": "semio.costs.annual.operating.expenses.energy.ventilation", + "name": "Ventilation Costs", + "translation": { + "de": "Ventilationskosten" + }, + "description": "The ventilation costs are the product of final ventilation energy demand and electricity energy price per year.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{v,cost}", + "formula": "Multiply ( semio.energy.demand.final.ventilation semio.costs.price.energy.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.final.ventilation", + "name": "Final Ventilation Energy Demand", + "translation": { + "de": "Endenergiebedarf Ventilation" + }, + "description": "The final ventilation energy demand is the product of ventilation efficiency factor and ventilation energy demand for one year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{v,f}", + "formula": "Multiply ( semio.factor.energy.efficiency.ventilation semio.energy.demand.ventilation )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.energy.efficiency.ventilation", + "name": "Ventilation Efficiency Factor", + "translation": { + "de": "Ventilationseffizienzfaktor" + }, + "description": "The efficiency factor for the ventilation system.", + "si": "", + "imperial": "", + "symbol": "η_v", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.ventilation", + "name": "Ventilation Energy Demand", + "translation": { + "de": "Ventilationsenergiebedarf" + }, + "description": "The energy demand for ventilation in the building over a year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_v", + "formula": "Multiply ( 1 semio.energy.demand.ventilation.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.ventilation.electricity", + "name": "Ventilation Electricity Demand", + "translation": { + "de": "Ventilationsstrombedarf" + }, + "description": "The electricity demand for ventilation in the building over a year.", + "si": "kWh/a", + "imperial": "kWh/yr", + "symbol": "Q_{v,e}", + "format": "#,##0.##" + }, + { + "key": "semio.volume.air-flow.ventilation", + "name": "Ventilation Air Flow Volume", + "translation": { + "de": "Lüftungsvolumenstrom" + }, + "description": "The volume of air flow required for ventilation per hour.", + "si": "m³/h", + "imperial": "ft³/h", + "symbol": "V̇_v", + "format": "#,##0.##" + }, + { + "key": "semio.costs.annual.operating.expenses.energy.co2-price.ventilation", + "name": "Ventilation CO2 Price", + "translation": { + "de": "CO2-Preis für die Lüftungsanlage" + }, + "description": "The CO2 price for ventilation are the costs associated with the carbon emissions from the ventilation system, which is the electricity-CO2-Price because the ventilation system runs with electricity.", + "si": "€/a", + "imperial": "$/yr", + "symbol": "C_{v,CO2}", + "formula": "Multiply ( semio.gwp.ventilation semio.costs.CO2-price )", + "format": "#,##0.##" + }, + + { + "key": "semio.energy.demand.final", + "name": "Final Energy Demand", + "translation": { + "de": "Endenergiebedarf" + }, + "description": "The final energy demand is the total energy demand of the building per year, including all energy carriers.", + "si": "kWh/a", + "imperial": "kBtu/yr", + "symbol": "E_{final}", + "formula": "Add ( semio.energy.demand.final.heating semio.energy.demand.electricity semio.energy.demand.final.ventilation )", + "format": "#,##0.##" + }, + + { + "key": "semio.energy.demand.primary", + "name": "Primary Energy Demand", + "translation": { + "de": "Primärenergiebedarf" + }, + "description": "The primary energy demand is the total primary energy demand of the building per year, including all energy carriers.", + "si": "kWh/a", + "imperial": "kBtu/yr", + "symbol": "E_{primary}", + "formula": "Add ( semio.energy.demand.primary.heating semio.energy.demand.primary.electricity semio.energy.demand.primary.ventilation )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.primary.heating", + "name": "Primary Heating Energy Demand", + "translation": { + "de": "Primärenergiebedarf Heizung" + }, + "description": "The primary heating energy demand is the product of final heating energy demand and heating primary energy factor for one year.", + "si": "kWh/a", + "imperial": "kBtu/yr", + "symbol": "E_{h,primary}", + "formula": "Multiply ( semio.energy.demand.final.heating semio.factor.energy.primary.heating )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.energy.primary.heating", + "name": "Heating Primary Energy Factor", + "translation": { + "de": "Heizung Primärenergiefaktor" + }, + "description": "The primary energy factor for the heating system.", + "si": "", + "imperial": "", + "symbol": "f_{h,primary}", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.primary.electricity", + "name": "Primary Electricity Energy Demand", + "translation": { + "de": "Primärenergiebedarf Strom" + }, + "description": "The primary electricity energy demand is the product of electricity energy demand and electricity primary energy factor for one year.", + "si": "kWh/a", + "imperial": "kBtu/yr", + "symbol": "E_{e,primary}", + "formula": "Multiply ( semio.energy.demand.electricity semio.factor.energy.primary.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.energy.primary.electricity", + "name": "Electricity Primary Energy Factor", + "translation": { + "de": "Strom Primärenergiefaktor" + }, + "description": "The primary energy factor for electricity.", + "si": "", + "imperial": "", + "symbol": "f_{e,primary}", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.primary.ventilation", + "name": "Primary Ventilation Energy Demand", + "translation": { + "de": "Primärenergiebedarf Lüftung" + }, + "description": "The primary ventilation energy demand is the product of final ventilation energy demand and electricity primary energy factor for one year.", + "si": "kWh/a", + "imperial": "kBtu/yr", + "symbol": "E_{v,primary}", + "formula": "Multiply ( semio.energy.demand.final.ventilation semio.factor.energy.primary.electricity )", + "format": "#,##0.##" + }, + + { + "key": "semio.area.floor", + "name": "Floor Area", + "translation": { + "de": "Grundfläche" + }, + "description": "The total floor area of the building.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_floor", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.effective", + "name": "Effective Floor Area", + "translation": { + "de": "Effektive Grundfläche" + }, + "description": "The effective usable floor area of the building.", + "si": "m²", + "imperial": "ft²", + "symbol": "A_effective", + "format": "#,##0.##" + }, + { + "key": "semio.area.floor.efficiency", + "name": "Area Efficiency", + "translation": { + "de": "Flächeneffizienz" + }, + "description": "The ratio of effective floor area to total floor area.", + "si": "eff. m²/m²", + "imperial": "eff. ft²/ft²", + "symbol": "η_area", + "formula": "Divide ( semio.area.floor.effective semio.area.floor )", + "format": "#,##0.###" + }, + { + "key": "semio.energy.demand.heating.normalize.area.floor", + "name": "Specific Heating Energy Demand", + "translation": { + "de": "Spezifischer Heizenergiebedarf" + }, + "description": "The heating energy demand per effective floor area over a year.", + "si": "kWh/m²a", + "imperial": "kWh/ft²yr", + "symbol": "Q_{h,area}", + "formula": "Divide ( semio.energy.demand.heating semio.area.floor )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.final.normalize.area.floor", + "name": "Specific Final Energy Demand", + "translation": { + "de": "Spezifischer Endenergiebedarf" + }, + "description": "The final energy demand per unit effective floor area.", + "si": "kWh/m²a", + "imperial": "kWh/ft²yr", + "symbol": "E_{final,area}", + "formula": "Divide ( semio.energy.demand.final semio.area.floor.effective )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.primary.normalize.area.floor", + "name": "Specific Primary Energy Demand", + "translation": { + "de": "Spezifischer Primärenergiebedarf" + }, + "description": "The primary energy demand per unit effective floor area.", + "si": "kWh/m²a", + "imperial": "kWh/ft²yr", + "symbol": "E_{primary,area}", + "formula": "Divide ( semio.energy.demand.primary semio.area.floor.effective )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.investment.normalize.area.floor", + "name": "Specific Initial Investment", + "translation": { + "de": "Spezifische Startinvestition" + }, + "description": "The initial investment cost per unit effective floor area.", + "si": "€/m²", + "imperial": "$/ft²", + "symbol": "C₀_{area}", + "formula": "Divide ( semio.costs.investment semio.area.floor.effective )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.life-cycle.normalize.area.floor", + "name": "Specific Life Cycle Costs", + "translation": { + "de": "Spezifische Lebenszykluskosten" + }, + "description": "The life cycle costs per unit effective floor area.", + "si": "€/m²", + "imperial": "$/ft²", + "symbol": "LCC_{area}", + "formula": "Divide ( semio.costs.life-cycle semio.area.floor.effective )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.life-cycle.normalize.area.floor", + "name": "Specific Life Cycle Global Warming Potential", + "translation": { + "de": "Spezifisches Treibhauspotenzial des Lebenszyklus" + }, + "description": "The life cycle global warming potential per unit effective floor area.", + "si": "kgCO2e/m²", + "imperial": "lbCO2e/ft²", + "symbol": "GWP_{life-cycle,area}", + "formula": "Divide ( semio.gwp.life-cycle semio.area.floor.effective )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.construction.normalize.area.floor", + "name": "Specific Construction Global Warming Potential", + "translation": { + "de": "Spezifisches Treibhauspotenzial aller Bauteile" + }, + "description": "The construction global warming potential per unit effective floor area.", + "si": "kgCO2e/m²", + "imperial": "lbCO2e/ft²", + "symbol": "GWP_{construction,area}", + "formula": "Divide ( semio.gwp.construction semio.area.floor.effective )", + "format": "#,##0.##" + }, + + { + "key": "semio.users", + "name": "Users", + "translation": { + "de": "Nutzer" + }, + "description": "The number of people who use the building, including residents and workers.", + "si": "persons", + "imperial": "persons", + "symbol": "U", + "format": "#,##0" + }, + + { + "key": "semio.area.floor.comfort", + "name": "Area Comfort", + "translation": { + "de": "Flächenkomfort" + }, + "description": "The effective floor area per user.", + "si": "m²/user", + "imperial": "ft²/user", + "symbol": "A_{comfort}", + "formula": "Divide ( semio.area.floor.effective semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.investment.normalize.User", + "name": "Initial Costs per User", + "translation": { + "de": "Investitionskosten pro Nutzer" + }, + "description": "The initial investment cost per user.", + "si": "€/user", + "imperial": "$/user", + "symbol": "C₀_{user}", + "formula": "Divide ( semio.costs.investment semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.life-cycle.normalize.User", + "name": "Life Cycle Cost per User", + "translation": { + "de": "Lebenszykluskosten pro Nutzer" + }, + "description": "The life cycle costs per user.", + "si": "€/user", + "imperial": "$/user", + "symbol": "LCC_{user}", + "formula": "Divide ( semio.costs.life-cycle semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.construction.normalize.User", + "name": "Construction GWP per User", + "translation": { + "de": "Konstruktions-Treibhauspotenzial pro Nutzer" + }, + "description": "The construction global warming potential per user.", + "si": "kgCO2e/user", + "imperial": "lbCO2e/user", + "symbol": "GWP_{construction,user}", + "formula": "Divide ( semio.gwp.construction semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.primary.normalize.User", + "name": "Primary Energy Demand per User", + "translation": { + "de": "Primärenergiebedarf pro Nutzer" + }, + "description": "The primary energy demand per user.", + "si": "kWh/user/a", + "imperial": "kWh/user/yr", + "symbol": "E_{primary,user}", + "formula": "Divide ( semio.energy.demand.primary semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.final.normalize.User", + "name": "Final Energy Demand per User", + "translation": { + "de": "Endenergiebedarf pro Nutzer" + }, + "description": "The final energy demand per user.", + "si": "kWh/user/a", + "imperial": "kWh/user/yr", + "symbol": "E_{final,user}", + "formula": "Divide ( semio.energy.demand.final semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.heating.normalize.User", + "name": "Heating Energy Demand per User", + "translation": { + "de": "Heizenergiebedarf pro Nutzer" + }, + "description": "The heating energy demand per user.", + "si": "kWh/user/a", + "imperial": "kWh/user/yr", + "symbol": "Q_{h,user}", + "formula": "Divide ( semio.energy.demand.heating semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.ventilation.normalize.area.floor", + "name": "Specific Ventilation Energy Demand", + "translation": { + "de": "Spezifischer Lüftungsenergiebedarf" + }, + "description": "The ventilation energy demand per unit effective floor area.", + "si": "kWh/m²/a", + "imperial": "kWh/ft²/yr", + "symbol": "Q_{v,area}", + "formula": "Divide ( semio.energy.demand.ventilation semio.area.floor.effective )", + "format": "#,##0.##" + }, + { + "key": "semio.energy.demand.ventilation.normalize.User", + "name": "Ventilation Energy Demand per User", + "translation": { + "de": "Lüftungsenergiebedarf pro Nutzer" + }, + "description": "The ventilation energy demand per user.", + "si": "kWh/user/a", + "imperial": "kWh/user/yr", + "symbol": "Q_{v,user}", + "formula": "Divide ( semio.energy.demand.ventilation semio.users )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.life-cycle.normalize.User", + "name": "Life Cycle GWP per User", + "translation": { + "de": "Lebenszyklus-Treibhauspotenzial pro Nutzer" + }, + "description": "The life cycle global warming potential per user.", + "si": "kgCO2e/user", + "imperial": "lbCO2e/user", + "symbol": "GWP_{life-cycle,user}", + "formula": "Divide ( semio.gwp.life-cycle semio.users )", + "format": "#,##0.##" + } + ] +} diff --git a/assets/lists/qualities_gllc.json b/assets/lists/qualities_gllc.json new file mode 100644 index 000000000..47dedc340 --- /dev/null +++ b/assets/lists/qualities_gllc.json @@ -0,0 +1,4083 @@ +{ + "qualities": [ + { + "key": "semio.costs.global-life-cycle", + "name": "Global Life-Cycle Costs", + "translation": { + "de": "Globale Lebenszykluskosten" + }, + "description": "Total costs over the entire life cycle of a building including investment, operation, maintenance and disposal costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{gllc}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle semio.costs.global-life-cycle.financing semio.costs.global-life-cycle.taxes-and-duties ) Subtract ( semio.costs.global-life-cycle.grants-subsidies semio.costs.global-life-cycle.income )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle", + "name": "Life-Cycle Costs", + "translation": { + "de": "Lebenszykluskosten" + }, + "description": "Total costs during the life cycle including investment, operating and maintenance costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{lcc}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase semio.costs.global-life-cycle.life-cycle.operating-ongoing-use semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase", + "name": "Investment Costs Construction Phase", + "translation": { + "de": "Investitionskosten Errichtungsphase" + }, + "description": "All costs incurred during the construction phase of the building.", + "si": "€", + "imperial": "$", + "symbol": "C_{inv}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary semio.costs.global-life-cycle.life-cycle.investment-construction-phase.financing semio.costs.global-life-cycle.life-cycle.investment-construction-phase.taxes-and-duties semio.costs.global-life-cycle.life-cycle.investment-construction-phase.grants-subsidies semio.costs.global-life-cycle.life-cycle.investment-construction-phase.income )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land", + "name": "Land Costs", + "translation": { + "de": "Grundstückskosten" + }, + "description": "All costs related to land acquisition and preparation.", + "si": "€", + "imperial": "$", + "symbol": "C_{land}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition", + "name": "Land Acquisition", + "translation": { + "de": "Grundstückserwerb" + }, + "description": "Direct land acquisition costs including value and ancillary costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-acq}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.value semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.compensations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.redemption-of-real-rights semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.value", + "name": "Land Value", + "translation": { + "de": "Grundstückswert" + }, + "description": "The purchase price or market value of the land.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-val}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary", + "name": "Ancillary Land Costs", + "translation": { + "de": "Grundstücksnebenkosten" + }, + "description": "Additional costs related to land acquisition including fees and investigations.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-anc}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.surveying-fees semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.court-fees semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.notary-fees semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.transfer-tax semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.investigations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.valuations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.permit-fees semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.reorganization semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.surveying-fees", + "name": "Surveying Fees", + "translation": { + "de": "Vermessungsgebühren" + }, + "description": "Costs for land surveying and boundary determination.", + "si": "€", + "imperial": "$", + "symbol": "C_{surv}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.court-fees", + "name": "Court Fees", + "translation": { + "de": "Gerichtskosten" + }, + "description": "Legal fees and court costs related to land acquisition.", + "si": "€", + "imperial": "$", + "symbol": "C_{court}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.notary-fees", + "name": "Notary Fees", + "translation": { + "de": "Notarkosten" + }, + "description": "Notarization costs for land purchase contracts.", + "si": "€", + "imperial": "$", + "symbol": "C_{notary}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.transfer-tax", + "name": "Land Transfer Tax", + "translation": { + "de": "Grunderwerbsteuer" + }, + "description": "Tax on the transfer of land ownership.", + "si": "€", + "imperial": "$", + "symbol": "C_{trans-tax}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.investigations", + "name": "Investigations", + "translation": { + "de": "Untersuchungen" + }, + "description": "Costs for soil, environmental and technical investigations.", + "si": "€", + "imperial": "$", + "symbol": "C_{invest}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.valuations", + "name": "Valuations", + "translation": { + "de": "Wertgutachten" + }, + "description": "Professional property valuation costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{valuation}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.permit-fees", + "name": "Permit Fees", + "translation": { + "de": "Genehmigungsgebühren" + }, + "description": "Administrative fees for building permits and approvals.", + "si": "€", + "imperial": "$", + "symbol": "C_{permit}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.reorganization", + "name": "Land Reorganization", + "translation": { + "de": "Grundstücksneuordnung" + }, + "description": "Costs for land consolidation and reorganization procedures.", + "si": "€", + "imperial": "$", + "symbol": "C_{reorg}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.ancillary.other", + "name": "Other Ancillary Land Costs", + "translation": { + "de": "Sonstige Grundstücksnebenkosten" + }, + "description": "Other miscellaneous costs related to land acquisition.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-anc-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights", + "name": "Third Party Rights", + "translation": { + "de": "Rechte Dritter" + }, + "description": "Costs related to third-party rights on the land.", + "si": "€", + "imperial": "$", + "symbol": "C_{third-party}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights.compensations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights.redemption-of-real-rights semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights.compensations", + "name": "Third Party Compensations", + "translation": { + "de": "Entschädigungen Dritter" + }, + "description": "Compensation payments to third parties for rights or damages.", + "si": "€", + "imperial": "$", + "symbol": "C_{comp-3rd}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights.redemption-of-real-rights", + "name": "Third Party Redemption of Real Rights", + "translation": { + "de": "Ablösung dinglicher Rechte Dritter" + }, + "description": "Costs for redemption of third-party real rights on the property.", + "si": "€", + "imperial": "$", + "symbol": "C_{redemp-3rd}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.third-party-rights.other", + "name": "Other Third Party Rights", + "translation": { + "de": "Sonstige Rechte Dritter" + }, + "description": "Other costs related to third-party rights.", + "si": "€", + "imperial": "$", + "symbol": "C_{3rd-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.compensations", + "name": "Land Compensations", + "translation": { + "de": "Grundstücksentschädigungen" + }, + "description": "Direct compensation costs related to land acquisition.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-comp}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.redemption-of-real-rights", + "name": "Land Redemption of Real Rights", + "translation": { + "de": "Ablösung dinglicher Rechte" + }, + "description": "Costs for redemption of real rights on the land.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-redemp}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.acquisition.other", + "name": "Other Land Acquisition Costs", + "translation": { + "de": "Sonstige Grundstückserwerbskosten" + }, + "description": "Other miscellaneous costs directly related to land acquisition.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-acq-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.land.other", + "name": "Other Land Related Costs", + "translation": { + "de": "Sonstige grundstücksbezogene Kosten" + }, + "description": "Additional costs not directly attributable to land acquisition.", + "si": "€", + "imperial": "$", + "symbol": "C_{land-rel}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development", + "name": "Development Costs", + "translation": { + "de": "Erschließungskosten" + }, + "description": "Costs for site development and infrastructure preparation.", + "si": "€", + "imperial": "$", + "symbol": "C_{dev}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures", + "name": "Preparatory Measures", + "translation": { + "de": "Vorbereitende Maßnahmen" + }, + "description": "Site preparation and infrastructure development measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{prep}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.private-infrastructure-development semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation", + "name": "Site Preparation", + "translation": { + "de": "Baustellenvorbereitung" + }, + "description": "Costs for preparing the construction site including safety and demolition measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{site-prep}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.safety-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.demolition-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.contaminated-site-remediation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.surface-preparation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.explosive-ordnance-clearance semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.cultural-heritage-finds semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.safety-measures", + "name": "Safety Measures", + "translation": { + "de": "Sicherheitsmaßnahmen" + }, + "description": "Site safety measures and protective installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{safety}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.demolition-measures", + "name": "Demolition Measures", + "translation": { + "de": "Abrissmaßnahmen" + }, + "description": "Costs for demolition of existing structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{demo}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.contaminated-site-remediation", + "name": "Contaminated Site Remediation", + "translation": { + "de": "Altlastensanierung" + }, + "description": "Remediation of contaminated soil and groundwater.", + "si": "€", + "imperial": "$", + "symbol": "C_{contam}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.surface-preparation", + "name": "Surface Preparation", + "translation": { + "de": "Oberflächenvorbereitung" + }, + "description": "Preparation of site surface for construction.", + "si": "€", + "imperial": "$", + "symbol": "C_{surf-prep}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.explosive-ordnance-clearance", + "name": "Explosive Ordnance Clearance", + "translation": { + "de": "Kampfmittelräumung" + }, + "description": "Clearance of unexploded ordnance from the site.", + "si": "€", + "imperial": "$", + "symbol": "C_{ordnance}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.cultural-heritage-finds", + "name": "Cultural Heritage Finds", + "translation": { + "de": "Kulturdenkmalfunde" + }, + "description": "Costs related to archaeological and cultural heritage discoveries.", + "si": "€", + "imperial": "$", + "symbol": "C_{heritage}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.site-preparation.other", + "name": "Other Site Preparation", + "translation": { + "de": "Sonstige Baustellenvorbereitung" + }, + "description": "Other miscellaneous site preparation costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{site-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development", + "name": "Public Infrastructure Development", + "translation": { + "de": "Erschließung öffentliche Infrastruktur" + }, + "description": "Development of public infrastructure connections.", + "si": "€", + "imperial": "$", + "symbol": "C_{pub-infra}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.wastewater-disposal semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.water-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.gas-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.district-heating-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.power-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.telecommunications semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.traffic-development semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.waste-disposal semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.wastewater-disposal", + "name": "Wastewater Disposal", + "translation": { + "de": "Abwasserentsorgung" + }, + "description": "Connection to public wastewater disposal systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{wastewater}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.water-supply", + "name": "Water Supply", + "translation": { + "de": "Wasserversorgung" + }, + "description": "Connection to public water supply systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{water}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.gas-supply", + "name": "Gas Supply", + "translation": { + "de": "Gasversorgung" + }, + "description": "Connection to public gas supply networks.", + "si": "€", + "imperial": "$", + "symbol": "C_{gas}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.district-heating-supply", + "name": "District Heating Supply", + "translation": { + "de": "Fernwärmeversorgung" + }, + "description": "Connection to district heating networks.", + "si": "€", + "imperial": "$", + "symbol": "C_{heating}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.power-supply", + "name": "Power Supply", + "translation": { + "de": "Stromversorgung" + }, + "description": "Connection to electrical power supply networks.", + "si": "€", + "imperial": "$", + "symbol": "C_{power}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.telecommunications", + "name": "Telecommunications", + "translation": { + "de": "Telekommunikation" + }, + "description": "Connection to telecommunications infrastructure.", + "si": "€", + "imperial": "$", + "symbol": "C_{telecom}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.traffic-development", + "name": "Traffic Development", + "translation": { + "de": "Verkehrserschließung" + }, + "description": "Development of traffic infrastructure and access roads.", + "si": "€", + "imperial": "$", + "symbol": "C_{traffic}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.waste-disposal", + "name": "Waste Disposal", + "translation": { + "de": "Abfallentsorgung" + }, + "description": "Connection to waste disposal systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{waste}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.public-infrastructure-development.other", + "name": "Other Public Infrastructure", + "translation": { + "de": "Sonstige öffentliche Infrastruktur" + }, + "description": "Other public infrastructure development costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{pub-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.private-infrastructure-development", + "name": "Private Infrastructure Development", + "translation": { + "de": "Erschließung private Infrastruktur" + }, + "description": "Development of private infrastructure on the property.", + "si": "€", + "imperial": "$", + "symbol": "C_{priv-infra}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies", + "name": "Compensatory Measures and Levies", + "translation": { + "de": "Ausgleichsmaßnahmen und Abgaben" + }, + "description": "Environmental compensation measures and related levies.", + "si": "€", + "imperial": "$", + "symbol": "C_{comp}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies.compensatory-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies.compensatory-levies semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies.compensatory-measures", + "name": "Compensatory Measures", + "translation": { + "de": "Ausgleichsmaßnahmen" + }, + "description": "Environmental compensation measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{comp-meas}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies.compensatory-levies", + "name": "Compensatory Levies", + "translation": { + "de": "Ausgleichsabgaben" + }, + "description": "Compensatory levies in lieu of direct measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{comp-levy}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.compensatory-measures-and-levies.other", + "name": "Other Compensatory Costs", + "translation": { + "de": "Sonstige Ausgleichskosten" + }, + "description": "Other compensatory measures and costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{comp-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures", + "name": "Transitional Measures", + "translation": { + "de": "Übergangsmaßnahmen" + }, + "description": "Temporary measures during construction transition.", + "si": "€", + "imperial": "$", + "symbol": "C_{trans}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures.structural-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures.organizational-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures.structural-measures", + "name": "Structural Measures", + "translation": { + "de": "Bauliche Maßnahmen" + }, + "description": "Structural transitional measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{struct-trans}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures.organizational-measures", + "name": "Organizational Measures", + "translation": { + "de": "Organisatorische Maßnahmen" + }, + "description": "Organizational transitional measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{org-trans}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.preparatory-measures.transitional-measures.other", + "name": "Other Transitional Measures", + "translation": { + "de": "Sonstige Übergangsmaßnahmen" + }, + "description": "Other transitional measures and costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{trans-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.development.other", + "name": "Other Development Costs", + "translation": { + "de": "Sonstige Erschließungskosten" + }, + "description": "Other development-related costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{dev-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.financing", + "name": "Financing Costs", + "translation": { + "de": "Finanzierungskosten" + }, + "description": "All costs related to financing the project including interest and fees.", + "si": "€", + "imperial": "$", + "symbol": "C_{fin}", + "formula": "Add ( semio.costs.global-life-cycle.financing.interest semio.costs.global-life-cycle.financing.fees )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.financing.interest", + "name": "Interest", + "translation": { + "de": "Zinsen" + }, + "description": "Interest costs on loans and financing.", + "si": "€", + "imperial": "$", + "symbol": "C_{interest}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.financing.fees", + "name": "Financing Fees", + "translation": { + "de": "Finanzierungsgebühren" + }, + "description": "Fees and charges related to obtaining financing.", + "si": "€", + "imperial": "$", + "symbol": "C_{fin-fees}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.taxes-and-duties", + "name": "Taxes and Duties", + "translation": { + "de": "Steuern und Abgaben" + }, + "description": "All taxes and duties related to the project.", + "si": "€", + "imperial": "$", + "symbol": "C_{tax}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.grants-subsidies", + "name": "Grants and Subsidies", + "translation": { + "de": "Zuschüsse und Subventionen" + }, + "description": "Financial support received from government or other institutions.", + "si": "€", + "imperial": "$", + "symbol": "S_{grants}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.income", + "name": "Income", + "translation": { + "de": "Einnahmen" + }, + "description": "Revenue generated from the property during its lifetime.", + "si": "€", + "imperial": "$", + "symbol": "R_{income}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components", + "name": "Building Structural Components", + "translation": { + "de": "Baukonstruktionen" + }, + "description": "Costs for all structural building components including foundations, walls, roofs, and installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{struct}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks", + "name": "Excavation Earthworks", + "translation": { + "de": "Erdarbeiten" + }, + "description": "Excavation and earthwork costs for building construction.", + "si": "€", + "imperial": "$", + "symbol": "C_{excavation}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.construction semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.enclosure semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.water-management semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.conveyance semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.construction", + "name": "Excavation Construction", + "translation": { + "de": "Erdarbeiten Konstruktion" + }, + "description": "Construction-related excavation work.", + "si": "€", + "imperial": "$", + "symbol": "C_{exc-const}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.enclosure", + "name": "Excavation Enclosure", + "translation": { + "de": "Erdarbeiten Umschließung" + }, + "description": "Enclosure-related excavation work.", + "si": "€", + "imperial": "$", + "symbol": "C_{exc-encl}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.water-management", + "name": "Excavation Water Management", + "translation": { + "de": "Erdarbeiten Wasserhaltung" + }, + "description": "Water management during excavation work.", + "si": "€", + "imperial": "$", + "symbol": "C_{exc-water}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.conveyance", + "name": "Excavation Conveyance", + "translation": { + "de": "Erdarbeiten Förderung" + }, + "description": "Material conveyance during excavation.", + "si": "€", + "imperial": "$", + "symbol": "C_{exc-conv}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.excavation-earthworks.other", + "name": "Other Excavation Costs", + "translation": { + "de": "Sonstige Erdarbeiten" + }, + "description": "Other excavation and earthwork costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{exc-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure", + "name": "Foundation Substructure", + "translation": { + "de": "Gründung, Unterbau" + }, + "description": "Foundation and substructure construction costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{foundation}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.soil-improvement semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.shallow-foundations-and-slabs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.deep-foundations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.foundation-layers semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.seals-and-linings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.drains semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.soil-improvement", + "name": "Soil Improvement", + "translation": { + "de": "Bodenverbesserung" + }, + "description": "Soil stabilization and improvement measures.", + "si": "€", + "imperial": "$", + "symbol": "C_{soil-imp}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.shallow-foundations-and-slabs", + "name": "Shallow Foundations and Slabs", + "translation": { + "de": "Flachgründungen und Bodenplatten" + }, + "description": "Shallow foundation systems and ground slabs.", + "si": "€", + "imperial": "$", + "symbol": "C_{shallow-found}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.deep-foundations", + "name": "Deep Foundations", + "translation": { + "de": "Tiefgründungen" + }, + "description": "Deep foundation systems including piles and caissons.", + "si": "€", + "imperial": "$", + "symbol": "C_{deep-found}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.foundation-layers", + "name": "Foundation Layers", + "translation": { + "de": "Gründungsschichten" + }, + "description": "Foundation preparation layers and bedding.", + "si": "€", + "imperial": "$", + "symbol": "C_{found-layers}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.seals-and-linings", + "name": "Seals and Linings", + "translation": { + "de": "Abdichtungen und Auskleidungen" + }, + "description": "Waterproofing and protective linings for foundations.", + "si": "€", + "imperial": "$", + "symbol": "C_{seals}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.drains", + "name": "Drains", + "translation": { + "de": "Drainagen" + }, + "description": "Drainage systems for foundation areas.", + "si": "€", + "imperial": "$", + "symbol": "C_{drains}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.foundation-substructure.other", + "name": "Other Foundation Costs", + "translation": { + "de": "Sonstige Gründungskosten" + }, + "description": "Other foundation and substructure costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{found-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside", + "name": "External Walls Vertical Structural Components Outside", + "translation": { + "de": "Außenwände, senkrechte Baukonstruktionen, außen" + }, + "description": "External walls and vertical structural components on the building exterior.", + "si": "€", + "imperial": "$", + "symbol": "C_{ext-walls}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.load-bearing-external-walls semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.non-load-bearing-external-walls semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-columns semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-wall-openings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-wall-claddings-outside semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-wall-claddings-inside semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.prefabricated-external-wall-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.light-protection-kg-330 semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.load-bearing-external-walls", + "name": "Load Bearing External Walls", + "translation": { + "de": "Tragende Außenwände" + }, + "description": "Load-bearing exterior wall systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{load-ext-walls}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.non-load-bearing-external-walls", + "name": "Non Load Bearing External Walls", + "translation": { + "de": "Nichttragende Außenwände" + }, + "description": "Non-load-bearing exterior wall systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{non-load-ext-walls}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-columns", + "name": "External Columns", + "translation": { + "de": "Außenstützen" + }, + "description": "Exterior structural columns and supports.", + "si": "€", + "imperial": "$", + "symbol": "C_{ext-columns}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-wall-openings", + "name": "External Wall Openings", + "translation": { + "de": "Außenwandöffnungen" + }, + "description": "Windows, doors and other openings in external walls.", + "si": "€", + "imperial": "$", + "symbol": "C_{ext-openings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-wall-claddings-outside", + "name": "External Wall Claddings Outside", + "translation": { + "de": "Außenwandbekleidungen außen" + }, + "description": "Exterior cladding and facade systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{ext-clad-out}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.external-wall-claddings-inside", + "name": "External Wall Claddings Inside", + "translation": { + "de": "Außenwandbekleidungen innen" + }, + "description": "Interior finishes on external walls.", + "si": "€", + "imperial": "$", + "symbol": "C_{ext-clad-in}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.prefabricated-external-wall-structures", + "name": "Prefabricated External Wall Structures", + "translation": { + "de": "Vorgefertigte Außenwandkonstruktionen" + }, + "description": "Prefabricated external wall systems and panels.", + "si": "€", + "imperial": "$", + "symbol": "C_{prefab-ext-walls}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.light-protection-kg-330", + "name": "Light Protection KG 330", + "translation": { + "de": "Lichtschutz KG 330" + }, + "description": "Light protection systems for external walls according to cost group 330.", + "si": "€", + "imperial": "$", + "symbol": "C_{light-prot-330}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.external-walls-vertical-structural-components-outside.other", + "name": "Other External Wall Costs", + "translation": { + "de": "Sonstige Außenwandkosten" + }, + "description": "Other external wall and vertical structure costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{ext-walls-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside", + "name": "Internal Walls Vertical Structural Components Inside", + "translation": { + "de": "Innenwände, senkrechte Baukonstruktionen, innen" + }, + "description": "Internal walls and vertical structural components inside the building.", + "si": "€", + "imperial": "$", + "symbol": "C_{int-walls}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.load-bearing-internal-walls semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.non-load-bearing-internal-walls semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.internal-columns semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.internal-wall-openings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.internal-wall-claddings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.prefabricated-internal-wall-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.load-bearing-internal-walls", + "name": "Load Bearing Internal Walls", + "translation": { + "de": "Tragende Innenwände" + }, + "description": "Load-bearing interior wall systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{load-int-walls}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.non-load-bearing-internal-walls", + "name": "Non Load Bearing Internal Walls", + "translation": { + "de": "Nichttragende Innenwände" + }, + "description": "Non-load-bearing interior wall systems and partitions.", + "si": "€", + "imperial": "$", + "symbol": "C_{non-load-int-walls}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.internal-columns", + "name": "Internal Columns", + "translation": { + "de": "Innenstützen" + }, + "description": "Interior structural columns and supports.", + "si": "€", + "imperial": "$", + "symbol": "C_{int-columns}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.internal-wall-openings", + "name": "Internal Wall Openings", + "translation": { + "de": "Innenwandöffnungen" + }, + "description": "Interior doors and openings in internal walls.", + "si": "€", + "imperial": "$", + "symbol": "C_{int-openings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.internal-wall-claddings", + "name": "Internal Wall Claddings", + "translation": { + "de": "Innenwandbekleidungen" + }, + "description": "Interior wall finishes and claddings.", + "si": "€", + "imperial": "$", + "symbol": "C_{int-clad}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.prefabricated-internal-wall-structures", + "name": "Prefabricated Internal Wall Structures", + "translation": { + "de": "Vorgefertigte Innenwandkonstruktionen" + }, + "description": "Prefabricated internal wall systems and modular partitions.", + "si": "€", + "imperial": "$", + "symbol": "C_{prefab-int-walls}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.internal-walls-vertical-structural-components-inside.other", + "name": "Other Internal Wall Costs", + "translation": { + "de": "Sonstige Innenwandkosten" + }, + "description": "Other internal wall and vertical structure costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{int-walls-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components", + "name": "Ceilings Horizontal Structural Components", + "translation": { + "de": "Decken, waagerechte Baukonstruktionen" + }, + "description": "Ceiling systems and horizontal structural components.", + "si": "€", + "imperial": "$", + "symbol": "C_{ceilings}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.load-bearing-ceilings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.non-load-bearing-ceilings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.ceiling-openings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.ceiling-claddings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.prefabricated-ceiling-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.load-bearing-ceilings", + "name": "Load Bearing Ceilings", + "translation": { + "de": "Tragende Decken" + }, + "description": "Load-bearing ceiling and floor slab systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{load-ceilings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.non-load-bearing-ceilings", + "name": "Non Load Bearing Ceilings", + "translation": { + "de": "Nichttragende Decken" + }, + "description": "Non-load-bearing ceiling systems and suspended ceilings.", + "si": "€", + "imperial": "$", + "symbol": "C_{non-load-ceilings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.ceiling-openings", + "name": "Ceiling Openings", + "translation": { + "de": "Deckenöffnungen" + }, + "description": "Openings in ceilings for stairs, elevators, and services.", + "si": "€", + "imperial": "$", + "symbol": "C_{ceiling-openings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.ceiling-claddings", + "name": "Ceiling Claddings", + "translation": { + "de": "Deckenbekleidungen" + }, + "description": "Ceiling finishes and cladding systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{ceiling-clad}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.prefabricated-ceiling-structures", + "name": "Prefabricated Ceiling Structures", + "translation": { + "de": "Vorgefertigte Deckenkonstruktionen" + }, + "description": "Prefabricated ceiling systems and modular components.", + "si": "€", + "imperial": "$", + "symbol": "C_{prefab-ceilings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.ceilings-horizontal-structural-components.other", + "name": "Other Ceiling Costs", + "translation": { + "de": "Sonstige Deckenkosten" + }, + "description": "Other ceiling and horizontal structure costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{ceilings-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs", + "name": "Roofs", + "translation": { + "de": "Dächer" + }, + "description": "Roof systems and weather protection structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{roofs}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-coverings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-openings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-claddings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.prefabricated-roof-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.light-protection-kg-360 semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-structures", + "name": "Roof Structures", + "translation": { + "de": "Dachkonstruktionen" + }, + "description": "Structural roof framework and support systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{roof-struct}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-coverings", + "name": "Roof Coverings", + "translation": { + "de": "Dachbeläge" + }, + "description": "Roof covering materials and waterproofing systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{roof-cover}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-openings", + "name": "Roof Openings", + "translation": { + "de": "Dachöffnungen" + }, + "description": "Roof openings including skylights, hatches, and penetrations.", + "si": "€", + "imperial": "$", + "symbol": "C_{roof-openings}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.roof-claddings", + "name": "Roof Claddings", + "translation": { + "de": "Dachbekleidungen" + }, + "description": "Roof cladding and finishing systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{roof-clad}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.prefabricated-roof-structures", + "name": "Prefabricated Roof Structures", + "translation": { + "de": "Vorgefertigte Dachkonstruktionen" + }, + "description": "Prefabricated roof systems and modular components.", + "si": "€", + "imperial": "$", + "symbol": "C_{prefab-roofs}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.light-protection-kg-360", + "name": "Light Protection KG 360", + "translation": { + "de": "Lichtschutz KG 360" + }, + "description": "Light protection systems for roofs according to cost group 360.", + "si": "€", + "imperial": "$", + "symbol": "C_{light-prot-360}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.roofs.other", + "name": "Other Roof Costs", + "translation": { + "de": "Sonstige Dachkosten" + }, + "description": "Other roof system costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{roofs-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities", + "name": "Infrastructure Facilities", + "translation": { + "de": "Infrastruktureinrichtungen" + }, + "description": "Infrastructure facilities and utility installations within building structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{infra-facilities}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.road-traffic-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.rail-traffic-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.air-traffic-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.water-construction-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.wastewater-disposal-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.water-supply-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.energy-and-information-supply-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.waste-disposal-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.road-traffic-facilities", + "name": "Road Traffic Facilities", + "translation": { + "de": "Straßenverkehrsanlagen" + }, + "description": "Road traffic infrastructure and associated facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{road-traffic}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.rail-traffic-facilities", + "name": "Rail Traffic Facilities", + "translation": { + "de": "Schienenverkehrsanlagen" + }, + "description": "Railway and rail traffic infrastructure facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{rail-traffic}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.air-traffic-facilities", + "name": "Air Traffic Facilities", + "translation": { + "de": "Luftverkehrsanlagen" + }, + "description": "Aviation and air traffic infrastructure facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{air-traffic}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.water-construction-facilities", + "name": "Water Construction Facilities", + "translation": { + "de": "Wasserbauanlagen" + }, + "description": "Water construction and hydraulic engineering facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{water-construction}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.wastewater-disposal-facilities", + "name": "Wastewater Disposal Facilities", + "translation": { + "de": "Abwasserentsorgungsanlagen" + }, + "description": "Wastewater treatment and disposal infrastructure facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{wastewater-disposal-fac}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.water-supply-facilities", + "name": "Water Supply Facilities", + "translation": { + "de": "Wasserversorgungsanlagen" + }, + "description": "Water supply and distribution infrastructure facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{water-supply-fac}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.energy-and-information-supply-facilities", + "name": "Energy and Information Supply Facilities", + "translation": { + "de": "Energie- und Informationsversorgungsanlagen" + }, + "description": "Energy distribution and information infrastructure facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{energy-info-supply}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.waste-disposal-facilities", + "name": "Waste Disposal Facilities", + "translation": { + "de": "Abfallentsorgungsanlagen" + }, + "description": "Waste collection and disposal infrastructure facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{waste-disposal-fac}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.infrastructure-facilities.other", + "name": "Other Infrastructure Facilities", + "translation": { + "de": "Sonstige Infrastruktureinrichtungen" + }, + "description": "Other infrastructure facilities and installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{infra-fac-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations", + "name": "Structural Installations", + "translation": { + "de": "Bauliche Einbauten" + }, + "description": "Fixed structural installations and built-in components.", + "si": "€", + "imperial": "$", + "symbol": "C_{struct-inst}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.general-installations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.special-installations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.landscape-architectural-installations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.mechanical-installations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.installations-in-civil-engineering-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.orientation-and-information-systems semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.protective-installations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.general-installations", + "name": "General Installations", + "translation": { + "de": "Allgemeine Einbauten" + }, + "description": "General built-in installations and fixtures.", + "si": "€", + "imperial": "$", + "symbol": "C_{general-inst}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.special-installations", + "name": "Special Installations", + "translation": { + "de": "Besondere Einbauten" + }, + "description": "Specialized installations for specific functions.", + "si": "€", + "imperial": "$", + "symbol": "C_{special-inst}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.landscape-architectural-installations", + "name": "Landscape Architectural Installations", + "translation": { + "de": "Landschaftsarchitektonische Einbauten" + }, + "description": "Landscape architectural installations and features.", + "si": "€", + "imperial": "$", + "symbol": "C_{landscape-arch-inst}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.mechanical-installations", + "name": "Mechanical Installations", + "translation": { + "de": "Maschinelle Einbauten" + }, + "description": "Mechanical installations and equipment.", + "si": "€", + "imperial": "$", + "symbol": "C_{mechanical-inst}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.installations-in-civil-engineering-structures", + "name": "Installations in Civil Engineering Structures", + "translation": { + "de": "Einbauten in Ingenieurbauwerken" + }, + "description": "Specialized installations within civil engineering structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{civil-eng-inst}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.orientation-and-information-systems", + "name": "Orientation and Information Systems", + "translation": { + "de": "Orientierungs- und Informationssysteme" + }, + "description": "Wayfinding, signage, and information system installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{orientation-info}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.protective-installations", + "name": "Protective Installations", + "translation": { + "de": "Schutzeinrichtungen" + }, + "description": "Protective installations and safety equipment.", + "si": "€", + "imperial": "$", + "symbol": "C_{protective-inst}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.structural-installations.other", + "name": "Other Structural Installations", + "translation": { + "de": "Sonstige bauliche Einbauten" + }, + "description": "Other structural installations and built-in components.", + "si": "€", + "imperial": "$", + "symbol": "C_{struct-inst-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures", + "name": "Other Measures for Structural Components", + "translation": { + "de": "Sonstige Maßnahmen für Baukonstruktionen" + }, + "description": "Additional measures and miscellaneous costs for structural components.", + "si": "€", + "imperial": "$", + "symbol": "C_{struct-other-measures}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.construction-site-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.scaffolding semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.safety-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.demolition-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.renovations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.material-disposal semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.additional-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.temporary-structural-components semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.construction-site-facilities", + "name": "Construction Site Facilities", + "translation": { + "de": "Baustelleneinrichtungen" + }, + "description": "Temporary facilities and installations for construction sites.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-site-fac}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.scaffolding", + "name": "Scaffolding", + "translation": { + "de": "Gerüste" + }, + "description": "Scaffolding and temporary support structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{scaffolding}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.safety-measures", + "name": "Construction Safety Measures", + "translation": { + "de": "Sicherheitsmaßnahmen Bau" + }, + "description": "Safety measures and protective installations during construction.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-safety}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.demolition-measures", + "name": "Construction Demolition Measures", + "translation": { + "de": "Abrissmaßnahmen Bau" + }, + "description": "Demolition measures during construction activities.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-demo}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.renovations", + "name": "Construction Renovations", + "translation": { + "de": "Instandsetzungen Bau" + }, + "description": "Renovation and restoration work during construction.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-renovations}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.material-disposal", + "name": "Construction Material Disposal", + "translation": { + "de": "Materialentsorgung Bau" + }, + "description": "Material disposal costs during construction activities.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-disposal}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.additional-measures", + "name": "Additional Construction Measures", + "translation": { + "de": "Zusätzliche Baumaßnahmen" + }, + "description": "Additional measures and special requirements during construction.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-additional}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.temporary-structural-components", + "name": "Temporary Structural Components", + "translation": { + "de": "Provisorische Baukonstruktionen" + }, + "description": "Temporary structural components and provisional structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{temp-struct}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.building-structural-components.other-measures.other", + "name": "Other Construction Measures", + "translation": { + "de": "Sonstige Baumaßnahmen" + }, + "description": "Other miscellaneous construction measures and costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems", + "name": "Technical Systems", + "translation": { + "de": "Technische Anlagen" + }, + "description": "All technical building systems including HVAC, electrical, and communication systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas", + "name": "Wastewater Water Gas Systems", + "translation": { + "de": "Abwasser-, Wasser-, Gasanlagen" + }, + "description": "Plumbing and gas supply systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{wwg}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.wastewater semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.water semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.gas semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.wastewater", + "name": "Wastewater Systems", + "translation": { + "de": "Abwasseranlagen" + }, + "description": "Wastewater disposal and treatment systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{wastewater-sys}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.water", + "name": "Water Systems", + "translation": { + "de": "Wasseranlagen" + }, + "description": "Water supply and distribution systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{water-sys}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.gas", + "name": "Gas Systems", + "translation": { + "de": "Gasanlagen" + }, + "description": "Gas supply and distribution systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{gas-sys}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.wastewater-water-gas.other", + "name": "Other Utility Systems", + "translation": { + "de": "Sonstige Versorgungsanlagen" + }, + "description": "Other utility systems and installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{util-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply", + "name": "Heating Supply Systems", + "translation": { + "de": "Wärmeversorgungsanlagen" + }, + "description": "Systems for heat generation and distribution in buildings.", + "si": "€", + "imperial": "$", + "symbol": "C_{heating-supply}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.heat-generation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.heat-distribution-networks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.room-heating-surfaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.traffic-heating-surfaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.heat-generation", + "name": "Heat Generation Systems", + "translation": { + "de": "Wärmeerzeugungsanlagen" + }, + "description": "Systems for generating heat energy.", + "si": "€", + "imperial": "$", + "symbol": "C_{heat-generation}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.heat-distribution-networks", + "name": "Heat Distribution Networks", + "translation": { + "de": "Wärmeverteilungsnetze" + }, + "description": "Networks for distributing heat throughout buildings.", + "si": "€", + "imperial": "$", + "symbol": "C_{heat-distribution}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.room-heating-surfaces", + "name": "Room Heating Surfaces", + "translation": { + "de": "Raumheizflächen" + }, + "description": "Heating surfaces and radiators for room heating.", + "si": "€", + "imperial": "$", + "symbol": "C_{room-heating-surfaces}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.traffic-heating-surfaces", + "name": "Traffic Heating Surfaces", + "translation": { + "de": "Verkehrsheizflächen" + }, + "description": "Heating surfaces for traffic areas and walkways.", + "si": "€", + "imperial": "$", + "symbol": "C_{traffic-heating-surfaces}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.heating-supply.other", + "name": "Other Heating Supply Systems", + "translation": { + "de": "Sonstige Wärmeversorgungsanlagen" + }, + "description": "Other heating supply systems and components.", + "si": "€", + "imperial": "$", + "symbol": "C_{heating-supply-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology", + "name": "Room Air Technology Systems", + "translation": { + "de": "Raumlufttechnische Anlagen" + }, + "description": "Systems for ventilation, air conditioning, and air treatment.", + "si": "€", + "imperial": "$", + "symbol": "C_{room-air-tech}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.ventilation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.partial-air-conditioning semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.air-conditioning semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.refrigeration semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.ventilation", + "name": "Ventilation Systems", + "translation": { + "de": "Lüftungsanlagen" + }, + "description": "Systems for mechanical ventilation and air exchange.", + "si": "€", + "imperial": "$", + "symbol": "C_{ventilation}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.partial-air-conditioning", + "name": "Partial Air Conditioning Systems", + "translation": { + "de": "Teilklimaanlagen" + }, + "description": "Systems for partial air conditioning and climate control.", + "si": "€", + "imperial": "$", + "symbol": "C_{partial-ac}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.air-conditioning", + "name": "Air Conditioning Systems", + "translation": { + "de": "Klimaanlagen" + }, + "description": "Complete air conditioning systems for climate control.", + "si": "€", + "imperial": "$", + "symbol": "C_{air-conditioning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.refrigeration", + "name": "Refrigeration Systems", + "translation": { + "de": "Kälteanlagen" + }, + "description": "Systems for cooling and refrigeration.", + "si": "€", + "imperial": "$", + "symbol": "C_{refrigeration}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.room-air-technology.other", + "name": "Other Room Air Technology Systems", + "translation": { + "de": "Sonstige raumlufttechnische Anlagen" + }, + "description": "Other room air technology systems and components.", + "si": "€", + "imperial": "$", + "symbol": "C_{room-air-tech-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical", + "name": "Electrical Systems", + "translation": { + "de": "Elektrische Anlagen" + }, + "description": "Electrical systems for power supply, distribution, and lighting.", + "si": "€", + "imperial": "$", + "symbol": "C_{electrical}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.high-and-medium-voltage semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.emergency-power-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.low-voltage-switchgear semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.low-voltage-installation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.lighting semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.lightning-protection-and-grounding semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.catenary semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.high-and-medium-voltage", + "name": "High and Medium Voltage Systems", + "translation": { + "de": "Hoch- und Mittelspannungsanlagen" + }, + "description": "High and medium voltage electrical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{high-medium-voltage}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.emergency-power-supply", + "name": "Emergency Power Supply Systems", + "translation": { + "de": "Notstromversorgungsanlagen" + }, + "description": "Emergency power supply and backup systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{emergency-power}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.low-voltage-switchgear", + "name": "Low Voltage Switchgear", + "translation": { + "de": "Niederspannungsschaltanlagen" + }, + "description": "Low voltage switchgear and distribution panels.", + "si": "€", + "imperial": "$", + "symbol": "C_{low-voltage-switchgear}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.low-voltage-installation", + "name": "Low Voltage Installation Systems", + "translation": { + "de": "Niederspannungsinstallationsanlagen" + }, + "description": "Low voltage installation and wiring systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{low-voltage-install}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.lighting", + "name": "Lighting Systems", + "translation": { + "de": "Beleuchtungsanlagen" + }, + "description": "Interior and exterior lighting systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{lighting}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.lightning-protection-and-grounding", + "name": "Lightning Protection and Grounding Systems", + "translation": { + "de": "Blitzschutz- und Erdungsanlagen" + }, + "description": "Lightning protection and electrical grounding systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{lightning-protection}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.catenary", + "name": "Catenary Systems", + "translation": { + "de": "Fahrleitungsanlagen" + }, + "description": "Catenary systems for electric transportation.", + "si": "€", + "imperial": "$", + "symbol": "C_{catenary}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.electrical.other", + "name": "Other Electrical Systems", + "translation": { + "de": "Sonstige elektrische Anlagen" + }, + "description": "Other electrical systems and components.", + "si": "€", + "imperial": "$", + "symbol": "C_{electrical-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology", + "name": "Communication, Safety and Information Technology Systems", + "translation": { + "de": "Fernmelde- und sicherheitstechnische Anlagen, Gebäudeautomation" + }, + "description": "Systems for communication, safety, and information technology.", + "si": "€", + "imperial": "$", + "symbol": "C_{comm-safety-it}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.telecommunication semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.search-and-signal semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.time-service semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.electroacoustic semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.audiovisual-media-and-antenna semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.fire-alarm-and-alert semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.data-transmission-networks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.traffic-control semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.telecommunication", + "name": "Telecommunication Systems", + "translation": { + "de": "Telekommunikationsanlagen" + }, + "description": "Telecommunication and communication systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{telecommunication}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.search-and-signal", + "name": "Search and Signal Systems", + "translation": { + "de": "Such- und Signalanlagen" + }, + "description": "Search and signal systems for building safety.", + "si": "€", + "imperial": "$", + "symbol": "C_{search-signal}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.time-service", + "name": "Time Service Systems", + "translation": { + "de": "Zeitdienstanlagen" + }, + "description": "Time service and clock systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{time-service}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.electroacoustic", + "name": "Electroacoustic Systems", + "translation": { + "de": "Elektroakustische Anlagen" + }, + "description": "Public address and sound systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{electroacoustic}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.audiovisual-media-and-antenna", + "name": "Audiovisual Media and Antenna Systems", + "translation": { + "de": "Fernseh- und Antennenanlagen" + }, + "description": "Audiovisual media systems and antenna installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{audiovisual-antenna}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.fire-alarm-and-alert", + "name": "Fire Alarm and Alert Systems", + "translation": { + "de": "Gefahrenmelne- und Alarmanlagen" + }, + "description": "Fire detection, alarm, and alert systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{fire-alarm}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.data-transmission-networks", + "name": "Data Transmission Networks", + "translation": { + "de": "Datenübertragungsnetze" + }, + "description": "Data networks and transmission systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{data-transmission}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.traffic-control", + "name": "Traffic Control Systems", + "translation": { + "de": "Verkehrsleitsysteme" + }, + "description": "Traffic control and management systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{traffic-control}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.communication-safety-and-information-technology.other", + "name": "Other Communication Safety and IT Systems", + "translation": { + "de": "Sonstige fernmelde- und sicherheitstechnische Anlagen" + }, + "description": "Other communication, safety, and IT systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{comm-safety-it-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying", + "name": "Conveying Systems", + "translation": { + "de": "Förderanlagen" + }, + "description": "Systems for vertical and horizontal transportation of people and goods.", + "si": "€", + "imperial": "$", + "symbol": "C_{conveying}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.elevator semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.escalators-and-moving-walkways semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.conveyor semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.transport semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.crane semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.hydraulic semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.elevator", + "name": "Elevator Systems", + "translation": { + "de": "Aufzugsanlagen" + }, + "description": "Elevator systems for vertical transportation.", + "si": "€", + "imperial": "$", + "symbol": "C_{elevator}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.escalators-and-moving-walkways", + "name": "Escalators and Moving Walkways", + "translation": { + "de": "Fahrtreppen und Fahrsteige" + }, + "description": "Escalators and moving walkway systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{escalators-walkways}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.conveyor", + "name": "Conveyor Systems", + "translation": { + "de": "Stetigförderanlagen" + }, + "description": "Continuous conveyor and material handling systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{conveyor}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.transport", + "name": "Transport Systems", + "translation": { + "de": "Transportanlagen" + }, + "description": "General transport and logistics systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{transport}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.crane", + "name": "Crane Systems", + "translation": { + "de": "Krananlagen" + }, + "description": "Crane systems for heavy lifting and material handling.", + "si": "€", + "imperial": "$", + "symbol": "C_{crane}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.hydraulic", + "name": "Hydraulic Systems", + "translation": { + "de": "Hydraulische Anlagen" + }, + "description": "Hydraulic systems for lifting and transport.", + "si": "€", + "imperial": "$", + "symbol": "C_{hydraulic}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.conveying.other", + "name": "Other Conveying Systems", + "translation": { + "de": "Sonstige Förderanlagen" + }, + "description": "Other conveying and transport systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{conveying-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering", + "name": "Usage Specific and Process Engineering Systems", + "translation": { + "de": "Nutzungsspezifische und verfahrenstechnische Anlagen" + }, + "description": "Specialized systems for specific uses and process engineering.", + "si": "€", + "imperial": "$", + "symbol": "C_{usage-process-eng}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.kitchen-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.laundry-cleaning-and-bathing-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.media-supply-medical-and-laboratory-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.fire-extinguishing semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.process-heat-cold-and-air semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.kitchen-technology", + "name": "Kitchen Technology Systems", + "translation": { + "de": "Küchengeräte" + }, + "description": "Commercial and industrial kitchen technology systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{kitchen-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.laundry-cleaning-and-bathing-technology", + "name": "Laundry Cleaning and Bathing Technology Systems", + "translation": { + "de": "Wäscherei-, Reinigungs- und Badeanlagen" + }, + "description": "Systems for laundry, cleaning, and bathing facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{laundry-cleaning-bath}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.media-supply-medical-and-laboratory-technology", + "name": "Media Supply Medical and Laboratory Technology Systems", + "translation": { + "de": "Medienversorgung, Medizin- und Labortechnik" + }, + "description": "Media supply systems and medical/laboratory technology.", + "si": "€", + "imperial": "$", + "symbol": "C_{media-medical-lab}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.fire-extinguishing", + "name": "Fire Extinguishing Systems", + "translation": { + "de": "Löschanlagen" + }, + "description": "Fire suppression and extinguishing systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{fire-extinguishing}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.process-heat-cold-and-air", + "name": "Process Heat Cold and Air Systems", + "translation": { + "de": "Prozesswärme-, -kälte- und -luftanlagen" + }, + "description": "Process systems for heat, cooling, and air handling.", + "si": "€", + "imperial": "$", + "symbol": "C_{process-heat-cold-air}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.usage-specific-and-process-engineering.other", + "name": "Other Usage Specific and Process Engineering Systems", + "translation": { + "de": "Sonstige nutzungsspezifische und verfahrenstechnische Anlagen" + }, + "description": "Other specialized usage and process engineering systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{usage-process-eng-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation", + "name": "Building and Facility Automation", + "translation": { + "de": "Gebäude- und Anlagenautomation" + }, + "description": "Building automation and facility control systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{building-automation}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.automation-devices semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.control-cabinets-automation-hubs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.automation-management semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.cables-lines-and-laying semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.data-transmission-networks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.automation-devices", + "name": "Automation Devices", + "translation": { + "de": "Automationsgeräte" + }, + "description": "Automation devices and control equipment.", + "si": "€", + "imperial": "$", + "symbol": "C_{automation-devices}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.control-cabinets-automation-hubs", + "name": "Control Cabinets Automation Hubs", + "translation": { + "de": "Schaltschränke Automationszentralen" + }, + "description": "Control cabinets and automation hub systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{control-cabinets-hubs}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.automation-management", + "name": "Automation Management", + "translation": { + "de": "Automationsmanagement" + }, + "description": "Software and management systems for automation.", + "si": "€", + "imperial": "$", + "symbol": "C_{automation-management}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.cables-lines-and-laying", + "name": "Cables Lines and Laying Systems", + "translation": { + "de": "Kabel, Leitungen und Verlegesysteme" + }, + "description": "Cables, lines, and installation systems for automation.", + "si": "€", + "imperial": "$", + "symbol": "C_{cables-lines-laying}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.data-transmission-networks", + "name": "Data Transmission Networks", + "translation": { + "de": "Datenübertragungsnetze" + }, + "description": "Data transmission networks for automation systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{automation-data-networks}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.building-and-facility-automation.other", + "name": "Other Building and Facility Automation", + "translation": { + "de": "Sonstige Gebäude- und Anlagenautomation" + }, + "description": "Other building automation and facility control systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{building-automation-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures", + "name": "Other Measures for Technical Systems", + "translation": { + "de": "Sonstige Maßnahmen für technische Anlagen" + }, + "description": "Additional measures and miscellaneous costs for technical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-other-measures}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.construction-site-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.scaffolding semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.safety-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.demolition-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.renovations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.material-disposal semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.additional-measures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.temporary-technical-systems semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.construction-site-facilities", + "name": "Construction Site Facilities for Technical Systems", + "translation": { + "de": "Baustelleneinrichtungen für technische Anlagen" + }, + "description": "Temporary facilities for technical systems installation.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-construction-site-fac}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.scaffolding", + "name": "Scaffolding for Technical Systems", + "translation": { + "de": "Gerüste für technische Anlagen" + }, + "description": "Scaffolding for technical systems installation.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-scaffolding}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.safety-measures", + "name": "Safety Measures for Technical Systems", + "translation": { + "de": "Sicherheitsmaßnahmen für technische Anlagen" + }, + "description": "Safety measures for technical systems installation.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-safety}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.demolition-measures", + "name": "Demolition Measures for Technical Systems", + "translation": { + "de": "Abrissmaßnahmen für technische Anlagen" + }, + "description": "Demolition measures for technical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-demolition}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.renovations", + "name": "Renovations for Technical Systems", + "translation": { + "de": "Instandsetzungen für technische Anlagen" + }, + "description": "Renovation and restoration of technical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-renovations}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.material-disposal", + "name": "Material Disposal for Technical Systems", + "translation": { + "de": "Materialentsorgung für technische Anlagen" + }, + "description": "Material disposal for technical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-material-disposal}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.additional-measures", + "name": "Additional Measures for Technical Systems", + "translation": { + "de": "Zusätzliche Maßnahmen für technische Anlagen" + }, + "description": "Additional measures and special requirements for technical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-additional}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.temporary-technical-systems", + "name": "Temporary Technical Systems", + "translation": { + "de": "Provisorische technische Anlagen" + }, + "description": "Temporary technical systems and provisional installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{temp-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.technical-systems.other-measures.other", + "name": "Other Technical Systems Measures", + "translation": { + "de": "Sonstige Maßnahmen für technische Anlagen" + }, + "description": "Other miscellaneous measures for technical systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-measures-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces", + "name": "Outdoor Facilities and Open Spaces", + "translation": { + "de": "Außenanlagen und Freiräume" + }, + "description": "All costs related to outdoor facilities, landscaping, and open space development.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.installations-in-outdoor-facilities-and-open-spaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.other-measures-for-outdoor-facilities-and-open-spaces )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks", + "name": "Outdoor Earthworks", + "translation": { + "de": "Erdarbeiten Außenanlagen" + }, + "description": "Earthworks and site preparation for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-earth}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.construction semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.enclosure semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.water-management semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.conveyance semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.construction", + "name": "Outdoor Earthworks Construction", + "translation": { + "de": "Erdarbeiten Konstruktion Außenanlagen" + }, + "description": "Construction-related earthworks for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-earth-const}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.enclosure", + "name": "Outdoor Earthworks Enclosure", + "translation": { + "de": "Erdarbeiten Umschließung Außenanlagen" + }, + "description": "Enclosure-related earthworks for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-earth-encl}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.water-management", + "name": "Outdoor Earthworks Water Management", + "translation": { + "de": "Erdarbeiten Wasserhaltung Außenanlagen" + }, + "description": "Water management during outdoor earthworks.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-earth-water}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.conveyance", + "name": "Outdoor Earthworks Conveyance", + "translation": { + "de": "Erdarbeiten Förderung Außenanlagen" + }, + "description": "Material conveyance during outdoor earthworks.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-earth-conv}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.earthworks.other", + "name": "Other Outdoor Earthworks", + "translation": { + "de": "Sonstige Erdarbeiten Außenanlagen" + }, + "description": "Other outdoor earthwork costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-earth-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure", + "name": "Outdoor Foundation Substructure", + "translation": { + "de": "Gründung Unterbau Außenanlagen" + }, + "description": "Foundation and substructure for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-found}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.soil-improvement semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.foundations-and-slabs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.foundation-layers semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.seals-and-linings semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.drains semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.soil-improvement", + "name": "Outdoor Soil Improvement", + "translation": { + "de": "Bodenverbesserung Außenanlagen" + }, + "description": "Soil improvement for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-soil-imp}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.foundations-and-slabs", + "name": "Outdoor Foundations and Slabs", + "translation": { + "de": "Fundamente und Platten Außenanlagen" + }, + "description": "Foundation and slab systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-found-slabs}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.foundation-layers", + "name": "Outdoor Foundation Layers", + "translation": { + "de": "Gründungsschichten Außenanlagen" + }, + "description": "Foundation layers for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-found-layers}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.seals-and-linings", + "name": "Outdoor Seals and Linings", + "translation": { + "de": "Abdichtungen und Auskleidungen Außenanlagen" + }, + "description": "Sealing and lining systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-seals}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.drains", + "name": "Outdoor Drains", + "translation": { + "de": "Drainagen Außenanlagen" + }, + "description": "Drainage systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-drains}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.foundation-substructure.other", + "name": "Other Outdoor Foundation Costs", + "translation": { + "de": "Sonstige Gründungskosten Außenanlagen" + }, + "description": "Other foundation costs for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-found-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses", + "name": "Pavement Surface Courses", + "translation": { + "de": "Beläge Oberbau" + }, + "description": "Pavement and surface course systems for outdoor areas.", + "si": "€", + "imperial": "$", + "symbol": "C_{pavement}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.paths semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.roads semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.squares-yards-terraces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.parking-spaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.sports-field-areas semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.playground-areas semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.track-systems semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.airfield-areas semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.paths", + "name": "Paths", + "translation": { + "de": "Wege" + }, + "description": "Walkway and pathway systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{paths}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.roads", + "name": "Roads", + "translation": { + "de": "Straßen" + }, + "description": "Road and street pavement systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{roads}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.squares-yards-terraces", + "name": "Squares Yards Terraces", + "translation": { + "de": "Plätze Höfe Terrassen" + }, + "description": "Square, courtyard, and terrace surfaces.", + "si": "€", + "imperial": "$", + "symbol": "C_{squares}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.parking-spaces", + "name": "Parking Spaces", + "translation": { + "de": "Stellplätze" + }, + "description": "Parking area and surface systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{parking}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.sports-field-areas", + "name": "Sports Field Areas", + "translation": { + "de": "Sportplatzflächen" + }, + "description": "Sports field and recreational area surfaces.", + "si": "€", + "imperial": "$", + "symbol": "C_{sports-fields}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.playground-areas", + "name": "Playground Areas", + "translation": { + "de": "Spielplatzflächen" + }, + "description": "Playground and children's area surfaces.", + "si": "€", + "imperial": "$", + "symbol": "C_{playground}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.track-systems", + "name": "Track Systems", + "translation": { + "de": "Gleisanlagen" + }, + "description": "Railway and track system infrastructure.", + "si": "€", + "imperial": "$", + "symbol": "C_{tracks}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.airfield-areas", + "name": "Airfield Areas", + "translation": { + "de": "Flugplatzflächen" + }, + "description": "Airport and airfield surface systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{airfield}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.pavement-surface-courses.other", + "name": "Other Pavement Areas", + "translation": { + "de": "Sonstige Belagsflächen" + }, + "description": "Other pavement and surface area costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{pavement-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components", + "name": "Outdoor Structural Components", + "translation": { + "de": "Baukonstruktionen Außenanlagen" + }, + "description": "Structural components and constructions for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-struct}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.fences semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.protective-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.wall-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.ramps-stairs-stands semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.roofs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.bridges semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.canal-and-shaft-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.water-basins semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.fences", + "name": "Fences", + "translation": { + "de": "Zäune" + }, + "description": "Fencing systems and boundary structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{fences}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.protective-structures", + "name": "Protective Structures", + "translation": { + "de": "Schutzbauten" + }, + "description": "Protective structures and safety installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{protective}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.wall-structures", + "name": "Wall Structures", + "translation": { + "de": "Wandkonstruktionen" + }, + "description": "Wall structures and retaining systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{walls-outdoor}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.ramps-stairs-stands", + "name": "Ramps Stairs Stands", + "translation": { + "de": "Rampen Treppen Tribünen" + }, + "description": "Ramps, stairs, and grandstand structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{ramps-stairs}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.roofs", + "name": "Outdoor Roofs", + "translation": { + "de": "Dächer Außenanlagen" + }, + "description": "Roof structures for outdoor facilities and shelters.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-roofs}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.bridges", + "name": "Bridges", + "translation": { + "de": "Brücken" + }, + "description": "Bridge structures and crossings.", + "si": "€", + "imperial": "$", + "symbol": "C_{bridges}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.canal-and-shaft-structures", + "name": "Canal and Shaft Structures", + "translation": { + "de": "Kanal- und Schachtbauwerke" + }, + "description": "Canal, shaft, and underground structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{canals-shafts}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.water-basins", + "name": "Water Basins", + "translation": { + "de": "Wasserbecken" + }, + "description": "Water basins, ponds, and water feature structures.", + "si": "€", + "imperial": "$", + "symbol": "C_{water-basins}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.structural-components.other", + "name": "Other Outdoor Structural Components", + "translation": { + "de": "Sonstige Baukonstruktionen Außenanlagen" + }, + "description": "Other structural components for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-struct-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems", + "name": "Outdoor Technical Systems", + "translation": { + "de": "Technische Anlagen Außenanlagen" + }, + "description": "Technical systems and installations for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-tech}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.wastewater semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.water semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.gas-and-liquid semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.heating-supply semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.room-air-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.electrical semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.communication-safety-and-information-technology-automation semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.usage-specific semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.wastewater", + "name": "Outdoor Wastewater Systems", + "translation": { + "de": "Abwasseranlagen Außenanlagen" + }, + "description": "Wastewater systems and drainage for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-wastewater}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.water", + "name": "Outdoor Water Systems", + "translation": { + "de": "Wasseranlagen Außenanlagen" + }, + "description": "Water supply and distribution systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-water}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.gas-and-liquid", + "name": "Outdoor Gas and Liquid Systems", + "translation": { + "de": "Gas- und Flüssiganlagen Außenanlagen" + }, + "description": "Gas and liquid supply systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-gas-liquid}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.heating-supply", + "name": "Outdoor Heating Supply Systems", + "translation": { + "de": "Wärmeversorgungsanlagen Außenanlagen" + }, + "description": "Heating and thermal systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-heating}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.room-air-technology", + "name": "Outdoor Room Air Technology Systems", + "translation": { + "de": "Raumlufttechnische Anlagen Außenanlagen" + }, + "description": "Air technology systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-air-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.electrical", + "name": "Outdoor Electrical Systems", + "translation": { + "de": "Elektrische Anlagen Außenanlagen" + }, + "description": "Electrical systems and installations for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-electrical}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.communication-safety-and-information-technology-automation", + "name": "Outdoor Communication Safety and Information Technology Automation", + "translation": { + "de": "Fernmelde-, sicherheitstechnische und Gebäudeautomationsanlagen Außenanlagen" + }, + "description": "Communication, safety, information technology and automation systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-comm-safety-it-automation}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.usage-specific", + "name": "Outdoor Usage Specific Systems", + "translation": { + "de": "Nutzungsspezifische Anlagen Außenanlagen" + }, + "description": "Usage-specific technical systems for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-usage-specific}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.outdoor-facilities-and-open-spaces.technical-systems.other", + "name": "Other Outdoor Technical Systems", + "translation": { + "de": "Sonstige technische Anlagen Außenanlagen" + }, + "description": "Other technical systems and installations for outdoor facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{outdoor-tech-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks", + "name": "Equipment and Artworks", + "translation": { + "de": "Ausstattung und Kunstwerke" + }, + "description": "Building equipment and artistic installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{equip}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.general-equipment semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.special-equipment semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.information-technology-equipment semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.general-equipment", + "name": "General Equipment", + "translation": { + "de": "Allgemeine Ausstattung" + }, + "description": "General building equipment and furnishings.", + "si": "€", + "imperial": "$", + "symbol": "C_{gen-equip}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.special-equipment", + "name": "Special Equipment", + "translation": { + "de": "Besondere Ausstattung" + }, + "description": "Specialized equipment for specific building functions.", + "si": "€", + "imperial": "$", + "symbol": "C_{spec-equip}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.information-technology-equipment", + "name": "Information Technology Equipment", + "translation": { + "de": "Informationstechnische Ausstattung" + }, + "description": "IT equipment and systems.", + "si": "€", + "imperial": "$", + "symbol": "C_{it-equip}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment", + "name": "Artistic Equipment", + "translation": { + "de": "Künstlerische Ausstattung" + }, + "description": "Artistic installations and decorative elements.", + "si": "€", + "imperial": "$", + "symbol": "C_{art}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.art-objects semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.artistic-design-of-the-building semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.artistic-design-of-outdoor-facilities-and-open-spaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.art-objects", + "name": "Art Objects", + "translation": { + "de": "Kunstobjekte" + }, + "description": "Stand-alone art objects and sculptures.", + "si": "€", + "imperial": "$", + "symbol": "C_{art-obj}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.artistic-design-of-the-building", + "name": "Artistic Design of Building", + "translation": { + "de": "Künstlerische Gestaltung des Gebäudes" + }, + "description": "Artistic design elements integrated into the building.", + "si": "€", + "imperial": "$", + "symbol": "C_{art-build}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.artistic-design-of-outdoor-facilities-and-open-spaces", + "name": "Artistic Design of Outdoor Facilities", + "translation": { + "de": "Künstlerische Gestaltung der Außenanlagen" + }, + "description": "Artistic design elements in outdoor spaces.", + "si": "€", + "imperial": "$", + "symbol": "C_{art-outdoor}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.artistic-equipment.other", + "name": "Other Artistic Equipment", + "translation": { + "de": "Sonstige künstlerische Ausstattung" + }, + "description": "Other artistic installations and equipment.", + "si": "€", + "imperial": "$", + "symbol": "C_{art-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.equipment-and-artworks.other", + "name": "Other Equipment", + "translation": { + "de": "Sonstige Ausstattung" + }, + "description": "Other equipment and installations.", + "si": "€", + "imperial": "$", + "symbol": "C_{equip-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary", + "name": "Construction Ancillary Costs", + "translation": { + "de": "Baunebenkosten" + }, + "description": "All ancillary costs related to construction including planning and management.", + "si": "€", + "imperial": "$", + "symbol": "C_{anc}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks", + "name": "Client Tasks", + "translation": { + "de": "Bauherrschaftsaufgaben" + }, + "description": "Tasks and costs related to client responsibilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{client}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.project-management semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.needs-assessment semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.project-control semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.safety-and-health-protection-coordination semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.award-procedures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.project-management", + "name": "Project Management", + "translation": { + "de": "Projektmanagement" + }, + "description": "Project management costs and fees.", + "si": "€", + "imperial": "$", + "symbol": "C_{pm}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.needs-assessment", + "name": "Needs Assessment", + "translation": { + "de": "Bedarfsplanung" + }, + "description": "Project needs assessment and feasibility studies.", + "si": "€", + "imperial": "$", + "symbol": "C_{needs-assessment}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.project-control", + "name": "Project Control", + "translation": { + "de": "Projektsteuerung" + }, + "description": "Project control and coordination services.", + "si": "€", + "imperial": "$", + "symbol": "C_{project-control}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.safety-and-health-protection-coordination", + "name": "Safety and Health Protection Coordination", + "translation": { + "de": "Koordination Sicherheit und Gesundheitsschutz" + }, + "description": "Safety and health protection coordination services.", + "si": "€", + "imperial": "$", + "symbol": "C_{safety-health-coord}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.award-procedures", + "name": "Award Procedures", + "translation": { + "de": "Vergabeverfahren" + }, + "description": "Tender and award procedure costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{award-procedures}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.other", + "name": "Other Client Tasks", + "translation": { + "de": "Sonstige Bauherrenaufgaben" + }, + "description": "Other client tasks and responsibilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{client-tasks-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning", + "name": "Preparation of Object Planning", + "translation": { + "de": "Vorbereitung der Objektplanung" + }, + "description": "Planning preparation services and preliminary studies.", + "si": "€", + "imperial": "$", + "symbol": "C_{prep-planning}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.investigations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.valuations semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.urban-planning-services semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.landscape-planning-services semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.competitions semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.investigations", + "name": "Investigations", + "translation": { + "de": "Untersuchungen" + }, + "description": "Site investigations and technical studies.", + "si": "€", + "imperial": "$", + "symbol": "C_{investigations}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.valuations", + "name": "Valuations", + "translation": { + "de": "Bewertungen" + }, + "description": "Property and asset valuations.", + "si": "€", + "imperial": "$", + "symbol": "C_{valuations}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.urban-planning-services", + "name": "Urban Planning Services", + "translation": { + "de": "Städtebauliche Leistungen" + }, + "description": "Urban and regional planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{urban-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.landscape-planning-services", + "name": "Landscape Planning Services", + "translation": { + "de": "Landschaftsplanerische Leistungen" + }, + "description": "Landscape and environmental planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{landscape-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.competitions", + "name": "Planning Competitions", + "translation": { + "de": "Wettbewerbe" + }, + "description": "Architectural and planning competition costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{competitions}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.preparation-of-object-planning.other", + "name": "Other Planning Preparation", + "translation": { + "de": "Sonstige Vorbereitungen der Objektplanung" + }, + "description": "Other planning preparation services.", + "si": "€", + "imperial": "$", + "symbol": "C_{prep-planning-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning", + "name": "Object Planning", + "translation": { + "de": "Objektplanung" + }, + "description": "Object-specific planning and design services.", + "si": "€", + "imperial": "$", + "symbol": "C_{object-planning}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.buildings-and-interiors semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.open-spaces semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.civil-engineering-structures semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.traffic-facilities semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.buildings-and-interiors", + "name": "Buildings and Interiors Planning", + "translation": { + "de": "Gebäude und Innenräume" + }, + "description": "Building and interior design planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{buildings-interiors-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.open-spaces", + "name": "Open Spaces Planning", + "translation": { + "de": "Freianlagen" + }, + "description": "Open spaces and outdoor area planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{open-spaces-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.civil-engineering-structures", + "name": "Civil Engineering Structures Planning", + "translation": { + "de": "Ingenieurbauwerke" + }, + "description": "Civil engineering and infrastructure planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{civil-eng-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.traffic-facilities", + "name": "Traffic Facilities Planning", + "translation": { + "de": "Verkehrsanlagen" + }, + "description": "Traffic and transportation facility planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{traffic-facilities-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.object-planning.other", + "name": "Other Object Planning", + "translation": { + "de": "Sonstige Objektplanung" + }, + "description": "Other object-specific planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{object-planning-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning", + "name": "Specialist Planning", + "translation": { + "de": "Fachplanung" + }, + "description": "Specialized technical planning and consulting services.", + "si": "€", + "imperial": "$", + "symbol": "C_{specialist-planning}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.structural-planning semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.technical-equipment semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.building-physics semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.geotechnics semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.engineering-surveying semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.lighting-technology-daylight-technology semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.fire-protection semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.contaminated-sites-explosive-ordnance-cultural-heritage-finds semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.structural-planning", + "name": "Structural Planning", + "translation": { + "de": "Tragwerksplanung" + }, + "description": "Structural engineering and design services.", + "si": "€", + "imperial": "$", + "symbol": "C_{structural-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.technical-equipment", + "name": "Technical Equipment Planning", + "translation": { + "de": "Technische Ausrüstung" + }, + "description": "Technical equipment and systems planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{tech-equipment-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.building-physics", + "name": "Building Physics", + "translation": { + "de": "Bauphysik" + }, + "description": "Building physics and performance consulting services.", + "si": "€", + "imperial": "$", + "symbol": "C_{building-physics}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.geotechnics", + "name": "Geotechnics", + "translation": { + "de": "Geotechnik" + }, + "description": "Geotechnical engineering and soil analysis services.", + "si": "€", + "imperial": "$", + "symbol": "C_{geotechnics}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.engineering-surveying", + "name": "Engineering Surveying", + "translation": { + "de": "Ingenieurvermessung" + }, + "description": "Engineering surveying and measurement services.", + "si": "€", + "imperial": "$", + "symbol": "C_{eng-surveying}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.lighting-technology-daylight-technology", + "name": "Lighting Technology Daylight Technology", + "translation": { + "de": "Lichttechnik, Tageslichtunterstand" + }, + "description": "Lighting design and daylight technology services.", + "si": "€", + "imperial": "$", + "symbol": "C_{lighting-daylight-tech}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.fire-protection", + "name": "Fire Protection Planning", + "translation": { + "de": "Brandschutz" + }, + "description": "Fire protection and safety planning services.", + "si": "€", + "imperial": "$", + "symbol": "C_{fire-protection-planning}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.contaminated-sites-explosive-ordnance-cultural-heritage-finds", + "name": "Contaminated Sites Explosive Ordnance Cultural Heritage Finds", + "translation": { + "de": "Altlasten, Kampfmittel, Kulturdenkmäler" + }, + "description": "Environmental contamination, ordnance, and cultural heritage services.", + "si": "€", + "imperial": "$", + "symbol": "C_{contam-ordnance-heritage}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.specialist-planning.other", + "name": "Other Specialist Planning", + "translation": { + "de": "Sonstige Fachplanung" + }, + "description": "Other specialized planning and consulting services.", + "si": "€", + "imperial": "$", + "symbol": "C_{specialist-planning-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services", + "name": "Artistic Services", + "translation": { + "de": "Künstlerische Leistungen" + }, + "description": "Artistic and creative services for construction projects.", + "si": "€", + "imperial": "$", + "symbol": "C_{artistic-services}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services.art-competitions semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services.fees semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services.art-competitions", + "name": "Art Competitions", + "translation": { + "de": "Kunstwettbewerbe" + }, + "description": "Art competitions and artistic concept development costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{art-competitions}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services.fees", + "name": "Artistic Services Fees", + "translation": { + "de": "Honorare" + }, + "description": "Fees for artistic services and consultations.", + "si": "€", + "imperial": "$", + "symbol": "C_{artistic-fees}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.artistic-services.other", + "name": "Other Artistic Services", + "translation": { + "de": "Sonstige künstlerische Leistungen" + }, + "description": "Other artistic and creative services.", + "si": "€", + "imperial": "$", + "symbol": "C_{artistic-services-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general", + "name": "General Construction Ancillary Costs", + "translation": { + "de": "Allgemeine Baunebenkosten" + }, + "description": "General construction ancillary costs and fees.", + "si": "€", + "imperial": "$", + "symbol": "C_{general-ancillary}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.expertise-and-consulting semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.inspections-approvals-acceptance semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.operating-costs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.sampling-costs semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.operating-costs-after-acceptance semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.insurance semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.expertise-and-consulting", + "name": "Expertise and Consulting", + "translation": { + "de": "Sachverständige und Beratung" + }, + "description": "Expert opinions and consulting services.", + "si": "€", + "imperial": "$", + "symbol": "C_{expertise-consulting}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.inspections-approvals-acceptance", + "name": "Inspections Approvals Acceptance", + "translation": { + "de": "Prüfungen, Genehmigungen, Abnahmen" + }, + "description": "Inspection, approval, and acceptance procedures.", + "si": "€", + "imperial": "$", + "symbol": "C_{inspections-approvals}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.operating-costs", + "name": "Construction Operating Costs", + "translation": { + "de": "Betriebskosten Bau" + }, + "description": "Operating costs during construction phase.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-operating}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.sampling-costs", + "name": "Sampling Costs", + "translation": { + "de": "Probenahmekosten" + }, + "description": "Material and quality testing costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{sampling-costs}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.operating-costs-after-acceptance", + "name": "Operating Costs After Acceptance", + "translation": { + "de": "Betriebskosten nach Abnahme" + }, + "description": "Operating costs after project acceptance and handover.", + "si": "€", + "imperial": "$", + "symbol": "C_{operating-post-acceptance}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.insurance", + "name": "Construction Insurance", + "translation": { + "de": "Versicherungen" + }, + "description": "Construction and project insurance costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{construction-insurance}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.general.other", + "name": "Other General Construction Ancillary", + "translation": { + "de": "Sonstige allgemeine Baunebenkosten" + }, + "description": "Other general construction ancillary costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{general-ancillary-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.other", + "name": "Other Construction Ancillary Costs", + "translation": { + "de": "Sonstige Baunebenkosten" + }, + "description": "Other miscellaneous construction ancillary costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{other-ancillary}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.other.documentation-of-existing-conditions semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.other.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.other.documentation-of-existing-conditions", + "name": "Documentation of Existing Conditions", + "translation": { + "de": "Dokumentation des Bestands" + }, + "description": "Documentation and survey of existing conditions.", + "si": "€", + "imperial": "$", + "symbol": "C_{existing-conditions-doc}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.other.other", + "name": "Other Miscellaneous Ancillary Costs", + "translation": { + "de": "Sonstige sonstige Baunebenkosten" + }, + "description": "Other miscellaneous ancillary costs not elsewhere classified.", + "si": "€", + "imperial": "$", + "symbol": "C_{misc-ancillary-other}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use", + "name": "Operating Costs Ongoing Use", + "translation": { + "de": "Nutzungskosten laufender Betrieb" + }, + "description": "Ongoing operational costs during building use phase.", + "si": "€", + "imperial": "$", + "symbol": "C_{op}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.water-wastewater-fees semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.waste-disposal semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.security-and-maintenance semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.common-facilities )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management", + "name": "Operational Management Costs", + "translation": { + "de": "Betriebsführungskosten" + }, + "description": "Costs for operational management and administration.", + "si": "€", + "imperial": "$", + "symbol": "C_{op-mgmt}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management.property-management semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management.caretaker semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management.insurance )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management.property-management", + "name": "Property Management", + "translation": { + "de": "Hausverwaltung" + }, + "description": "Property management and administration costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{prop-mgmt}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management.caretaker", + "name": "Caretaker", + "translation": { + "de": "Hausmeister" + }, + "description": "Caretaker and maintenance personnel costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{caretaker}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.operational-management.insurance", + "name": "Insurance", + "translation": { + "de": "Versicherung" + }, + "description": "Building insurance costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{insurance}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy", + "name": "Energy Costs", + "translation": { + "de": "Energiekosten" + }, + "description": "All energy-related operating costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{energy}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy.electricity semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy.heating semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy.hot-water )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy.electricity", + "name": "Electricity", + "translation": { + "de": "Strom" + }, + "description": "Electrical energy costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{electricity}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy.heating", + "name": "Heating", + "translation": { + "de": "Heizung" + }, + "description": "Heating energy costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{heat-energy}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.energy.hot-water", + "name": "Hot Water", + "translation": { + "de": "Warmwasser" + }, + "description": "Hot water heating costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{hot-water}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.water-wastewater-fees", + "name": "Water Costs Wastewater Fees", + "translation": { + "de": "Wasserkosten Abwassergebühren" + }, + "description": "Water supply costs and wastewater disposal fees.", + "si": "€", + "imperial": "$", + "symbol": "C_{water-fees}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.waste-disposal", + "name": "Waste Disposal", + "translation": { + "de": "Abfallentsorgung" + }, + "description": "Waste disposal and management costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{waste-op}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.security-and-maintenance", + "name": "Security and Maintenance Costs", + "translation": { + "de": "Sicherheits- und Wartungskosten" + }, + "description": "Security and routine maintenance costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{sec-maint}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.common-facilities", + "name": "Costs for Common Facilities", + "translation": { + "de": "Kosten für Gemeinschaftseinrichtungen" + }, + "description": "Operating costs for shared building facilities.", + "si": "€", + "imperial": "$", + "symbol": "C_{common}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.common-facilities.elevators semio.costs.global-life-cycle.life-cycle.investment-construction-phase.construction-ancillary.client-tasks.other )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.operating-ongoing-use.common-facilities.elevators", + "name": "Elevators Operating Costs", + "translation": { + "de": "Aufzüge Betriebskosten" + }, + "description": "Operating costs for elevators.", + "si": "€", + "imperial": "$", + "symbol": "C_{elev-op}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization", + "name": "Maintenance and Modernization Costs", + "translation": { + "de": "Instandhaltungs- und Modernisierungskosten" + }, + "description": "Costs for maintenance, repair, and modernization of building components.", + "si": "€", + "imperial": "$", + "symbol": "C_{maint}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.regular-maintenance semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.modernization )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.regular-maintenance", + "name": "Regular Maintenance", + "translation": { + "de": "Regelmäßige Wartung" + }, + "description": "Regular maintenance and servicing costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{reg-maint}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.regular-maintenance.elevators semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.regular-maintenance.heating-systems )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.regular-maintenance.elevators", + "name": "Elevators Maintenance", + "translation": { + "de": "Aufzüge Wartung" + }, + "description": "Regular elevator maintenance costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{elev-maint}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.regular-maintenance.heating-systems", + "name": "Heating Systems Maintenance", + "translation": { + "de": "Heizungsanlagen Wartung" + }, + "description": "Regular heating system maintenance costs.", + "si": "€", + "imperial": "$", + "symbol": "C_{heat-maint}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components", + "name": "Replacement of Components", + "translation": { + "de": "Austausch von Bauteilen" + }, + "description": "Costs for replacing building components at end of service life.", + "si": "€", + "imperial": "$", + "symbol": "C_{replace}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components.windows semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components.facade semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components.roofs )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components.windows", + "name": "Windows Replacement", + "translation": { + "de": "Fensteraustausch" + }, + "description": "Costs for replacing windows.", + "si": "€", + "imperial": "$", + "symbol": "C_{window-replace}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components.facade", + "name": "Facade Replacement", + "translation": { + "de": "Fassadenaustausch" + }, + "description": "Costs for facade renovation and replacement.", + "si": "€", + "imperial": "$", + "symbol": "C_{facade-replace}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.replacement-of-components.roofs", + "name": "Roofs Replacement", + "translation": { + "de": "Dachaustausch" + }, + "description": "Costs for roof renovation and replacement.", + "si": "€", + "imperial": "$", + "symbol": "C_{roof-replace}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.modernization", + "name": "Modernization", + "translation": { + "de": "Modernisierung" + }, + "description": "Costs for building modernization and upgrades.", + "si": "€", + "imperial": "$", + "symbol": "C_{modern}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.modernization.energy-rehabilitation semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.modernization.barrier-free-conversion )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.modernization.energy-rehabilitation", + "name": "Energy Rehabilitation", + "translation": { + "de": "Energetische Sanierung" + }, + "description": "Costs for energy efficiency improvements and rehabilitation.", + "si": "€", + "imperial": "$", + "symbol": "C_{energy-rehab}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.maintenance-and-modernization.modernization.barrier-free-conversion", + "name": "Barrier Free Conversion", + "translation": { + "de": "Barrierefreier Umbau" + }, + "description": "Costs for accessibility improvements and barrier-free conversion.", + "si": "€", + "imperial": "$", + "symbol": "C_{barrier-free}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal", + "name": "Dismantling and Disposal Costs", + "translation": { + "de": "Abbruch- und Entsorgungskosten" + }, + "description": "End-of-life costs for building dismantling and disposal.", + "si": "€", + "imperial": "$", + "symbol": "C_{disposal}", + "formula": "Add ( semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal.demolition semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal.disposal-of-contaminated-materials semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal.renaturation-or-reuse-of-the-land )", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal.demolition", + "name": "Demolition Costs", + "translation": { + "de": "Abrisskosten" + }, + "description": "Costs for building demolition and dismantling.", + "si": "€", + "imperial": "$", + "symbol": "C_{demolition}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal.disposal-of-contaminated-materials", + "name": "Disposal of Contaminated Materials", + "translation": { + "de": "Entsorgung kontaminierter Materialien" + }, + "description": "Specialized disposal costs for contaminated building materials.", + "si": "€", + "imperial": "$", + "symbol": "C_{contam-disposal}", + "format": "#,##0.##" + }, + { + "key": "semio.costs.global-life-cycle.life-cycle.dismantling-and-disposal.renaturation-or-reuse-of-the-land", + "name": "Renaturation or Reuse of Land", + "translation": { + "de": "Renaturierung oder Wiedernutzung des Grundstücks" + }, + "description": "Costs for land restoration or preparation for reuse.", + "si": "€", + "imperial": "$", + "symbol": "C_{renaturation}", + "format": "#,##0.##" + } + ] +} diff --git a/assets/lists/qualities_gwp.json b/assets/lists/qualities_gwp.json new file mode 100644 index 000000000..29fded31f --- /dev/null +++ b/assets/lists/qualities_gwp.json @@ -0,0 +1,130 @@ +{ + "qualities": [ + { + "key": "semio.gwp.life-cycle", + "name": "Life Cycle Global Warming Potential", + "translation": { + "de": "Treibhauspotenzial des Lebenszyklus" + }, + "description": "The life cycle global warming potential is the total greenhouse gas emissions associated with the life cycle of the whole building.", + "si": "kgCO2e", + "imperial": "lbCO2e", + "symbol": "GWP_{life-cycle}", + "formula": "Add ( Multiply ( semio.gwp.energy semio.time.life ) semio.gwp.construction )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.energy", + "name": "Energy Global Warming Potential", + "translation": { + "de": "Treibhauspotenzial der Energie" + }, + "description": "The energy global warming potential is the total greenhouse gas emissions associated with the energy consumption of the whole building over a year.", + "si": "kgCO2e/a", + "imperial": "lbCO2e/yr", + "symbol": "GWP_{energy}", + "formula": "Add ( semio.gwp.heating semio.gwp.electricity semio.gwp.ventilation )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.heating", + "name": "Heating Global Warming Potential", + "translation": { + "de": "Heizung Treibhauspotenzial" + }, + "description": "The heating global warming potential is the product of final heating energy demand and heating global warming potential factor.", + "si": "kgCO2e/a", + "imperial": "lbCO2e/yr", + "symbol": "GWP_h", + "formula": "Multiply ( semio.energy.demand.final.heating semio.factor.gwp.heating )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.gwp.heating", + "name": "Heating Global Warming Potential Factor", + "translation": { + "de": "Wärme Treibhauspotenzial-Faktor" + }, + "description": "The global warming potential factor per unit of heating energy.", + "si": "kgCO2e/kWh", + "imperial": "kgCO2e/kWh", + "symbol": "f_{h,GWP}", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.electricity", + "name": "Electricity Global Warming Potential", + "translation": { + "de": "Strom Treibhauspotenzial" + }, + "description": "The electricity global warming potential is the product of electricity energy demand and electricity global warming potential factor per year.", + "si": "kgCO2e/a", + "imperial": "lbCO2e/yr", + "symbol": "GWP_e", + "formula": "Multiply ( semio.energy.demand.electricity semio.factor.gwp.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.factor.gwp.electricity", + "name": "Electricity Global Warming Potential Factor", + "translation": { + "de": "Strom Treibhausfaktor" + }, + "description": "The global warming potential factor per unit of electricity energy.", + "si": "kgCO2e/kWh", + "imperial": "kgCO2e/kWh", + "symbol": "f_{e,GWP}", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.ventilation", + "name": "Ventilation Global Warming Potential", + "translation": { + "de": "Lüftungs-Treibhauspotenzial" + }, + "description": "The ventilation global warming potential is the product of ventilation energy demand and electricity global warming potential factor for one year.", + "si": "kgCO2e/a", + "imperial": "lbCO2e/yr", + "symbol": "GWP_v", + "formula": "Multiply ( semio.energy.demand.final.ventilation semio.factor.gwp.electricity )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.construction", + "name": "Construction Global Warming Potential", + "translation": { + "de": "Treibhauspotenzial aller Bauteile" + }, + "description": "The construction global warming potential is the total greenhouse gas emissions associated with the construction of the whole building.", + "si": "kgCO2e", + "imperial": "lbCO2e", + "symbol": "GWP_{construction}", + "formula": "Add ( semio.gwp.construction.building semio.gwp.construction.technical-equipment )", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.construction.building", + "name": "Building Construction Global Warming Potential", + "translation": { + "de": "Treibhauspotenzial der Konstruktion" + }, + "description": "The building construction global warming potential is the total greenhouse gas emissions associated with the construction of the building.", + "si": "kgCO2e", + "imperial": "lbCO2e", + "symbol": "GWP_{construction,building}", + "format": "#,##0.##" + }, + { + "key": "semio.gwp.construction.technical-equipment", + "name": "Technical Equipment Global Warming Potential", + "translation": { + "de": "Treibhauspotenzial der technischen Ausstattung" + }, + "description": "The technical equipment global warming potential is the total greenhouse gas emissions associated with the technical equipment of the building.", + "si": "kgCO2e", + "imperial": "lbCO2e", + "symbol": "GWP_{construction,technical}", + "format": "#,##0.##" + } + ] +} diff --git a/assets/lists/qualities_original.json b/assets/lists/qualities_original.json new file mode 100644 index 000000000..317ce52fe --- /dev/null +++ b/assets/lists/qualities_original.json @@ -0,0 +1,2515 @@ +{ + "semio": { + "TYPE": "VENDOR", + "area": { + "TYPE": "TAXONOMY", + "UNITS": ["m²", "ft²"], + "SYMBOL": "$A$", + "NAME": "Floor Area", + "TRANSLATIONS": { + "DE": "Grundfläche" + }, + "gfa": { + "NAME": "Gross Floor Area", + "SYMBOL": "$A_{gfa}$", + "TRANSLATIONS": { + "DE": "Brutto-Grundfläche" + }, + "nfa": { + "NAME": "Net Floor Area", + "SYMBOL": "$A_{nfa}$", + "TRANSLATIONS": { + "DE": "Netto-Raumfläche" + }, + "usbl": { + "NAME": "Usable Floor Area", + "SYMBOL": "$A_{usbl}$", + "TRANSLATIONS": { + "DE": "Nutzungsfläche" + }, + "liv-stay": { + "NAME": "Living And Staying Floor Area", + "SYMBOL": "$A_{liv}$", + "TRANSLATIONS": { + "DE": "Wohnen und Aufenthalt" + }, + "liv-rm": { + "NAME": "Living Room Floor Area", + "SYMBOL": "$A_{liv-rm}$", + "TRANSLATIONS": { + "DE": "Wohnzimmerfläche" + }, + "liv": { + "NAME": "Living Floor Area", + "SYMBOL": "$A_{liv}$", + "TRANSLATIONS": { + "DE": "Wohnfläche" + } + }, + "kit": { + "NAME": "Kitchen Floor Area", + "SYMBOL": "$A_{kit}$", + "TRANSLATIONS": { + "DE": "Küchenfläche" + } + }, + "san": { + "NAME": "Sanitary Floor Area", + "SYMBOL": "$A_{san}$", + "TRANSLATIONS": { + "DE": "Sanitärfläche" + } + }, + "circ": { + "NAME": "Circulation Floor Area", + "SYMBOL": "$A_{circ}$", + "TRANSLATIONS": { + "DE": "Verkehrsfläche" + } + }, + "out-seat": { + "NAME": "Outdoor Seating Floor Area", + "SYMBOL": "$A_{out-seat}$", + "TRANSLATIONS": { + "DE": "Freisitzfläche" + } + }, + "stor": { + "NAME": "Storage Floor Area", + "SYMBOL": "$A_{stor}$", + "TRANSLATIONS": { + "DE": "Abstellraumfläche" + } + } + }, + "com-rm": { + "NAME": "Common Room Floor Area", + "SYMBOL": "$A_{com-rm}$", + "TRANSLATIONS": { + "DE": "Gemeinschaftsraumfläche" + } + }, + "brk-rm": { + "NAME": "Break Room Floor Area", + "SYMBOL": "$A_{brk-rm}$", + "TRANSLATIONS": { + "DE": "Pausenraumfläche" + } + }, + "wait-rm": { + "NAME": "Waiting Room Floor Area", + "SYMBOL": "$A_{wait-rm}$", + "TRANSLATIONS": { + "DE": "Warteraumfläche" + } + }, + "din-rm": { + "NAME": "Dining Room Floor Area", + "SYMBOL": "$A_{din-rm}$", + "TRANSLATIONS": { + "DE": "Speiseraumfläche" + } + }, + "det-rm": { + "NAME": "Detention Room Floor Area", + "SYMBOL": "$A_{det-rm}$", + "TRANSLATIONS": { + "DE": "Haftraumfläche" + } + } + }, + "ofc-work": { + "NAME": "Office Work Floor Area", + "SYMBOL": "$A_{ofc}$", + "TRANSLATIONS": { + "DE": "Büroarbeit" + }, + "ofc-rm": { + "NAME": "Office Room Floor Area", + "SYMBOL": "$A_{ofc-rm}$", + "TRANSLATIONS": { + "DE": "Büroraumfläche" + } + }, + "open-ofc": { + "NAME": "Open Plan Office Floor Area", + "SYMBOL": "$A_{open-ofc}$", + "TRANSLATIONS": { + "DE": "Großraumbürofläche" + } + }, + "meet-rm": { + "NAME": "Meeting Room Floor Area", + "SYMBOL": "$A_{meet-rm}$", + "TRANSLATIONS": { + "DE": "Besprechungsraumfläche" + } + }, + "des-rm": { + "NAME": "Design Room Floor Area", + "SYMBOL": "$A_{des-rm}$", + "TRANSLATIONS": { + "DE": "Konstruktionsraumfläche" + } + }, + "cnt-rm": { + "NAME": "Counter Room Floor Area", + "SYMBOL": "$A_{cnt-rm}$", + "TRANSLATIONS": { + "DE": "Schalterraumfläche" + } + }, + "ctrl-rm": { + "NAME": "Control Room Floor Area", + "SYMBOL": "$A_{ctrl-rm}$", + "TRANSLATIONS": { + "DE": "Kontrollraumfläche" + } + }, + "sup-rm": { + "NAME": "Supervision Room Floor Area", + "SYMBOL": "$A_{sup-rm}$", + "TRANSLATIONS": { + "DE": "Aufsichtsraumfläche" + } + }, + "ofc-tech-rm": { + "NAME": "Office Technology Room Floor Area", + "SYMBOL": "$A_{ofc-tech}$", + "TRANSLATIONS": { + "DE": "Bürotechnikraumfläche" + } + }, + "other": { + "NAME": "Other Office Work Floor Area", + "SYMBOL": "$A_{other-ofc}$", + "TRANSLATIONS": { + "DE": "Sonstige Büroarbeitsfläche" + } + } + }, + "prod-exp": { + "NAME": "Production Experiments Work Floor Area", + "SYMBOL": "$A_{prod}$", + "TRANSLATIONS": { + "DE": "Produktion, Hand- und Maschinenarbeit, Experimente" + }, + "prod-hall": { + "NAME": "Production Hall Floor Area", + "SYMBOL": "$A_{prod-hall}$", + "TRANSLATIONS": { + "DE": "Produktionshallenfläche" + } + }, + "work": { + "NAME": "Workshop Floor Area", + "SYMBOL": "$A_{work}$", + "TRANSLATIONS": { + "DE": "Werkstattfläche" + } + }, + "tech-lab": { + "NAME": "Technology Lab Floor Area", + "SYMBOL": "$A_{tech-lab}$", + "TRANSLATIONS": { + "DE": "Techniklaborfläche" + } + }, + "phys-elec-lab": { + "NAME": "Physics Electrical Lab Floor Area", + "SYMBOL": "$A_{phys-lab}$", + "TRANSLATIONS": { + "DE": "Physik- und Elektrolaborfläche" + } + }, + "chem-bio-lab": { + "NAME": "Chemistry Biology Lab Floor Area", + "SYMBOL": "$A_{chem-lab}$", + "TRANSLATIONS": { + "DE": "Chemie- und Biologielaborfläche" + } + }, + "anim-rm": { + "NAME": "Animal Husbandry Room Floor Area", + "SYMBOL": "$A_{anim}$", + "TRANSLATIONS": { + "DE": "Tierhaltungsraumfläche" + } + }, + "plant-rm": { + "NAME": "Plant Cultivation Room Floor Area", + "SYMBOL": "$A_{plant}$", + "TRANSLATIONS": { + "DE": "Pflanzenzuchtraumfläche" + } + }, + "kit": { + "NAME": "Kitchen Floor Area", + "SYMBOL": "$A_{kit}$", + "TRANSLATIONS": { + "DE": "Küchenfläche" + } + }, + "spec-work-rm": { + "NAME": "Special Work Room Floor Area", + "SYMBOL": "$A_{spec-work}$", + "TRANSLATIONS": { + "DE": "Sonderarbeitsraumfläche" + } + } + }, + "stor-dist-sales": { + "NAME": "Storage Distribution Sales Floor Area", + "SYMBOL": "$A_{stor-sales}$", + "TRANSLATIONS": { + "DE": "Lagern, Verteilen und Verkaufen" + }, + "stor-rm": { + "NAME": "Storage Room Floor Area", + "SYMBOL": "$A_{stor-rm}$", + "TRANSLATIONS": { + "DE": "Lagerraumfläche" + } + }, + "coll-arch": { + "NAME": "Collection Archive Floor Area", + "SYMBOL": "$A_{arch}$", + "TRANSLATIONS": { + "DE": "Sammlungs- und Archivfläche" + } + }, + "cold-stor": { + "NAME": "Cold Storage Room Floor Area", + "SYMBOL": "$A_{cold-stor}$", + "TRANSLATIONS": { + "DE": "Kühllagerraumfläche" + } + }, + "recv-disp": { + "NAME": "Receiving Dispatch Room Floor Area", + "SYMBOL": "$A_{recv}$", + "TRANSLATIONS": { + "DE": "Warenannahme- und Versandfläche" + } + }, + "sales-rm": { + "NAME": "Sales Room Floor Area", + "SYMBOL": "$A_{sales}$", + "TRANSLATIONS": { + "DE": "Verkaufsraumfläche" + } + }, + "exh-rm": { + "NAME": "Exhibition Room Floor Area", + "SYMBOL": "$A_{exh}$", + "TRANSLATIONS": { + "DE": "Ausstellungsraumfläche" + } + }, + "other": { + "NAME": "Other Storage Distribution Sales Floor Area", + "SYMBOL": "$A_{other-stor}$", + "TRANSLATIONS": { + "DE": "Sonstige Lager-, Verteil- und Verkaufsfläche" + } + } + }, + "edu-cult": { + "NAME": "Education Culture Instruction Floor Area", + "SYMBOL": "$A_{edu}$", + "TRANSLATIONS": { + "DE": "Bildung, Unterricht und Kultur" + }, + "class-fix-seat": { + "NAME": "Class With Fixed Seating Floor Area", + "SYMBOL": "$A_{class}$", + "TRANSLATIONS": { + "DE": "Hörsaalfläche" + } + }, + "teach-prac": { + "NAME": "Teaching Practice Room Floor Area", + "SYMBOL": "$A_{teach}$", + "TRANSLATIONS": { + "DE": "Unterrichts- und Übungsraumfläche" + } + }, + "spec-class": { + "NAME": "Special Classroom Floor Area", + "SYMBOL": "$A_{spec-class}$", + "TRANSLATIONS": { + "DE": "Sonderunterrichtsraumfläche" + } + }, + "lib": { + "NAME": "Library Room Floor Area", + "SYMBOL": "$A_{lib}$", + "TRANSLATIONS": { + "DE": "Bibliotheks- und Lesesaalfläche" + } + }, + "sport": { + "NAME": "Sports Room Floor Area", + "SYMBOL": "$A_{sport}$", + "TRANSLATIONS": { + "DE": "Sportraumfläche" + } + }, + "assm-rm": { + "NAME": "Assembly Room Floor Area", + "SYMBOL": "$A_{assm}$", + "TRANSLATIONS": { + "DE": "Versammlungsraumfläche" + } + }, + "stage-studio": { + "NAME": "Stage Studio Room Floor Area", + "SYMBOL": "$A_{stage}$", + "TRANSLATIONS": { + "DE": "Bühnen- und Studioraumfläche" + } + }, + "disp-rm": { + "NAME": "Display Room Floor Area", + "SYMBOL": "$A_{disp}$", + "TRANSLATIONS": { + "DE": "Schau- und Vorführraumfläche" + } + }, + "sacr-rm": { + "NAME": "Sacred Room Floor Area", + "SYMBOL": "$A_{sacr}$", + "TRANSLATIONS": { + "DE": "Sakralraumfläche" + } + } + }, + "heal-care": { + "NAME": "Healing And Care Floor Area", + "SYMBOL": "$A_{med}$", + "TRANSLATIONS": { + "DE": "Heilen und Pflegen" + }, + "gen-med-equip": { + "NAME": "General Medical Equipment Room Floor Area", + "SYMBOL": "$A_{gen-med}$", + "TRANSLATIONS": { + "DE": "Raum für allgemeine medizinische Ausstattung" + } + }, + "spec-med-equip": { + "NAME": "Special Medical Equipment Room Floor Area", + "SYMBOL": "$A_{spec-med}$", + "TRANSLATIONS": { + "DE": "Raum für spezielle medizinische Ausstattung" + } + }, + "surg-rm": { + "NAME": "Surgical Room Floor Area", + "SYMBOL": "$A_{surg}$", + "TRANSLATIONS": { + "DE": "Operationsraumfläche" + } + }, + "rad-diag": { + "NAME": "Radiation Diagnostic Room Floor Area", + "SYMBOL": "$A_{rad-diag}$", + "TRANSLATIONS": { + "DE": "Strahlendiagnostikraumfläche" + } + }, + "rad-ther": { + "NAME": "Radiation Therapy Room Floor Area", + "SYMBOL": "$A_{rad-ther}$", + "TRANSLATIONS": { + "DE": "Strahlentherapieraumfläche" + } + }, + "rehab-physio": { + "NAME": "Rehabilitation Physiotherapy Floor Area", + "SYMBOL": "$A_{rehab}$", + "TRANSLATIONS": { + "DE": "Rehabilitations- und Physiotherapiefläche" + } + }, + "gen-pat-rm": { + "NAME": "General Patient Room Floor Area", + "SYMBOL": "$A_{gen-pat}$", + "TRANSLATIONS": { + "DE": "Allgemeines Patientenzimmerfläche" + } + }, + "spec-pat-rm": { + "NAME": "Special Patient Room Floor Area", + "SYMBOL": "$A_{spec-pat}$", + "TRANSLATIONS": { + "DE": "Spezielles Patientenzimmerfläche" + } + }, + "other": { + "NAME": "Other Healing And Care Floor Area", + "SYMBOL": "$A_{other-med}$", + "TRANSLATIONS": { + "DE": "Sonstige Heil- und Pflegefläche" + } + } + }, + "other": { + "NAME": "Other Usable Floor Area", + "SYMBOL": "$A_{other-usbl}$", + "TRANSLATIONS": { + "DE": "Sonstige Nutzungsfläche" + }, + "san-rm": { + "NAME": "Sanitary Room Floor Area", + "SYMBOL": "$A_{san-rm}$", + "TRANSLATIONS": { + "DE": "Sanitärraumfläche" + } + }, + "cloak": { + "NAME": "Cloakroom Floor Area", + "SYMBOL": "$A_{cloak}$", + "TRANSLATIONS": { + "DE": "Garderobenfläche" + } + }, + "stor-rm": { + "NAME": "Storage Room Floor Area", + "SYMBOL": "$A_{stor-rm}$", + "TRANSLATIONS": { + "DE": "Abstellraumfläche" + } + }, + "veh-park": { + "NAME": "Vehicle Parking Floor Area", + "SYMBOL": "$A_{park}$", + "TRANSLATIONS": { + "DE": "Fahrzeugabstellfläche" + } + }, + "pass": { + "NAME": "Passenger Floor Area", + "SYMBOL": "$A_{pass}$", + "TRANSLATIONS": { + "DE": "Personenverkehrsfläche" + } + }, + "cent-tech": { + "NAME": "Central Technical Room Floor Area", + "SYMBOL": "$A_{cent-tech}$", + "TRANSLATIONS": { + "DE": "Zentraler Technikraum" + } + }, + "prot-rm": { + "NAME": "Protective Room Floor Area", + "SYMBOL": "$A_{prot}$", + "TRANSLATIONS": { + "DE": "Schutzraumfläche" + } + }, + "laund": { + "NAME": "Laundry Room Floor Area", + "SYMBOL": "$A_{laund}$", + "TRANSLATIONS": { + "DE": "Wäschereiraumfläche" + } + }, + "other": { + "NAME": "Other Floor Area", + "SYMBOL": "$A_{other}$", + "TRANSLATIONS": { + "DE": "Sonstige Nutzungsfläche" + } + } + } + }, + "tech": { + "NAME": "Technical Floor Area", + "SYMBOL": "$A_{tech}$", + "TRANSLATIONS": { + "DE": "Technikfläche" + }, + "waste-gas-water": { + "NAME": "Wastewater Gases Water Supply Floor Area", + "SYMBOL": "$A_{water}$", + "TRANSLATIONS": { + "DE": "Abwasser-, Gas- und Wasserversorgung" + } + }, + "heat-hw": { + "NAME": "Heating Hot Water Floor Area", + "SYMBOL": "$A_{heat}$", + "TRANSLATIONS": { + "DE": "Heizung und Warmwasser" + } + }, + "vent-ac": { + "NAME": "Ventilation Air Conditioning Floor Area", + "SYMBOL": "$A_{vent}$", + "TRANSLATIONS": { + "DE": "Lüftung und Klimatisierung" + } + }, + "elec-pwr": { + "NAME": "Electrical Power Supply Floor Area", + "SYMBOL": "$A_{elec}$", + "TRANSLATIONS": { + "DE": "Stromversorgung" + } + }, + "telecom": { + "NAME": "Telecommunications Floor Area", + "SYMBOL": "$A_{telecom}$", + "TRANSLATIONS": { + "DE": "Telekommunikation" + } + }, + "elev-conv": { + "NAME": "Elevator Conveyor Systems Floor Area", + "SYMBOL": "$A_{elev}$", + "TRANSLATIONS": { + "DE": "Aufzugs- und Förderanlagen" + } + }, + "other": { + "NAME": "Other Technical Floor Area", + "SYMBOL": "$A_{other-tech}$", + "TRANSLATIONS": { + "DE": "Sonstige Technikfläche" + } + } + }, + "circ": { + "NAME": "Circulation Floor Area", + "SYMBOL": "$A_{circ}$", + "TRANSLATIONS": { + "DE": "Verkehrsfläche" + }, + "corr-hall": { + "NAME": "Corridor Hall Floor Area", + "SYMBOL": "$A_{corr}$", + "TRANSLATIONS": { + "DE": "Flur und Halle" + } + }, + "stair": { + "NAME": "Stair Floor Area", + "SYMBOL": "$A_{stair}$", + "TRANSLATIONS": { + "DE": "Treppenraum" + } + }, + "shaft-conv": { + "NAME": "Shaft For Conveyor System Floor Area", + "SYMBOL": "$A_{shaft}$", + "TRANSLATIONS": { + "DE": "Schacht für Förderanlage" + } + }, + "veh-traf": { + "NAME": "Vehicle Traffic Floor Area", + "SYMBOL": "$A_{veh-traf}$", + "TRANSLATIONS": { + "DE": "Fahrzeugverkehr" + } + }, + "other": { + "NAME": "Other Circulation Floor Area", + "SYMBOL": "$A_{other-circ}$", + "TRANSLATIONS": { + "DE": "Sonstige Verkehrsfläche" + } + } + }, + "const": { + "NAME": "Construction Floor Area", + "SYMBOL": "$A_{const}$", + "TRANSLATIONS": { + "DE": "Konstruktions-Grundfläche" + }, + "ext-wall-const": { + "NAME": "Exterior Wall Construction Floor Area", + "SYMBOL": "$A_{ext-wall}$", + "TRANSLATIONS": { + "DE": "Außenwandkonstruktion" + } + }, + "int-wall-const": { + "NAME": "Interior Wall Construction Floor Area", + "SYMBOL": "$A_{int-wall}$", + "TRANSLATIONS": { + "DE": "Innenwandkonstruktion" + } + }, + "part-wall": { + "NAME": "Partition Wall Floor Area", + "SYMBOL": "$A_{part-wall}$", + "TRANSLATIONS": { + "DE": "Trennwandausbildung" + } + }, + "col": { + "NAME": "Column Floor Area", + "SYMBOL": "$A_{col}$", + "TRANSLATIONS": { + "DE": "Stütze" + } + }, + "shaft": { + "NAME": "Shaft Floor Area", + "SYMBOL": "$A_{shaft}$", + "TRANSLATIONS": { + "DE": "Schacht" + } + }, + "beam": { + "NAME": "Beam Floor Area", + "SYMBOL": "$A_{beam}$", + "TRANSLATIONS": { + "DE": "Träger" + } + }, + "other": { + "NAME": "Other Construction Floor Area", + "SYMBOL": "$A_{other-const}$", + "TRANSLATIONS": { + "DE": "Sonstige Konstruktionsfläche" + } + } + } + }, + "prop": { + "NAME": "Property Area", + "SYMBOL": "$A_{prop}$", + "TRANSLATIONS": { + "DE": "Grundstücksfläche" + }, + "built": { + "NAME": "Built Up Area", + "SYMBOL": "$A_{built}$", + "TRANSLATIONS": { + "DE": "Bebaute Fläche" + } + }, + "unbuilt": { + "NAME": "Unbuilt Area", + "SYMBOL": "$A_{unbuilt}$", + "TRANSLATIONS": { + "DE": "Unbebaute Fläche" + } + }, + "out-fac": { + "NAME": "Outdoor Facility Area", + "SYMBOL": "$A_{out-fac}$", + "TRANSLATIONS": { + "DE": "Außenanlagenfläche" + }, + "traf": { + "NAME": "Traffic Area", + "SYMBOL": "$A_{traf}$", + "TRANSLATIONS": { + "DE": "Verkehrsfläche" + } + }, + "sidewalk": { + "NAME": "Sidewalk Area", + "SYMBOL": "$A_{sidewalk}$", + "TRANSLATIONS": { + "DE": "Gehwegfläche" + } + }, + "drive": { + "NAME": "Driveway Area", + "SYMBOL": "$A_{drive}$", + "TRANSLATIONS": { + "DE": "Zufahrtsfläche" + } + }, + "park-sp": { + "NAME": "Parking Space Area", + "SYMBOL": "$A_{park-sp}$", + "TRANSLATIONS": { + "DE": "Stellplatzfläche" + } + }, + "bike-park": { + "NAME": "Bicycle Parking Area", + "SYMBOL": "$A_{bike-park}$", + "TRANSLATIONS": { + "DE": "Fahrradabstellfläche" + } + }, + "turn": { + "NAME": "Turning Area", + "SYMBOL": "$A_{turn}$", + "TRANSLATIONS": { + "DE": "Wendeplatzfläche" + } + }, + "other": { + "NAME": "Other Traffic Area", + "SYMBOL": "$A_{other-traf}$", + "TRANSLATIONS": { + "DE": "Sonstige Verkehrsfläche" + } + } + }, + "green": { + "NAME": "Green Area", + "SYMBOL": "$A_{green}$", + "TRANSLATIONS": { + "DE": "Grünfläche" + }, + "lawn": { + "NAME": "Lawn Area", + "SYMBOL": "$A_{lawn}$", + "TRANSLATIONS": { + "DE": "Rasenfläche" + } + }, + "plant-bed": { + "NAME": "Planted Bed Area", + "SYMBOL": "$A_{plant-bed}$", + "TRANSLATIONS": { + "DE": "Pflanzbeetfläche" + } + }, + "hedge": { + "NAME": "Hedge Area", + "SYMBOL": "$A_{hedge}$", + "TRANSLATIONS": { + "DE": "Heckenfläche" + } + }, + "tree": { + "NAME": "Tree Area", + "SYMBOL": "$A_{tree}$", + "TRANSLATIONS": { + "DE": "Baumfläche" + } + }, + "roof-green": { + "NAME": "Roof Greening Area", + "SYMBOL": "$A_{roof-green}$", + "TRANSLATIONS": { + "DE": "Dachbegrünungsfläche" + } + }, + "fac-green": { + "NAME": "Facade Greening Area", + "SYMBOL": "$A_{fac-green}$", + "TRANSLATIONS": { + "DE": "Fassadenbegrünungsfläche" + } + }, + "other": { + "NAME": "Other Green Area", + "SYMBOL": "$A_{other-green}$", + "TRANSLATIONS": { + "DE": "Sonstige Grünfläche" + } + } + }, + "paved": { + "NAME": "Paved Area", + "SYMBOL": "$A_{paved}$", + "TRANSLATIONS": { + "DE": "Befestigte Fläche" + }, + "terr": { + "NAME": "Terrace Area", + "SYMBOL": "$A_{terr}$", + "TRANSLATIONS": { + "DE": "Terrassenfläche" + } + }, + "balc": { + "NAME": "Balcony Area", + "SYMBOL": "$A_{balc}$", + "TRANSLATIONS": { + "DE": "Balkonfläche" + } + }, + "court": { + "NAME": "Courtyard Area", + "SYMBOL": "$A_{court}$", + "TRANSLATIONS": { + "DE": "Hoffläche" + } + }, + "stor-util": { + "NAME": "Storage Utility Area", + "SYMBOL": "$A_{stor-util}$", + "TRANSLATIONS": { + "DE": "Lager- und Nutzfläche" + } + }, + "play": { + "NAME": "Playground Area", + "SYMBOL": "$A_{play}$", + "TRANSLATIONS": { + "DE": "Spielplatzfläche" + } + }, + "other": { + "NAME": "Other Paved Area", + "SYMBOL": "$A_{other-paved}$", + "TRANSLATIONS": { + "DE": "Sonstige befestigte Fläche" + } + } + }, + "tech-fac": { + "NAME": "Technical Facility Area", + "SYMBOL": "$A_{tech-fac}$", + "TRANSLATIONS": { + "DE": "Technische Anlagenfläche" + }, + "waste-coll": { + "NAME": "Waste Collection Point Area", + "SYMBOL": "$A_{waste-coll}$", + "TRANSLATIONS": { + "DE": "Müllsammelplatzfläche" + } + }, + "util-line": { + "NAME": "Utility Line Area", + "SYMBOL": "$A_{util-line}$", + "TRANSLATIONS": { + "DE": "Versorgungsleitungsfläche" + } + }, + "storm-mgmt": { + "NAME": "Stormwater Management Area", + "SYMBOL": "$A_{storm}$", + "TRANSLATIONS": { + "DE": "Regenwasserbewirtschaftungsfläche" + } + }, + "light-sys": { + "NAME": "Lighting System Area", + "SYMBOL": "$A_{light}$", + "TRANSLATIONS": { + "DE": "Beleuchtungsanlagenfläche" + } + }, + "fence": { + "NAME": "Fence Enclosure Area", + "SYMBOL": "$A_{fence}$", + "TRANSLATIONS": { + "DE": "Zaun- und Einfriedungsfläche" + } + }, + "other": { + "NAME": "Other Technical Facility Area", + "SYMBOL": "$A_{other-tech-fac}$", + "TRANSLATIONS": { + "DE": "Sonstige technische Anlagenfläche" + } + } + }, + "water": { + "NAME": "Water Area", + "SYMBOL": "$A_{water}$", + "TRANSLATIONS": { + "DE": "Wasserfläche" + }, + "pond": { + "NAME": "Pond Area", + "SYMBOL": "$A_{pond}$", + "TRANSLATIONS": { + "DE": "Teichfläche" + } + }, + "fountain": { + "NAME": "Fountain Area", + "SYMBOL": "$A_{fountain}$", + "TRANSLATIONS": { + "DE": "Brunnenfläche" + } + }, + "storm-ret": { + "NAME": "Stormwater Retention Area", + "SYMBOL": "$A_{storm-ret}$", + "TRANSLATIONS": { + "DE": "Regenwasserrückhaltefläche" + } + }, + "other": { + "NAME": "Other Water Area", + "SYMBOL": "$A_{other-water}$", + "TRANSLATIONS": { + "DE": "Sonstige Wasserfläche" + } + } + }, + "other": { + "NAME": "Other Outdoor Facility Area", + "SYMBOL": "$A_{other-out}$", + "TRANSLATIONS": { + "DE": "Sonstige Außenanlagenfläche" + } + } + } + }, + "vol": { + "TYPE": "TAXONOMY", + "UNITS": ["m³", "ft³"], + "SYMBOL": "$V$", + "gv": { + "NAME": "Gross Volume", + "SYMBOL": "$V_{gv}$", + "nv": { + "NAME": "Net Volume", + "SYMBOL": "$V_{nv}$", + "TRANSLATIONS": { + "DE": "Netto-Rauminhalt" + } + }, + "const-vol": { + "NAME": "Construction Volume", + "SYMBOL": "$V_{const}$", + "TRANSLATIONS": { + "DE": "Konstruktions-Rauminhalt" + } + } + } + }, + "ppl": { + "TYPE": "TAXONOMY", + "UNITS": ["count"], + "SYMBOL": "$N$", + "stat": { + "NAME": "Stationary People", + "SYMBOL": "$N_{stat}$", + "liv": { + "NAME": "Living People", + "SYMBOL": "$N_{liv}$", + "res": { + "NAME": "Residents", + "SYMBOL": "$N_{res}$", + "TRANSLATIONS": { + "DE": "Einwohner" + } + }, + "guest": { + "NAME": "Guests", + "SYMBOL": "$N_{guest}$", + "TRANSLATIONS": { + "DE": "Gäste" + } + } + }, + "work": { + "NAME": "Working People", + "SYMBOL": "$N_{work}$", + "ofc": { + "NAME": "Office Workers", + "SYMBOL": "$N_{ofc}$", + "TRANSLATIONS": { + "DE": "Büroangestellte" + } + }, + "prod": { + "NAME": "Production Workers", + "SYMBOL": "$N_{prod}$", + "TRANSLATIONS": { + "DE": "Produktionsmitarbeiter" + } + }, + "serv": { + "NAME": "Service Workers", + "SYMBOL": "$N_{serv}$", + "TRANSLATIONS": { + "DE": "Dienstleistungsmitarbeiter" + } + }, + "edu": { + "NAME": "Education Workers", + "SYMBOL": "$N_{edu}$", + "TRANSLATIONS": { + "DE": "Bildungspersonal" + } + }, + "health": { + "NAME": "Healthcare Workers", + "SYMBOL": "$N_{health}$", + "TRANSLATIONS": { + "DE": "Gesundheitspersonal" + } + }, + "other": { + "NAME": "Other Workers", + "SYMBOL": "$N_{other-work}$", + "TRANSLATIONS": { + "DE": "Sonstige Arbeitskräfte" + } + } + }, + "stud": { + "NAME": "Students", + "SYMBOL": "$N_{stud}$", + "pupil": { + "NAME": "Pupils", + "SYMBOL": "$N_{pupil}$", + "TRANSLATIONS": { + "DE": "Schüler" + } + }, + "stud": { + "NAME": "Students", + "SYMBOL": "$N_{stud}$", + "TRANSLATIONS": { + "DE": "Studenten" + } + } + }, + "client": { + "NAME": "Clients", + "SYMBOL": "$N_{client}$", + "cust": { + "NAME": "Customers", + "SYMBOL": "$N_{cust}$", + "TRANSLATIONS": { + "DE": "Kunden" + } + }, + "visit": { + "NAME": "Visitors", + "SYMBOL": "$N_{visit}$", + "TRANSLATIONS": { + "DE": "Besucher" + } + }, + "pat": { + "NAME": "Patients", + "SYMBOL": "$N_{pat}$", + "TRANSLATIONS": { + "DE": "Patienten" + } + } + } + }, + "mobile": { + "NAME": "Mobile People", + "SYMBOL": "$N_{mobile}$", + "visit": { + "NAME": "Mobile Visitors", + "SYMBOL": "$N_{mobile-visit}$", + "cust": { + "NAME": "Mobile Customers", + "SYMBOL": "$N_{mobile-cust}$", + "TRANSLATIONS": { + "DE": "Mobile Kunden" + } + }, + "guest": { + "NAME": "Mobile Guests", + "SYMBOL": "$N_{mobile-guest}$", + "TRANSLATIONS": { + "DE": "Mobile Gäste" + } + }, + "tourist": { + "NAME": "Tourists", + "SYMBOL": "$N_{tourist}$", + "TRANSLATIONS": { + "DE": "Touristen" + } + } + }, + "emp": { + "NAME": "Mobile Employees", + "SYMBOL": "$N_{mobile-emp}$", + "mobile-work": { + "NAME": "Mobile Workers", + "SYMBOL": "$N_{mobile-work}$", + "TRANSLATIONS": { + "DE": "Mobile Arbeitskräfte" + } + }, + "deliv": { + "NAME": "Delivery Personnel", + "SYMBOL": "$N_{deliv}$", + "TRANSLATIONS": { + "DE": "Lieferpersonal" + } + } + }, + "stud": { + "NAME": "Mobile Students", + "SYMBOL": "$N_{mobile-stud}$", + "commute": { + "NAME": "Commuters", + "SYMBOL": "$N_{commute}$", + "TRANSLATIONS": { + "DE": "Pendler" + } + }, + "exch": { + "NAME": "Exchange Students", + "SYMBOL": "$N_{exch}$", + "TRANSLATIONS": { + "DE": "Austauschstudenten" + } + } + } + } + }, + "energy": { + "TYPE": "CLASSIFICATION", + "SYMBOL": "$E$", + "prim-dem": { + "TYPE": "TAXONOMY", + "UNITS": ["kWh/m²a"], + "NAME": "Primary Energy Demand", + "SYMBOL": "$E_{prim}$", + "TRANSLATIONS": { + "DE": "" + }, + "prim-heat": { + "NAME": "Primary Heating Energy Demand", + "SYMBOL": "$E_{prim-heat}$", + "TRANSLATIONS": { + "DE": "" + }, + "final": { + "NAME": "Final Heating Energy Demand", + "SYMBOL": "$E_{final-heat}$", + "TRANSLATIONS": { + "DE": "" + }, + "FACTOR": "Primary Heating Energy Factor", + "heat": { + "NAME": "Heating Energy Demand", + "SYMBOL": "$E_{heat}$", + "TRANSLATIONS": { + "DE": "" + }, + "FACTOR": "Heating Efficiency Factor", + "trans": { + "NAME": "Transmission Heat Loss", + "SYMBOL": "$Q_{trans}$", + "TRANSLATIONS": { + "DE": "" + } + }, + "final-vent": { + "NAME": "Final Ventilation Heat Loss", + "SYMBOL": "$Q_{final-vent}$", + "TRANSLATIONS": { + "DE": "" + }, + "vent": { + "NAME": "Ventilation Heat Loss", + "SYMBOL": "$Q_{vent}$", + "TRANSLATIONS": { + "DE": "" + }, + "FACTOR": "1-Ventilation Heat Recovery Factor" + } + } + } + } + }, + "prim-cool": { + "NAME": "Primary Cooling Energy Demand", + "SYMBOL": "$E_{prim-cool}$", + "TRANSLATIONS": { + "DE": "" + }, + "final": { + "NAME": "Final Cooling Energy Demand", + "SYMBOL": "$E_{final-cool}$", + "TRANSLATIONS": { + "DE": "" + }, + "FACTOR": "Primary Cooling Energy Factor", + "cool-energy": { + "NAME": "Cooling Energy Demand", + "SYMBOL": "$E_{cool}$", + "TRANSLATIONS": { + "DE": "" + }, + "FACTOR": "Cooling Efficiency Factor" + } + } + }, + "prim-elec": { + "NAME": "Primary Electricity Energy Demand", + "SYMBOL": "$E_{prim-elec}$", + "TRANSLATIONS": { + "DE": "" + }, + "elec": { + "NAME": "Electricity Energy Demand", + "SYMBOL": "$E_{elec}$", + "TRANSLATIONS": { + "DE": "" + }, + "FACTOR": "Electricity Primary Energy Factor", + "tech-equip": { + "NAME": "Technical Equipment Energy Demand", + "SYMBOL": "$E_{tech-equip}$", + "TRANSLATIONS": { + "DE": "" + } + } + } + } + }, + "load": { + "TYPE": "CLASSIFICATION", + "SYMBOL": "$P$", + "heat": { + "TYPE": "TAXONOMY", + "NAME": "Heating Load", + "SYMBOL": "$P_{heat}$", + "TRANSLATIONS": { + "DE": "Heizlast" + } + }, + "cool": { + "TYPE": "TAXONOMY", + "NAME": "Cooling Load", + "SYMBOL": "$P_{cool}$", + "TRANSLATIONS": { + "DE": "Kühllast" + } + }, + "light": { + "TYPE": "TAXONOMY", + "NAME": "Lighting Load", + "SYMBOL": "$P_{light}$", + "TRANSLATIONS": { + "DE": "Beleuchtungslast" + } + }, + "vent": { + "TYPE": "TAXONOMY", + "NAME": "Ventilation Load", + "SYMBOL": "$P_{vent}$", + "TRANSLATIONS": { + "DE": "Lüftungslast" + } + }, + "hw": { + "TYPE": "TAXONOMY", + "NAME": "Hot Water Load", + "SYMBOL": "$P_{hw}$", + "TRANSLATIONS": { + "DE": "Warmwasserlast" + } + } + } + }, + "gwp": { + "TYPE": "TAXONOMY", + "UNITS": ["tCO₂e", "MtCO₂e"], + "SYMBOL": "$GWP$", + "embod": { + "NAME": "Embodied GWP", + "SYMBOL": "$GWP_{embod}$", + "const": { + "NAME": "Construction GWP", + "SYMBOL": "$GWP_{const}$", + "TRANSLATIONS": { + "DE": "Herstellung (Baukonstruktion)" + } + }, + "tech-equip": { + "NAME": "Technical Equipment GWP", + "SYMBOL": "$GWP_{tech-equip}$", + "TRANSLATIONS": { + "DE": "Herstellung (Technische Anlagen)" + } + } + }, + "oper": { + "NAME": "Operational GWP", + "SYMBOL": "$GWP_{oper}$", + "heat": { + "NAME": "Heating GWP", + "SYMBOL": "$GWP_{heat}$", + "TRANSLATIONS": { + "DE": "Betrieb (Heizung)" + } + }, + "cool": { + "NAME": "Cooling GWP", + "SYMBOL": "$GWP_{cool}$", + "TRANSLATIONS": { + "DE": "Betrieb (Kühlung)" + } + }, + "light": { + "NAME": "Lighting GWP", + "SYMBOL": "$GWP_{light}$", + "TRANSLATIONS": { + "DE": "Betrieb (Beleuchtung)" + } + }, + "vent": { + "NAME": "Ventilation GWP", + "SYMBOL": "$GWP_{vent}$", + "TRANSLATIONS": { + "DE": "Betrieb (Lüftung)" + } + }, + "hw": { + "NAME": "Hot Water GWP", + "SYMBOL": "$GWP_{hw}$", + "TRANSLATIONS": { + "DE": "Betrieb (Warmwasser)" + } + }, + "other": { + "NAME": "Other GWP", + "SYMBOL": "$GWP_{other}$", + "TRANSLATIONS": { + "DE": "Betrieb (Sonstige)" + } + } + } + }, + "costs": { + "TYPE": "CLASSIFICATION", + "SYMBOL": "$C$", + "glcc": { + "TYPE": "TAXONOMY", + "NAME": "Global Life Cycle Costs", + "SYMBOL": "$C_{glcc}$", + "TRANSLATIONS": { + "DE": "Globale Lebenszykluskosten" + }, + "UNITS": ["currency"], + "lcc": { + "NAME": "Life Cycle Costs", + "SYMBOL": "$C_{lcc}$", + "TRANSLATIONS": { + "DE": "Lebenszykluskosten" + }, + "inv-const": { + "NAME": "Investment Costs Construction Phase", + "SYMBOL": "$C_{inv-const}$", + "TRANSLATIONS": { + "DE": "Investitionskosten in der Bauphase" + }, + "land-costs": { + "NAME": "Land Costs", + "SYMBOL": "$C_{land}$", + "TRANSLATIONS": { + "DE": "Grundstückskosten" + }, + "land": { + "NAME": "Land", + "SYMBOL": "$C_{land-base}$", + "TRANSLATIONS": { + "DE": "Grundstück" + }, + "land-val": { + "NAME": "Land Value", + "SYMBOL": "$C_{land-val}$", + "TRANSLATIONS": { + "DE": "Grundstückswert" + } + }, + "anc-land": { + "NAME": "Ancillary Land Costs", + "SYMBOL": "$C_{anc-land}$", + "TRANSLATIONS": { + "DE": "Grundstücksnebenkosten" + }, + "surv-fees": { + "NAME": "Surveying Fees", + "SYMBOL": "$C_{surv}$", + "TRANSLATIONS": { + "DE": "Vermessungsgebühren" + } + }, + "court-fees": { + "NAME": "Court Fees", + "SYMBOL": "$C_{court}$", + "TRANSLATIONS": { + "DE": "Gerichtsgebühren" + } + }, + "not-fees": { + "NAME": "Notary Fees", + "SYMBOL": "$C_{notary}$", + "TRANSLATIONS": { + "DE": "Notargebühren" + } + }, + "land-trans-tax": { + "NAME": "Land Transfer Tax", + "SYMBOL": "$C_{land-tax}$", + "TRANSLATIONS": { + "DE": "Grunderwerbsteuer" + } + }, + "invest": { + "NAME": "Investigations", + "SYMBOL": "$C_{invest}$", + "TRANSLATIONS": { + "DE": "Untersuchungen" + } + }, + "val": { + "NAME": "Valuations", + "SYMBOL": "$C_{val}$", + "TRANSLATIONS": { + "DE": "Gutachten" + } + }, + "perm-fees": { + "NAME": "Permit Fees", + "SYMBOL": "$C_{permit}$", + "TRANSLATIONS": { + "DE": "Genehmigungsgebühren" + } + }, + "land-reorg": { + "NAME": "Land Reorganization", + "SYMBOL": "$C_{land-reorg}$", + "TRANSLATIONS": { + "DE": "Bodenordnung" + } + }, + "other": { + "NAME": "Other Ancillary Land Costs", + "SYMBOL": "$C_{other-anc-land}$", + "TRANSLATIONS": { + "DE": "Sonstige Grundstücksnebenkosten" + } + } + }, + "third-party-rights": { + "NAME": "Third Party Rights", + "TRANSLATIONS": { + "DE": "Rechte Dritter" + }, + "compensations": { + "NAME": "Third Party Compensations", + "TRANSLATIONS": { + "DE": "Entschädigungen" + } + }, + "redemption-of-real-rights": { + "NAME": "Redemption Of Real Rights", + "TRANSLATIONS": { + "DE": "Ablösung von dinglichen Rechten" + } + }, + "other": { + "NAME": "Other Third Party Rights", + "TRANSLATIONS": { + "DE": "Sonstige Rechte Dritter" + } + } + }, + "compensations": { + "NAME": "Land Compensations", + "TRANSLATIONS": { + "DE": "Entschädigungen" + } + }, + "redemption-of-real-rights": { + "NAME": "Land Redemption Of Real Rights", + "TRANSLATIONS": { + "DE": "Ablösung von dinglichen Rechten" + } + }, + "other": { + "NAME": "Other Land Costs", + "TRANSLATIONS": { + "DE": "Sonstige Grundstückskosten" + } + } + }, + "other": { + "NAME": "Other Land Costs", + "TRANSLATIONS": { + "DE": "Sonstige Grundstückskosten" + } + } + }, + "development-costs": { + "NAME": "Development Costs", + "TRANSLATIONS": { + "DE": "Erschließungskosten" + }, + "preparatory-measures": { + "NAME": "Preparatory Measures", + "TRANSLATIONS": { + "DE": "Vorbereitende Maßnahmen" + }, + "site-preparation": { + "NAME": "Site Preparation", + "TRANSLATIONS": { + "DE": "Herrichten des Grundstücks" + }, + "safety-measures": { + "NAME": "Safety Measures", + "TRANSLATIONS": { + "DE": "Sicherungsmaßnahmen" + } + }, + "demolition-measures": { + "NAME": "Demolition Measures", + "TRANSLATIONS": { + "DE": "Abbruchmaßnahmen" + } + }, + "contaminated-site-remediation": { + "NAME": "Contaminated Site Remediation", + "TRANSLATIONS": { + "DE": "Altlastensanierung" + } + }, + "surface-preparation": { + "NAME": "Surface Preparation", + "TRANSLATIONS": { + "DE": "Oberflächenvorbereitung" + } + }, + "explosive-ordnance-clearance": { + "NAME": "Explosive Ordnance Clearance", + "TRANSLATIONS": { + "DE": "Kampfmittelbeseitigung" + } + }, + "cultural-heritage-finds": { + "NAME": "Cultural Heritage Finds", + "TRANSLATIONS": { + "DE": "Kulturerbe-Funde" + } + }, + "other": { + "NAME": "Other Site Preparation", + "TRANSLATIONS": { + "DE": "Sonstiges Herrichten des Grundstücks" + } + } + }, + "public-infrastructure-development": { + "NAME": "Public Infrastructure Development", + "TRANSLATIONS": { + "DE": "Öffentliche Erschließung" + }, + "wastewater-disposal": { + "NAME": "Wastewater Disposal", + "TRANSLATIONS": { + "DE": "Abwasserentsorgung" + } + }, + "water-supply": { + "NAME": "Water Supply", + "TRANSLATIONS": { + "DE": "Wasserversorgung" + } + }, + "gas-supply": { + "NAME": "Gas Supply", + "TRANSLATIONS": { + "DE": "Gasversorgung" + } + }, + "district-heating-supply": { + "NAME": "District Heating Supply", + "TRANSLATIONS": { + "DE": "Fernwärmeversorgung" + } + }, + "power-supply": { + "NAME": "Power Supply", + "TRANSLATIONS": { + "DE": "Stromversorgung" + } + }, + "telecommunications": { + "NAME": "Telecommunications", + "TRANSLATIONS": { + "DE": "Telekommunikation" + } + }, + "traffic-development": { + "NAME": "Traffic Development", + "TRANSLATIONS": { + "DE": "Verkehrserschließung" + } + }, + "waste-disposal": { + "NAME": "Waste Disposal", + "TRANSLATIONS": { + "DE": "Abfallentsorgung" + } + }, + "other": { + "NAME": "Other Public Infrastructure Development", + "TRANSLATIONS": { + "DE": "Sonstige öffentliche Erschließung" + } + } + }, + "private-infrastructure-development": { + "NAME": "Private Infrastructure Development", + "TRANSLATIONS": { + "DE": "Private Erschließung" + } + }, + "compensatory-measures-and-levies": { + "NAME": "Compensatory Measures And Levies", + "TRANSLATIONS": { + "DE": "Ausgleichsmaßnahmen und -abgaben" + }, + "compensatory-measures": { + "NAME": "Compensatory Measures", + "TRANSLATIONS": { + "DE": "Ausgleichsmaßnahmen" + } + }, + "compensatory-levies": { + "NAME": "Compensatory Levies", + "TRANSLATIONS": { + "DE": "Ausgleichsabgaben" + } + }, + "other": { + "NAME": "Other Compensatory Measures And Levies", + "TRANSLATIONS": { + "DE": "Sonstige Ausgleichsmaßnahmen und -abgaben" + } + } + }, + "transitional-measures": { + "NAME": "Transitional Measures", + "TRANSLATIONS": { + "DE": "Übergangsmaßnahmen" + }, + "structural-measures": { + "NAME": "Structural Measures", + "TRANSLATIONS": { + "DE": "Bauliche Maßnahmen" + } + }, + "organizational-measures": { + "NAME": "Organizational Measures", + "TRANSLATIONS": { + "DE": "Organisatorische Maßnahmen" + } + }, + "other": { + "NAME": "Other Transitional Measures", + "TRANSLATIONS": { + "DE": "Sonstige Übergangsmaßnahmen" + } + } + } + }, + "other": { + "NAME": "Other Development Costs", + "TRANSLATIONS": { + "DE": "Sonstige Erschließungskosten" + } + } + }, + "building-structural-components": { + "NAME": "Building Structural Components", + "TRANSLATIONS": { + "DE": "Bauwerk - Baukonstruktionen" + }, + "excavation-earthworks": { + "NAME": "Excavation Earthworks", + "TRANSLATIONS": { + "DE": "Baugrube/Erdarbeiten" + } + }, + "foundation-substructure": { + "NAME": "Foundation Substructure", + "TRANSLATIONS": { + "DE": "Gründung/Unterbau" + } + }, + "external-walls-vertical-structural-components-outside": { + "NAME": "External Walls Vertical Structural Components Outside", + "TRANSLATIONS": { + "DE": "Außenwände/Vertikale Baukonstruktionen, außen" + } + }, + "internal-walls-vertical-structural-components-inside": { + "NAME": "Internal Walls Vertical Structural Components Inside", + "TRANSLATIONS": { + "DE": "Innenwände/Vertikale Baukonstruktionen, innen" + } + }, + "ceilings-horizontal-structural-components": { + "NAME": "Ceilings Horizontal Structural Components", + "TRANSLATIONS": { + "DE": "Decken/Horizontale Baukonstruktionen" + } + }, + "roofs": { + "NAME": "Roofs", + "TRANSLATIONS": { + "DE": "Dächer" + } + }, + "infrastructure-facilities": { + "NAME": "Infrastructure Facilities", + "TRANSLATIONS": { + "DE": "Infrastrukturanlagen" + } + }, + "structural-installations": { + "NAME": "Structural Installations", + "TRANSLATIONS": { + "DE": "Baukonstruktive Einbauten" + } + }, + "other-measures-for-structural-components": { + "NAME": "Other Measures For Structural Components", + "TRANSLATIONS": { + "DE": "Sonstige Maßnahmen für Baukonstruktionen" + } + } + }, + "technical-systems": { + "NAME": "Technical Systems", + "TRANSLATIONS": { + "DE": "Bauwerk - Technische Anlagen" + }, + "wastewater-water-gas-systems": { + "NAME": "Wastewater Water Gas Systems", + "TRANSLATIONS": { + "DE": "Abwasser-, Wasser-, Gasanlagen" + } + }, + "heating-supply-systems": { + "NAME": "Heating Supply Systems", + "TRANSLATIONS": { + "DE": "Wärmeversorgungsanlagen" + } + }, + "room-air-technology-systems": { + "NAME": "Room Air Technology Systems", + "TRANSLATIONS": { + "DE": "Lufttechnische Anlagen" + } + }, + "electrical-systems": { + "NAME": "Electrical Systems", + "TRANSLATIONS": { + "DE": "Starkstromanlagen" + } + }, + "communication-safety-and-information-technology-systems": { + "NAME": "Communication Safety And Information Technology Systems", + "TRANSLATIONS": { + "DE": "Kommunikations-, Sicherheits- und informationstechnische Anlagen" + } + }, + "conveying-systems": { + "NAME": "Conveying Systems", + "TRANSLATIONS": { + "DE": "Förderanlagen" + } + }, + "usage-specific-and-process-engineering-systems": { + "NAME": "Usage Specific And Process Engineering Systems", + "TRANSLATIONS": { + "DE": "Nutzungsspezifische und verfahrenstechnische Anlagen" + } + }, + "building-and-facility-automation": { + "NAME": "Building And Facility Automation", + "TRANSLATIONS": { + "DE": "Gebäude- und Anlagenautomation" + } + }, + "other-measures-for-technical-systems": { + "NAME": "Other Measures For Technical Systems", + "TRANSLATIONS": { + "DE": "Sonstige Maßnahmen für technische Anlagen" + } + } + }, + "outdoor-facilities-and-open-spaces": { + "NAME": "Outdoor Facilities And Open Spaces", + "TRANSLATIONS": { + "DE": "Außenanlagen und Freiflächen" + }, + "earthworks": { + "NAME": "Earthworks", + "TRANSLATIONS": { + "DE": "Erdarbeiten" + } + }, + "foundation-substructure": { + "NAME": "Foundation Substructure", + "TRANSLATIONS": { + "DE": "Gründung/Unterbau" + } + }, + "pavement-surface-courses": { + "NAME": "Pavement Surface Courses", + "TRANSLATIONS": { + "DE": "Beläge, Oberflächenschichten" + } + }, + "structural-components": { + "NAME": "Structural Components", + "TRANSLATIONS": { + "DE": "Baukonstruktionen" + } + }, + "technical-systems": { + "NAME": "Technical Systems", + "TRANSLATIONS": { + "DE": "Technische Anlagen" + } + }, + "installations-in-outdoor-facilities-and-open-spaces": { + "NAME": "Installations In Outdoor Facilities And Open Spaces", + "TRANSLATIONS": { + "DE": "Einbauten in Außenanlagen und Freiflächen" + } + }, + "other-measures-for-outdoor-facilities-and-open-spaces": { + "NAME": "Other Measures For Outdoor Facilities And Open Spaces", + "TRANSLATIONS": { + "DE": "Sonstige Maßnahmen für Außenanlagen und Freiflächen" + } + } + }, + "equipment-and-artworks": { + "NAME": "Equipment And Artworks", + "TRANSLATIONS": { + "DE": "Ausstattung und Kunstwerke" + }, + "general-equipment": { + "NAME": "General Equipment", + "TRANSLATIONS": { + "DE": "Allgemeine Ausstattung" + } + }, + "special-equipment": { + "NAME": "Special Equipment", + "TRANSLATIONS": { + "DE": "Besondere Ausstattung" + } + }, + "information-technology-equipment": { + "NAME": "Information Technology Equipment", + "TRANSLATIONS": { + "DE": "Informationstechnische Ausstattung" + } + }, + "artistic-equipment": { + "NAME": "Artistic Equipment", + "TRANSLATIONS": { + "DE": "Künstlerische Ausstattung" + }, + "art-objects": { + "NAME": "Art Objects", + "TRANSLATIONS": { + "DE": "Kunstobjekte" + } + }, + "artistic-design-of-the-building": { + "NAME": "Artistic Design Of The Building", + "TRANSLATIONS": { + "DE": "Künstlerische Gestaltung des Bauwerks" + } + }, + "artistic-design-of-outdoor-facilities-and-open-spaces": { + "NAME": "Artistic Design Of Outdoor Facilities And Open Spaces", + "TRANSLATIONS": { + "DE": "Künstlerische Gestaltung der Außenanlagen und Freiflächen" + } + }, + "other": { + "NAME": "Other Artistic Equipment", + "TRANSLATIONS": { + "DE": "Sonstige künstlerische Ausstattung" + } + } + }, + "other": { + "NAME": "Other Equipment And Artworks", + "TRANSLATIONS": { + "DE": "Sonstige Ausstattung und Kunstwerke" + } + } + }, + "construction-ancillary-costs": { + "NAME": "Construction Ancillary Costs", + "TRANSLATIONS": { + "DE": "Baunebenkosten" + }, + "client-tasks": { + "NAME": "Client Tasks", + "TRANSLATIONS": { + "DE": "Bauherrenaufgaben" + }, + "project-management": { + "NAME": "Project Management", + "TRANSLATIONS": { + "DE": "Projektleitung" + } + }, + "needs-assessment": { + "NAME": "Needs Assessment", + "TRANSLATIONS": { + "DE": "Bedarfsplanung" + } + }, + "project-control": { + "NAME": "Project Control", + "TRANSLATIONS": { + "DE": "Projektsteuerung" + } + }, + "safety-and-health-protection-coordination": { + "NAME": "Safety And Health Protection Coordination", + "TRANSLATIONS": { + "DE": "Sicherheits- und Gesundheitsschutzkoordination" + } + }, + "award-procedures": { + "NAME": "Award Procedures", + "TRANSLATIONS": { + "DE": "Vergabeverfahren" + } + }, + "other": { + "NAME": "Other Client Tasks", + "TRANSLATIONS": { + "DE": "Sonstige Bauherrenaufgaben" + } + } + }, + "preparation-of-object-planning": { + "NAME": "Preparation Of Object Planning", + "TRANSLATIONS": { + "DE": "Vorbereitung der Objektplanung" + }, + "investigations": { + "NAME": "Investigations", + "TRANSLATIONS": { + "DE": "Untersuchungen" + } + }, + "valuations": { + "NAME": "Valuations", + "TRANSLATIONS": { + "DE": "Gutachten" + } + }, + "urban-planning-services": { + "NAME": "Urban Planning Services", + "TRANSLATIONS": { + "DE": "Städtebauliche Leistungen" + } + }, + "landscape-planning-services": { + "NAME": "Landscape Planning Services", + "TRANSLATIONS": { + "DE": "Landschaftsplanerische Leistungen" + } + }, + "competitions": { + "NAME": "Competitions", + "TRANSLATIONS": { + "DE": "Wettbewerbe" + } + }, + "other": { + "NAME": "Other Preparation Of Object Planning", + "TRANSLATIONS": { + "DE": "Sonstige Vorbereitung der Objektplanung" + } + } + }, + "object-planning": { + "NAME": "Object Planning", + "TRANSLATIONS": { + "DE": "Objektplanung" + }, + "buildings-and-interiors": { + "NAME": "Buildings And Interiors", + "TRANSLATIONS": { + "DE": "Gebäude und Innenräume" + } + }, + "open-spaces": { + "NAME": "Open Spaces", + "TRANSLATIONS": { + "DE": "Freianlagen" + } + }, + "civil-engineering-structures": { + "NAME": "Civil Engineering Structures", + "TRANSLATIONS": { + "DE": "Ingenieurbauwerke" + } + }, + "traffic-facilities": { + "NAME": "Traffic Facilities", + "TRANSLATIONS": { + "DE": "Verkehrsanlagen" + } + }, + "other": { + "NAME": "Other Object Planning", + "TRANSLATIONS": { + "DE": "Sonstige Objektplanung" + } + } + }, + "specialist-planning": { + "NAME": "Specialist Planning", + "TRANSLATIONS": { + "DE": "Fachplanung" + }, + "structural-planning": { + "NAME": "Structural Planning", + "TRANSLATIONS": { + "DE": "Tragwerksplanung" + } + }, + "technical-equipment": { + "NAME": "Technical Equipment", + "TRANSLATIONS": { + "DE": "Technische Ausrüstung" + } + }, + "building-physics": { + "NAME": "Building Physics", + "TRANSLATIONS": { + "DE": "Bauphysik" + } + }, + "geotechnics": { + "NAME": "Geotechnics", + "TRANSLATIONS": { + "DE": "Geotechnik" + } + }, + "engineering-surveying": { + "NAME": "Engineering Surveying", + "TRANSLATIONS": { + "DE": "Ingenieurvermessung" + } + }, + "lighting-technology-daylight-technology": { + "NAME": "Lighting Technology Daylight Technology", + "TRANSLATIONS": { + "DE": "Lichttechnik/Tageslichttechnik" + } + }, + "fire-protection": { + "NAME": "Fire Protection", + "TRANSLATIONS": { + "DE": "Brandschutz" + } + }, + "contaminated-sites-explosive-ordnance-cultural-heritage-finds": { + "NAME": "Contaminated Sites Explosive Ordnance Cultural Heritage Finds", + "TRANSLATIONS": { + "DE": "Altlasten, Kampfmittel, Kulturerbe-Funde" + } + }, + "other": { + "NAME": "Other Specialist Planning", + "TRANSLATIONS": { + "DE": "Sonstige Fachplanung" + } + } + }, + "artistic-services": { + "NAME": "Artistic Services", + "TRANSLATIONS": { + "DE": "Künstlerische Leistungen" + }, + "art-competitions": { + "NAME": "Art Competitions", + "TRANSLATIONS": { + "DE": "Kunstwettbewerbe" + } + }, + "fees": { + "NAME": "Artistic Service Fees", + "TRANSLATIONS": { + "DE": "Honorare für künstlerische Leistungen" + } + }, + "other": { + "NAME": "Other Artistic Services", + "TRANSLATIONS": { + "DE": "Sonstige künstlerische Leistungen" + } + } + }, + "general-construction-ancillary-costs": { + "NAME": "General Construction Ancillary Costs", + "TRANSLATIONS": { + "DE": "Allgemeine Baunebenkosten" + }, + "expertise-and-consulting": { + "NAME": "Expertise And Consulting", + "TRANSLATIONS": { + "DE": "Gutachten und Beratung" + } + }, + "inspections-approvals-acceptance": { + "NAME": "Inspections Approvals Acceptance", + "TRANSLATIONS": { + "DE": "Prüfungen, Genehmigungen, Abnahmen" + } + }, + "operating-costs": { + "NAME": "Operating Costs", + "TRANSLATIONS": { + "DE": "Betriebskosten" + } + }, + "sampling-costs": { + "NAME": "Sampling Costs", + "TRANSLATIONS": { + "DE": "Bemusterungskosten" + } + }, + "operating-costs-after-acceptance": { + "NAME": "Operating Costs After Acceptance", + "TRANSLATIONS": { + "DE": "Betriebskosten nach Abnahme" + } + }, + "insurance": { + "NAME": "Insurance", + "TRANSLATIONS": { + "DE": "Versicherungen" + } + }, + "other": { + "NAME": "Other General Construction Ancillary Costs", + "TRANSLATIONS": { + "DE": "Sonstige allgemeine Baunebenkosten" + } + } + }, + "other-construction-ancillary-costs": { + "NAME": "Other Construction Ancillary Costs", + "TRANSLATIONS": { + "DE": "Sonstige Baunebenkosten" + }, + "documentation-of-existing-conditions": { + "NAME": "Documentation Of Existing Conditions", + "TRANSLATIONS": { + "DE": "Bestandsdokumentation" + } + }, + "other": { + "NAME": "Other Construction Ancillary Costs", + "TRANSLATIONS": { + "DE": "Sonstige Baunebenkosten" + } + } + } + }, + "financing": { + "NAME": "Financing", + "TRANSLATIONS": { + "DE": "Finanzierung" + }, + "financing-ancillary-costs": { + "NAME": "Financing Ancillary Costs", + "TRANSLATIONS": { + "DE": "Finanzierungsnebenkosten" + } + }, + "debt-capital-interest": { + "NAME": "Debt Capital Interest", + "TRANSLATIONS": { + "DE": "Fremdkapitalzinsen" + } + }, + "equity-capital-interest": { + "NAME": "Equity Capital Interest", + "TRANSLATIONS": { + "DE": "Eigenkapitalzinsen" + } + }, + "guarantees": { + "NAME": "Guarantees", + "TRANSLATIONS": { + "DE": "Bürgschaften" + } + }, + "other": { + "NAME": "Other Financing", + "TRANSLATIONS": { + "DE": "Sonstige Finanzierung" + } + } + }, + "taxes-and-duties": { + "NAME": "Construction Taxes And Duties", + "TRANSLATIONS": { + "DE": "Steuern und Abgaben" + } + }, + "grants-subsidies": { + "NAME": "Construction Grants Subsidies", + "TRANSLATIONS": { + "DE": "Zuschüsse, Subventionen" + } + }, + "income": { + "NAME": "Construction Income", + "TRANSLATIONS": { + "DE": "Einnahmen" + } + } + }, + "operating-costs-ongoing-use": { + "NAME": "Operating Costs Ongoing Use", + "TRANSLATIONS": { + "DE": "Betriebskosten im laufenden Betrieb" + }, + "operational-management-costs": { + "NAME": "Operational Management Costs", + "TRANSLATIONS": { + "DE": "Betriebsführungskosten" + }, + "property-management": { + "NAME": "Property Management Costs", + "TRANSLATIONS": { + "DE": "Hausverwaltung" + } + }, + "caretaker": { + "NAME": "Caretaker Costs", + "TRANSLATIONS": { + "DE": "Hausmeister" + } + }, + "insurance": { + "NAME": "Insurance Costs", + "TRANSLATIONS": { + "DE": "Versicherungen" + } + } + }, + "energy-costs": { + "NAME": "Energy Costs", + "TRANSLATIONS": { + "DE": "Energiekosten" + }, + "electricity": { + "NAME": "Electricity Costs", + "TRANSLATIONS": { + "DE": "Strom" + } + }, + "heating": { + "NAME": "Heating Costs", + "TRANSLATIONS": { + "DE": "Heizung" + } + }, + "hot-water": { + "NAME": "Hot Water Costs", + "TRANSLATIONS": { + "DE": "Warmwasser" + } + } + }, + "water-costs-wastewater-fees": { + "NAME": "Water Costs Wastewater Fees", + "TRANSLATIONS": { + "DE": "Wasserkosten, Abwassergebühren" + } + }, + "waste-disposal": { + "NAME": "Waste Disposal Costs", + "TRANSLATIONS": { + "DE": "Müllentsorgung" + } + }, + "security-and-maintenance-costs": { + "NAME": "Security And Maintenance Costs", + "TRANSLATIONS": { + "DE": "Sicherheits- und Wartungskosten" + } + }, + "costs-for-common-facilities": { + "NAME": "Costs For Common Facilities", + "TRANSLATIONS": { + "DE": "Kosten für Gemeinschaftsanlagen" + }, + "elevators": { + "NAME": "Elevators Common Facility Costs", + "TRANSLATIONS": { + "DE": "Aufzüge" + } + }, + "underground-garage": { + "NAME": "Underground Garage Common Facility Costs", + "TRANSLATIONS": { + "DE": "Tiefgarage" + } + }, + "technical-rooms": { + "NAME": "Technical Rooms Common Facility Costs", + "TRANSLATIONS": { + "DE": "Technikräume" + } + } + } + }, + "maintenance-and-modernization-costs": { + "NAME": "Maintenance And Modernization Costs", + "TRANSLATIONS": { + "DE": "Instandhaltungs- und Modernisierungskosten" + }, + "regular-maintenance": { + "NAME": "Regular Maintenance", + "TRANSLATIONS": { + "DE": "Regelmäßige Wartung" + }, + "elevators": { + "NAME": "Elevators Maintenance", + "TRANSLATIONS": { + "DE": "Aufzüge" + } + }, + "heating-systems": { + "NAME": "Heating Systems Maintenance", + "TRANSLATIONS": { + "DE": "Heizungsanlagen" + } + } + }, + "replacement-of-components": { + "NAME": "Replacement Of Components", + "TRANSLATIONS": { + "DE": "Austausch von Bauteilen" + }, + "windows": { + "NAME": "Windows Replacement", + "TRANSLATIONS": { + "DE": "Fenster" + } + }, + "facade": { + "NAME": "Facade Replacement", + "TRANSLATIONS": { + "DE": "Fassade" + } + }, + "roofs": { + "NAME": "Roofs Replacement", + "TRANSLATIONS": { + "DE": "Dächer" + } + } + }, + "modernization": { + "NAME": "Modernization", + "TRANSLATIONS": { + "DE": "Modernisierung" + }, + "energy-rehabilitation": { + "NAME": "Energy Rehabilitation", + "TRANSLATIONS": { + "DE": "Energetische Sanierung" + } + }, + "barrier-free-conversion": { + "NAME": "Barrier Free Conversion", + "TRANSLATIONS": { + "DE": "Barrierefreier Umbau" + } + } + } + }, + "dismantling-and-disposal-costs": { + "NAME": "Dismantling And Disposal Costs", + "TRANSLATIONS": { + "DE": "Rückbau- und Entsorgungskosten" + }, + "demolition-costs": { + "NAME": "Demolition Costs", + "TRANSLATIONS": { + "DE": "Abbruchkosten" + } + }, + "disposal-of-contaminated-materials": { + "NAME": "Disposal Of Contaminated Materials", + "TRANSLATIONS": { + "DE": "Entsorgung von kontaminierten Materialien" + } + }, + "renaturation-or-reuse-of-the-land": { + "NAME": "Renaturation Or Reuse Of The Land", + "TRANSLATIONS": { + "DE": "Renaturierung oder Wiederverwendung des Grundstücks" + } + } + } + }, + "financing-costs": { + "NAME": "Financing Costs", + "TRANSLATIONS": { + "DE": "Finanzierungskosten" + }, + "interest": { + "NAME": "Financing Interest", + "TRANSLATIONS": { + "DE": "Zinsen" + } + }, + "fees": { + "NAME": "Financing Fees", + "TRANSLATIONS": { + "DE": "Gebühren" + } + } + }, + "taxes-and-duties": { + "NAME": "Taxes And Duties", + "TRANSLATIONS": { + "DE": "Steuern und Abgaben" + } + }, + "grants-subsidies": { + "NAME": "Grants Subsidies", + "TRANSLATIONS": { + "DE": "Zuschüsse, Subventionen" + } + }, + "income": { + "NAME": "Income", + "TRANSLATIONS": { + "DE": "Einnahmen" + } + } + } + } + }, + "wasp": { + "connection": { + "rotation": { + "NAME": "rotation", + "TRANSLATIONS": { + "DE": "Drehung" + } + } + } + } + } +} diff --git a/assets/lists/tags.json b/assets/lists/tags.json index 8c2ce7a67..6f5baaa71 100644 --- a/assets/lists/tags.json +++ b/assets/lists/tags.json @@ -1,104 +1,104 @@ { - "artificial-intelligence": { - "name": "Artificial Intelligence", - "abbreviation": "AI", - "description": "Artificial intelligence (AI) is intelligence demonstrated by machines, in contrast to the natural intelligence displayed by humans and animals. Leading AI textbooks define the field as the study of 'intelligent agents': any device that perceives its environment and takes actions that maximize its chance of successfully achieving its goals.", - "reference": "https://en.wikipedia.org/wiki/Artificial_intelligence" - }, - "building-information-modeling": { - "name": "Building Information Modeling", - "abbreviation": "BIM", - "description": "Building Information Modeling (BIM) is a process involving the generation and management of digital representations of physical and functional characteristics of places. BIMs are digital files (often but not always in proprietary formats and containing proprietary data) which can be extracted, exchanged or networked to support decision-making regarding a built asset.", - "reference": "https://en.wikipedia.org/wiki/Building_information_modeling" - }, - "computer-aided-architectural-design": { - "name": "Computer Aided Architectural Design", - "abbreviation": "CAAD", - "description": "Computer-aided architectural design (CAAD) software programs are the repository of information for building design and construction. CAAD software is used by architects and architectural companies for the purpose of reaching their design and administrational goals.", - "reference": "https://en.wikipedia.org/wiki/Computer-aided_architectural_design" - }, - "parametric-design": { - "name": "Parametric Design", - "abbreviation": "PD", - "description": "Parametric design is a design method where features (such as building elements and engineering components) are shaped according to algorithmic processes, in contrast to more direct manipulation. In this approach, parameters and rules determine the relationship between design intent and design response.", - "reference": "https://en.wikipedia.org/wiki/Parametric_design" - }, - "procedural-modeling": { - "name": "Procedural Modeling", - "abbreviation": "PM", - "description": "Procedural modeling is an umbrella term for a number of techniques in computer graphics to create 3D models and textures from sets of rules. L-Systems, fractals, and generative modeling are procedural modeling techniques since they apply algorithms for producing scenes.", - "reference": "https://en.wikipedia.org/wiki/Procedural_modeling" - }, - "generative-design": { - "name": "Generative Design", - "abbreviation": "GD", - "description": "Generative design is an iterative design process that uses software to generate outputs that fulfill a set of constraints iteratively adjusted by a designer. Whether a human, test program, or artificial intelligence, the designer algorithmically or manually refines the feasible region of the program's inputs and outputs with each iteration to fulfill evolving design requirements.", - "reference": "https://en.wikipedia.org/wiki/Generative_design" - }, - "kit-of-parts": { - "name": "Kit-of-Parts", - "abbreviation": "KOP", - "description": "A kit-of-parts is a collection of components that can be assembled in various configurations to create a structure or system. This approach allows for flexibility and adaptability in design, enabling architects and builders to create customized solutions using pre-defined elements.", - "reference": "https://en.wikipedia.org/wiki/Kit-of-parts" - }, - "modular-extensible-scalable-reconfigurable": { - "name": "Modular Extensible Scalable Reconfigurable", - "abbreviation": "MESR", - "description": "A reconfigurable manufacturing system (RMS) is a system designed for rapid change in its structure, as well as its hardware and software components, to quickly adjust its production capacity and functionality within a part family in response to sudden market changes or intrinsic system change.", - "reference": "https://en.wikipedia.org/wiki/Reconfigurable_manufacturing_system" - }, - "port-based-knowledge": { - "name": "Port Based Knowledge", - "abbreviation": "PBK", - "description": "Port-based knowledge refers to a design methodology that uses ports as interfaces for components in a system. This approach allows for modularity and reusability, enabling designers to create complex systems by connecting simpler components through well-defined interfaces.", - "reference": "" - }, - "shape-grammar": { - "name": "Shape Grammar", - "abbreviation": "SG", - "description": "Shape grammars in computation are a specific class of production systems that generate geometric shapes. Typically, shapes are 2- or 3-dimensional, thus shape grammars are a way to study 2- and 3-dimensional languages.", - "reference": "https://en.wikipedia.org/wiki/Shape_grammar" - }, - "graph-based-design": { - "name": "Graph Based Design", - "abbreviation": "GBD", - "description": "A design methodology representing systems or artifacts as graphs, where nodes are components/elements and edges are their relationships. This allows for formal analysis and manipulation of designs using graph theory.", - "reference": "" - }, - "graph-transformations": { - "name": "Graph Transformations", - "abbreviation": "GT", - "description": "Graph transformation, also called graph rewriting, is the process of creating a new graph out of an original graph by applying graph rewrite rules. It has numerous applications, from software engineering to algorithm design.", - "reference": "https://en.wikipedia.org/wiki/Graph_rewriting" - }, - "graph-rewriting": { - "name": "Graph Rewriting", - "abbreviation": "GR", - "description": "Graph rewriting, also called graph transformation, is the process of creating a new graph out of an original graph by applying graph rewrite rules. It is used in various fields like software engineering, model-driven engineering, and algorithm design.", - "reference": "https://en.wikipedia.org/wiki/Graph_rewriting" - }, - "design-prototypes": { - "name": "Design Prototypes", - "abbreviation": "DP", - "description": "A prototype is an early sample, model, or release of a product built to test a concept or process. It is used to evaluate a new design to enhance precision by system analysts and users.", - "reference": "https://en.wikipedia.org/wiki/Prototype" - }, - "design-systems": { - "name": "Design Systems", - "abbreviation": "DS", - "description": "A design system is a set of standards to manage design at scale by reducing redundancy while creating a shared language and visual consistency across different pages and channels.", - "reference": "https://en.wikipedia.org/wiki/Design_system" - }, - "computer-based-design-synthesis": { - "name": "Computer Based Design Synthesis", - "abbreviation": "CBDS", - "description": "The application of computational algorithms to automatically or semi-automatically generate design solutions by exploring a defined solution space based on specified goals and constraints.", - "reference": "" - }, - "computer-generated-architecture": { - "name": "Computer Generated Architecture", - "abbreviation": "CGA", - "description": "Generative design in architecture is an iterative process where software generates multiple design outputs meeting specific constraints. Architects use it to explore various forms and structures based on parameters like site conditions, materials, and performance requirements.", - "reference": "https://en.wikipedia.org/wiki/Generative_design#Architecture" - } -} \ No newline at end of file + "artificial-intelligence": { + "name": "Artificial Intelligence", + "abbreviation": "AI", + "description": "Artificial intelligence (AI) is intelligence demonstrated by machines, in contrast to the natural intelligence displayed by humans and animals. Leading AI textbooks define the field as the study of 'intelligent agents': any device that perceives its environment and takes actions that maximize its chance of successfully achieving its goals.", + "reference": "https://en.wikipedia.org/wiki/Artificial_intelligence" + }, + "building-information-modeling": { + "name": "Building Information Modeling", + "abbreviation": "BIM", + "description": "Building Information Modeling (BIM) is a process involving the generation and management of digital representations of physical and functional characteristics of places. BIMs are digital files (often but not always in proprietary formats and containing proprietary data) which can be extracted, exchanged or networked to support decision-making regarding a built asset.", + "reference": "https://en.wikipedia.org/wiki/Building_information_modeling" + }, + "computer-aided-architectural-design": { + "name": "Computer Aided Architectural Design", + "abbreviation": "CAAD", + "description": "Computer-aided architectural design (CAAD) software programs are the repository of information for building design and construction. CAAD software is used by architects and architectural companies for the purpose of reaching their design and administrational goals.", + "reference": "https://en.wikipedia.org/wiki/Computer-aided_architectural_design" + }, + "parametric-design": { + "name": "Parametric Design", + "abbreviation": "PD", + "description": "Parametric design is a design method where features (such as building elements and engineering components) are shaped according to algorithmic processes, in contrast to more direct manipulation. In this approach, parameters and rules determine the relationship between design intent and design response.", + "reference": "https://en.wikipedia.org/wiki/Parametric_design" + }, + "procedural-modeling": { + "name": "Procedural Modeling", + "abbreviation": "PM", + "description": "Procedural modeling is an umbrella term for a number of techniques in computer graphics to create 3D models and textures from sets of rules. L-Systems, fractals, and generative modeling are procedural modeling techniques since they apply algorithms for producing scenes.", + "reference": "https://en.wikipedia.org/wiki/Procedural_modeling" + }, + "generative-design": { + "name": "Generative Design", + "abbreviation": "GD", + "description": "Generative design is an iterative design process that uses software to generate outputs that fulfill a set of constraints iteratively adjusted by a designer. Whether a human, test program, or artificial intelligence, the designer algorithmically or manually refines the feasible region of the program's inputs and outputs with each iteration to fulfill evolving design requirements.", + "reference": "https://en.wikipedia.org/wiki/Generative_design" + }, + "kit-of-parts": { + "name": "Kit-of-Parts", + "abbreviation": "KOP", + "description": "A kit-of-parts is a collection of components that can be assembled in various configurations to create a structure or system. This approach allows for flexibility and adaptability in design, enabling architects and builders to create customized solutions using pre-defined elements.", + "reference": "https://en.wikipedia.org/wiki/Kit-of-parts" + }, + "modular-extensible-scalable-reconfigurable": { + "name": "Modular Extensible Scalable Reconfigurable", + "abbreviation": "MESR", + "description": "A reconfigurable manufacturing system (RMS) is a system designed for rapid change in its structure, as well as its hardware and software components, to quickly adjust its production capacity and functionality within a part family in response to sudden market changes or intrinsic system change.", + "reference": "https://en.wikipedia.org/wiki/Reconfigurable_manufacturing_system" + }, + "port-based-knowledge": { + "name": "Port Based Knowledge", + "abbreviation": "PBK", + "description": "Port-based knowledge refers to a design methodology that uses ports as interfaces for components in a system. This approach allows for modularity and reusability, enabling designers to create complex systems by connecting simpler components through well-defined interfaces.", + "reference": "" + }, + "shape-grammar": { + "name": "Shape Grammar", + "abbreviation": "SG", + "description": "Shape grammars in computation are a specific class of production systems that generate geometric shapes. Typically, shapes are 2- or 3-dimensional, thus shape grammars are a way to study 2- and 3-dimensional languages.", + "reference": "https://en.wikipedia.org/wiki/Shape_grammar" + }, + "graph-based-design": { + "name": "Graph Based Design", + "abbreviation": "GBD", + "description": "A design methodology representing systems or artifacts as graphs, where nodes are components/elements and edges are their relationships. This allows for formal analysis and manipulation of designs using graph theory.", + "reference": "" + }, + "graph-transformations": { + "name": "Graph Transformations", + "abbreviation": "GT", + "description": "Graph transformation, also called graph rewriting, is the process of creating a new graph out of an original graph by applying graph rewrite rules. It has numerous applications, from software engineering to algorithm design.", + "reference": "https://en.wikipedia.org/wiki/Graph_rewriting" + }, + "graph-rewriting": { + "name": "Graph Rewriting", + "abbreviation": "GR", + "description": "Graph rewriting, also called graph transformation, is the process of creating a new graph out of an original graph by applying graph rewrite rules. It is used in various fields like software engineering, model-driven engineering, and algorithm design.", + "reference": "https://en.wikipedia.org/wiki/Graph_rewriting" + }, + "design-prototypes": { + "name": "Design Prototypes", + "abbreviation": "DP", + "description": "A prototype is an early sample, model, or release of a product built to test a concept or process. It is used to evaluate a new design to enhance precision by system analysts and users.", + "reference": "https://en.wikipedia.org/wiki/Prototype" + }, + "design-systems": { + "name": "Design Systems", + "abbreviation": "DS", + "description": "A design system is a set of standards to manage design at scale by reducing redundancy while creating a shared language and visual consistency across different pages and channels.", + "reference": "https://en.wikipedia.org/wiki/Design_system" + }, + "computer-based-design-synthesis": { + "name": "Computer Based Design Synthesis", + "abbreviation": "CBDS", + "description": "The application of computational algorithms to automatically or semi-automatically generate design solutions by exploring a defined solution space based on specified goals and constraints.", + "reference": "" + }, + "computer-generated-architecture": { + "name": "Computer Generated Architecture", + "abbreviation": "CGA", + "description": "Generative design in architecture is an iterative process where software generates multiple design outputs meeting specific constraints. Architects use it to explore various forms and structures based on parameters like site conditions, materials, and performance requirements.", + "reference": "https://en.wikipedia.org/wiki/Generative_design#Architecture" + } +} diff --git a/assets/logo/elements.svg b/assets/logo/elements.svg new file mode 100644 index 000000000..6ef51dfe4 --- /dev/null +++ b/assets/logo/elements.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + diff --git a/assets/logo/logo.svg b/assets/logo/logo.svg new file mode 100644 index 000000000..ba0173006 --- /dev/null +++ b/assets/logo/logo.svg @@ -0,0 +1,786 @@ + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo.ts b/assets/logo/logo.ts new file mode 100644 index 000000000..12ebf2d1d --- /dev/null +++ b/assets/logo/logo.ts @@ -0,0 +1,441 @@ +#!/usr/bin/env node + +import * as fs from 'fs'; +import { JSDOM } from 'jsdom'; +import * as path from 'path'; + +interface TransformData { + translate: { x: number; y: number }; + rotate: { angle: number; cx: number; cy: number }; + scale: { x: number; y: number }; +} + +interface GroupData { + id: string; + transform: TransformData; + path: { + d: string; + fill: string; + stroke: string; + strokeWidth: string; + }; +} + +interface KeyframeData { + groups: GroupData[]; +} + +/** + * Convert transform values to a 2D matrix + */ +function transformToMatrix(translate: { x: number, y: number }, rotate: { angle: number, cx: number, cy: number }, scale: { x: number, y: number }): string { + const tx = translate.x; + const ty = translate.y; + const angle = rotate.angle * Math.PI / 180; // Convert to radians + const cx = rotate.cx; + const cy = rotate.cy; + const sx = scale.x === 0 ? 1 : scale.x; + const sy = scale.y === 0 ? 1 : scale.y; + + // Start with identity matrix + let a = 1, b = 0, c = 0, d = 1, e = 0, f = 0; + + // Apply translation + e += tx; + f += ty; + + // Apply rotation around point (cx, cy) + if (angle !== 0) { + // Translate to rotation center + e -= cx; + f -= cy; + + // Apply rotation + const cos_a = Math.cos(angle); + const sin_a = Math.sin(angle); + const new_a = a * cos_a - b * sin_a; + const new_b = a * sin_a + b * cos_a; + const new_c = c * cos_a - d * sin_a; + const new_d = c * sin_a + d * cos_a; + const new_e = e * cos_a - f * sin_a; + const new_f = e * sin_a + f * cos_a; + + a = new_a; b = new_b; c = new_c; d = new_d; e = new_e; f = new_f; + + // Translate back from rotation center + e += cx; + f += cy; + } + + // Apply scale + a *= sx; + b *= sx; + c *= sy; + d *= sy; + + return `${a} ${b} ${c} ${d} ${e} ${f}`; +} + +/** + * Parse transform string (matrix or individual transforms) into structured data + */ +function parseTransform(transformStr: string): TransformData { + const result: TransformData = { + translate: { x: 0, y: 0 }, + rotate: { angle: 0, cx: 0, cy: 0 }, + scale: { x: 1, y: 1 } + }; + + if (!transformStr) return result; + + // Handle matrix transform + const matrixMatch = transformStr.match(/matrix\(([^)]+)\)/); + if (matrixMatch) { + const values = matrixMatch[1].split(/[,\s]+/).map(Number); + if (values.length === 6) { + const [a, b, c, d, e, f] = values; + + // Extract translation + result.translate.x = e; + result.translate.y = f; + + // Calculate determinant to detect reflection + const det = a * d - b * c; + const hasReflection = det < 0; + + // Calculate scale magnitudes + const scaleXMag = Math.sqrt(a * a + b * b); + const scaleYMag = Math.sqrt(c * c + d * d); + + // Calculate rotation + let rotation = Math.atan2(b, a) * (180 / Math.PI); + + // Handle the different matrix cases more carefully + if (Math.abs(a) === 1 && b === 0 && c === 0 && Math.abs(d) === 1) { + // Simple scale/reflection case: matrix(±1,0,0,±1,tx,ty) + result.scale.x = a; + result.scale.y = d; + result.rotate.angle = 0; + } else if (a === 0 && Math.abs(b) >= 1 && Math.abs(c) >= 1 && d === 0) { + // 90° rotation cases: matrix(0,±scale,±scale,0,tx,ty) + const bSign = Math.sign(b); + const cSign = Math.sign(c); + const scaleValueB = Math.abs(b); + const scaleValueC = Math.abs(c); + + // matrix(0,b,c,0) where b and c can be positive or negative + if (bSign === -1 && cSign === -1) { + // matrix(0,-scale,-scale,0,tx,ty) = 90° rotation + reflection + result.scale.x = -scaleValueB; // Include the reflection + result.scale.y = scaleValueC; + result.rotate.angle = 90; + } else if (bSign === 1 && cSign === -1) { + // matrix(0,scale,-scale,0,tx,ty) = -90° rotation + result.scale.x = scaleValueB; + result.scale.y = scaleValueC; + result.rotate.angle = -90; + } else if (bSign === -1 && cSign === 1) { + // matrix(0,-scale,scale,0,tx,ty) = 90° rotation + result.scale.x = scaleValueB; + result.scale.y = scaleValueC; + result.rotate.angle = 90; + } else { + // matrix(0,scale,scale,0,tx,ty) = -90° rotation + reflection + result.scale.x = scaleValueB; + result.scale.y = -scaleValueC; // Include the reflection + result.rotate.angle = -90; + } + } else { + // General case - decompose more carefully + if (hasReflection) { + // For reflections, preserve the sign information in scale + result.scale.x = Math.sign(a) * scaleXMag; + result.scale.y = Math.sign(d) * scaleYMag; + result.rotate.angle = rotation; + } else { + result.scale.x = scaleXMag; + result.scale.y = scaleYMag; + result.rotate.angle = rotation; + } + } + + // Ensure scale values are never 0 + if (result.scale.x === 0) result.scale.x = 1; + if (result.scale.y === 0) result.scale.y = 1; + } + return result; + } + + // Handle individual transforms + const translateMatch = transformStr.match(/translate\(([^)]+)\)/); + if (translateMatch) { + const values = translateMatch[1].split(/[,\s]+/).map(Number); + result.translate.x = values[0] || 0; + result.translate.y = values[1] || 0; + } + + const rotateMatch = transformStr.match(/rotate\(([^)]+)\)/); + if (rotateMatch) { + const values = rotateMatch[1].split(/[,\s]+/).map(Number); + result.rotate.angle = values[0] || 0; + result.rotate.cx = values[1] || 0; + result.rotate.cy = values[2] || 0; + + // If rotation center is specified and is not at origin, we need to preserve this info + // SVG animation can handle rotation centers directly, so don't convert to translate + // The animation engine will handle this properly + } + + const scaleMatch = transformStr.match(/scale\(([^)]+)\)/); + if (scaleMatch) { + const values = scaleMatch[1].split(/[,\s]+/).map(Number); + const scaleX = values[0] || 1; + const scaleY = values[1] || values[0] || 1; + // Ensure scale values are never 0 + result.scale.x = scaleX === 0 ? 1 : scaleX; + result.scale.y = scaleY === 0 ? 1 : scaleY; + } + + return result; +} + +/** + * Parse SVG file and extract groups with transforms and paths + */ +function parseSVGFile(filePath: string): KeyframeData { + const svgContent = fs.readFileSync(filePath, 'utf-8'); + const dom = new JSDOM(svgContent, { contentType: 'text/xml' }); + const document = dom.window.document; + + const groups: GroupData[] = []; + const gElements = document.querySelectorAll('g[id]'); + + gElements.forEach(g => { + const id = g.getAttribute('id')!; + const transformStr = g.getAttribute('transform') || ''; + const pathElement = g.querySelector('path'); + + if (pathElement) { + const transform = parseTransform(transformStr); + const groupData: GroupData = { + id, + transform, + path: { + d: pathElement.getAttribute('d') || '', + fill: pathElement.getAttribute('fill') || '#000000', + stroke: pathElement.getAttribute('stroke') || 'none', + strokeWidth: pathElement.getAttribute('stroke-width') || '0' + } + }; + + groups.push(groupData); + } + }); + + return { groups }; +} + +/** + * Generate keyframes sequence with hold times (1 to n, then n-1 to 1, then back to 1 for loop) + */ +function generateKeyframeSequence(keyframes: KeyframeData[]): KeyframeData[] { + const sequence: KeyframeData[] = []; + + // Add keyframes 1 to n with hold frames + for (let i = 0; i < keyframes.length; i++) { + sequence.push(keyframes[i]); + sequence.push(keyframes[i]); // Hold frame 1 + sequence.push(keyframes[i]); // Hold frame 2 + } + + // Add keyframes n-1 to 2 (excluding first and last to avoid duplication) with hold frames + for (let i = keyframes.length - 2; i > 0; i--) { + sequence.push(keyframes[i]); + sequence.push(keyframes[i]); // Hold frame 1 + sequence.push(keyframes[i]); // Hold frame 2 + } + + // Add the first keyframe at the end to complete the loop smoothly + sequence.push(keyframes[0]); + + return sequence; +} + +/** + * Create animated SVG from keyframes + */ +function createAnimatedSVG(keyframes: KeyframeData[], outputPath: string): void { + const sequence = generateKeyframeSequence(keyframes); + const totalFrames = sequence.length; + + // Calculate duration: Keep fast transitions but longer holds + const transitionDuration = 0.5; // Fast transition between keyframes + const holdDuration = 1.5; // Longer hold on each keyframe + const totalDuration = (keyframes.length * (transitionDuration + holdDuration) * 2); // *2 for back and forth + + // Create keyTimes array with proper timing for transitions and holds + const keyTimes: string[] = []; + let currentTime = 0; + const timeStep = 1 / (totalFrames - 1); + + for (let i = 0; i < totalFrames; i++) { + keyTimes.push((i * timeStep).toFixed(3)); + } + const keyTimesStr = keyTimes.join(';'); + + // For smooth in/out easing with longer holds, we'll use calcMode="spline" with keySplines + // Each transition gets different easing depending on whether it's a transition or hold + const keySplines: string[] = []; + for (let i = 0; i < totalFrames - 1; i++) { + // Check if this is a transition or hold based on sequence pattern + const currentFrame = sequence[i]; + const nextFrame = sequence[i + 1]; + const isSameFrame = JSON.stringify(currentFrame) === JSON.stringify(nextFrame); + + if (isSameFrame) { + // Hold frame - linear (no easing) + keySplines.push('0 0 1 1'); + } else { + // Transition frame - smooth ease-in-out + keySplines.push('0.25 0.1 0.75 0.9'); + } + } + const keySplinesStr = keySplines.join(';'); + + // Group all unique group IDs + const allGroupIds = new Set(); + keyframes.forEach(kf => kf.groups.forEach(g => allGroupIds.add(g.id))); + + let svgContent = ` + + semio + +`; + + // Create animated groups + Array.from(allGroupIds).forEach(groupId => { + // Find this group in all keyframes + const groupFrames = sequence.map(kf => { + const group = kf.groups.find(g => g.id === groupId); + return group || null; + }); + + // Skip if group doesn't exist in any frame + if (groupFrames.every(gf => gf === null)) return; + + // Use first non-null group for path data + const firstGroup = groupFrames.find(gf => gf !== null); + if (!firstGroup) return; + + svgContent += ` +`; + + // Generate translate animation + const translateValues = groupFrames.map(gf => { + if (gf) { + return `${gf.transform.translate.x} ${gf.transform.translate.y}`; + } + return `${firstGroup.transform.translate.x} ${firstGroup.transform.translate.y}`; + }).join(';'); + + svgContent += ` +`; + + // Generate rotation animation + const rotateValues = groupFrames.map(gf => { + if (gf) { + return `${gf.transform.rotate.angle} ${gf.transform.rotate.cx} ${gf.transform.rotate.cy}`; + } + return `${firstGroup.transform.rotate.angle} ${firstGroup.transform.rotate.cx} ${firstGroup.transform.rotate.cy}`; + }).join(';'); + + svgContent += ` +`; + + // Generate scale animation (ensure scale never goes to 0 0, default to 1 1) + const scaleValues = groupFrames.map(gf => { + if (gf) { + // Ensure scale values are never 0, default to 1 + const scaleX = gf.transform.scale.x === 0 ? 1 : gf.transform.scale.x; + const scaleY = gf.transform.scale.y === 0 ? 1 : gf.transform.scale.y; + return `${scaleX} ${scaleY}`; + } + // Use 1 1 as default scale when group doesn't exist in this frame + return `1 1`; + }).join(';'); + + svgContent += ` +`; + + // Add path with fill and stroke animations + const fillValues = groupFrames.map(gf => { + return gf ? gf.path.fill : firstGroup.path.fill; + }).join(';'); + + const strokeValues = groupFrames.map(gf => { + return gf ? gf.path.stroke : firstGroup.path.stroke; + }).join(';'); + + const strokeWidthValues = groupFrames.map(gf => { + return gf ? gf.path.strokeWidth : firstGroup.path.strokeWidth; + }).join(';'); + + svgContent += ` + + + + + +`; + }); + + svgContent += ``; + + fs.writeFileSync(outputPath, svgContent); + console.log(`Animated SVG created: ${outputPath}`); +} + +/** + * Main function + */ +function main(): void { + const logoDir = path.dirname(__filename); + + // Parse input keyframes + const keyframes: KeyframeData[] = []; + for (let i = 1; i <= 6; i++) { + const filePath = path.join(logoDir, `logo_${i}.svg`); + if (fs.existsSync(filePath)) { + console.log(`Parsing ${filePath}...`); + keyframes.push(parseSVGFile(filePath)); + } else { + console.warn(`Warning: ${filePath} not found`); + } + } + + if (keyframes.length === 0) { + console.error('No keyframe files found!'); + process.exit(1); + } + + console.log(`Found ${keyframes.length} keyframes`); + console.log(`Will generate ${generateKeyframeSequence(keyframes).length} animation frames`); + + // Create animated SVG + const outputPath = path.join(logoDir, 'logo_generated.svg'); + createAnimatedSVG(keyframes, outputPath); +} + +// Run if called directly +if (require.main === module) { + main(); +} + +export { createAnimatedSVG, generateKeyframeSequence, parseSVGFile }; + diff --git a/assets/logo/logo_1.svg b/assets/logo/logo_1.svg new file mode 100644 index 000000000..4d332504f --- /dev/null +++ b/assets/logo/logo_1.svg @@ -0,0 +1,83 @@ + + + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_2.svg b/assets/logo/logo_2.svg new file mode 100644 index 000000000..ebd3f5c41 --- /dev/null +++ b/assets/logo/logo_2.svg @@ -0,0 +1,83 @@ + + + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_3.svg b/assets/logo/logo_3.svg new file mode 100644 index 000000000..4e3a74218 --- /dev/null +++ b/assets/logo/logo_3.svg @@ -0,0 +1,83 @@ + + + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_4.svg b/assets/logo/logo_4.svg new file mode 100644 index 000000000..1c13df829 --- /dev/null +++ b/assets/logo/logo_4.svg @@ -0,0 +1,83 @@ + + + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_5.svg b/assets/logo/logo_5.svg new file mode 100644 index 000000000..ad9d44881 --- /dev/null +++ b/assets/logo/logo_5.svg @@ -0,0 +1,83 @@ + + + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_6.svg b/assets/logo/logo_6.svg new file mode 100644 index 000000000..72f40df3d --- /dev/null +++ b/assets/logo/logo_6.svg @@ -0,0 +1,83 @@ + + + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_dark.svg b/assets/logo/logo_dark.svg new file mode 100644 index 000000000..37b10fc64 --- /dev/null +++ b/assets/logo/logo_dark.svg @@ -0,0 +1,786 @@ + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/logo_generated.svg b/assets/logo/logo_generated.svg new file mode 100644 index 000000000..c26a899a8 --- /dev/null +++ b/assets/logo/logo_generated.svg @@ -0,0 +1,787 @@ + + + semio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/logo/package.json b/assets/logo/package.json index 317b5ea1c..54ab48141 100644 --- a/assets/logo/package.json +++ b/assets/logo/package.json @@ -4,11 +4,21 @@ "sourceRoot": "logo", "projectType": "library", "scripts": { - "build": "powershell -ExecutionPolicy Bypass -File ./build.ps1" + "build": "powershell -ExecutionPolicy Bypass -File ./build.ps1", + "animate": "tsx logo.ts", + "dev": "tsx watch logo.ts" + }, + "dependencies": { + "jsdom": "^24.1.0" + }, + "devDependencies": { + "@types/jsdom": "^21.1.6", + "@types/node": "^20.0.0", + "tsx": "^4.7.0" }, "author": { "name": "Ueli Saluz", "email": "ueli@semio-tech.com", "url": "https://github.com/usalu" } -} \ No newline at end of file +} diff --git a/assets/package.json b/assets/package.json index 9626033fa..2d6954043 100644 --- a/assets/package.json +++ b/assets/package.json @@ -8,4 +8,4 @@ "email": "ueli@semio-tech.com", "url": "https://github.com/usalu" } -} \ No newline at end of file +} diff --git a/assets/semio/design_capsule-dream.json b/assets/semio/design_capsule-dream.json index 682709ce9..d8e6a8fc4 100644 --- a/assets/semio/design_capsule-dream.json +++ b/assets/semio/design_capsule-dream.json @@ -1 +1,118042 @@ -{"name":"Capsule Dream","description":"A wild dream of capsule towers.","icon":"icons/capsule-dream.svg","image":"images/capsule-dream.png","variant":"","view":"","location":null,"unit":"m","pieces":[{"id_":"Nakagin Capsule Tower,,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":27.5,"z":0.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":27.5,"y":137.5,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":137.5,"y":110.0,"z":0.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":110.0,"y":0.0,"z":0.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":9.075,"y":63.8,"z":0.0},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":18.425,"y":101.2,"z":0.0},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":36.3,"y":18.425,"z":0.0},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":73.7,"y":9.075,"z":0.0},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":63.8,"y":128.425,"z":0.0},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":101.2,"y":119.075,"z":0.0},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":119.075,"y":36.3,"z":0.0},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":128.425,"y":73.7,"z":0.0},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":54.725,"y":92.125,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":82.775,"y":45.375,"z":0.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":45.375,"y":54.725,"z":0.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":92.125,"y":82.775,"z":0.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":289.0,"turn":0.0,"tilt":5.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":100.0,"turn":0.0,"tilt":5.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":81.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":267.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":87.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":269.01,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":89.01001,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":267.99,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":87.98999,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":276.27002,"turn":0.0,"tilt":1.6499939,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":93.29999,"turn":0.0,"tilt":1.6499939,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":87.03,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":282.72998,"turn":0.0,"tilt":3.350006,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":96.70001,"turn":0.0,"tilt":3.350006,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":83.97,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":0.98,"rise":0.0,"rotation":274.26,"turn":0.0,"tilt":1.6499939,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":0.98,"rise":0.0,"rotation":91.29001,"turn":0.0,"tilt":1.6499939,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":87.03,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.02,"rise":0.0,"rotation":281.74,"turn":0.0,"tilt":3.350006,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.02,"rise":0.0,"rotation":95.70999,"turn":0.0,"tilt":3.350006,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":83.97,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":269.01,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":89.01001,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":267.99,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":87.98999,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":276.27002,"turn":0.0,"tilt":1.6499939,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":93.29999,"turn":0.0,"tilt":1.6499939,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":87.03,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":282.72998,"turn":0.0,"tilt":3.350006,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":96.70001,"turn":0.0,"tilt":3.350006,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":83.97,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"36876.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"21.297397","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"3.2905e+8","unit":"€","definition":""},{"name":"return","value":"4.1202e+7","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"2.3816e+7","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"4.6906e+6","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"785382.405556","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"4.5893e+7","unit":"€","definition":""},{"name":"maintenance expenses","value":"4.0299e+6","unit":"€/a","definition":""},{"name":"specific energy demand","value":"94.343562","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"660707.555556","unit":"€/a","definition":""},{"name":"heating energy demand","value":"1.2139e+6","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"925684","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"1.1017e+6","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Capsule Dream", + "description": "A wild dream of capsule towers.", + "icon": "icons/capsule-dream.svg", + "image": "images/capsule-dream.png", + "variant": "", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "Nakagin Capsule Tower,,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 27.5, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 27.5, + "y": 137.5, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 137.5, + "y": 110.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 110.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 9.075, + "y": 63.8, + "z": 0.0 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 18.425, + "y": 101.2, + "z": 0.0 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 36.3, + "y": 18.425, + "z": 0.0 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 73.7, + "y": 9.075, + "z": 0.0 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 63.8, + "y": 128.425, + "z": 0.0 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 101.2, + "y": 119.075, + "z": 0.0 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 119.075, + "y": 36.3, + "z": 0.0 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 128.425, + "y": 73.7, + "z": 0.0 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 54.725, + "y": 92.125, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 82.775, + "y": 45.375, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 45.375, + "y": 54.725, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 92.125, + "y": 82.775, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 289.0, + "turn": 0.0, + "tilt": 5.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 100.0, + "turn": 0.0, + "tilt": 5.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 81.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 267.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 87.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 269.01, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 89.01001, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 267.99, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 87.98999, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 276.27002, + "turn": 0.0, + "tilt": 1.6499939, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 93.29999, + "turn": 0.0, + "tilt": 1.6499939, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 87.03, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 282.72998, + "turn": 0.0, + "tilt": 3.350006, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 96.70001, + "turn": 0.0, + "tilt": 3.350006, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 83.97, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.98, + "rise": 0.0, + "rotation": 274.26, + "turn": 0.0, + "tilt": 1.6499939, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.98, + "rise": 0.0, + "rotation": 91.29001, + "turn": 0.0, + "tilt": 1.6499939, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 87.03, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.02, + "rise": 0.0, + "rotation": 281.74, + "turn": 0.0, + "tilt": 3.350006, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.02, + "rise": 0.0, + "rotation": 95.70999, + "turn": 0.0, + "tilt": 3.350006, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 83.97, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 269.01, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 89.01001, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 267.99, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 87.98999, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 276.27002, + "turn": 0.0, + "tilt": 1.6499939, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 93.29999, + "turn": 0.0, + "tilt": 1.6499939, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 87.03, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 282.72998, + "turn": 0.0, + "tilt": 3.350006, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 96.70001, + "turn": 0.0, + "tilt": 3.350006, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 83.97, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "36876.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "21.297397", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "3.2905e+8", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "4.1202e+7", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "2.3816e+7", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "4.6906e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "785382.405556", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "4.5893e+7", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "4.0299e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "94.343562", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "660707.555556", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "1.2139e+6", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "925684", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "1.1017e+6", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_capsule-dream_flat.json b/assets/semio/design_capsule-dream_flat.json index 57c1aa1a0..d911d5a2c 100644 --- a/assets/semio/design_capsule-dream_flat.json +++ b/assets/semio/design_capsule-dream_flat.json @@ -1 +1,112313 @@ -{"name":"Capsule Dream","description":"A wild dream of capsule towers.","icon":"icons/capsule-dream.svg","image":"images/capsule-dream.png","variant":"","view":"","location":null,"unit":"m","pieces":[{"id_":"Nakagin Capsule Tower,,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":27.5,"z":0.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":8.099999,"y":11.65,"z":13.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":8.099999,"y":11.65,"z":21.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":8.099999,"y":11.65,"z":29.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":39.583332},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":34.083332},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":7.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":7.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":10.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":10.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":35.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":13.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":13.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":15.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":15.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":18.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":18.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":21.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":21.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":24.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":24.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":26.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":26.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":18.65,"z":29.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":29.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.549999,"y":10.25,"z":32.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":7.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":7.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":10.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":10.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":35.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":13.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":15.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":15.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":18.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":18.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":21.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":24.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":24.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":26.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":26.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":15.95,"z":29.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.849999,"y":12.95,"z":32.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.849999,"y":15.95,"z":7.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":7.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.849999,"y":15.95,"z":10.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":10.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":35.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":13.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.849999,"y":15.95,"z":15.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":15.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.849999,"y":15.95,"z":18.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":18.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":21.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.849999,"y":15.95,"z":24.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":24.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.849999,"y":15.95,"z":26.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":26.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":29.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":12.95,"z":32.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":7.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":7.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":10.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":10.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":35.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":13.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":13.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":15.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":15.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":18.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":18.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":21.45},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":21.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":24.2},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":24.2},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":26.95},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":26.95},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":12.549999,"y":18.65,"z":29.7},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":29.7},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":10.25,"z":32.45},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":8.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.6499999,"y":6.7499995,"z":8.616667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":7.5499997,"z":11.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":7.5499997,"z":36.116665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":7.5499997,"z":14.116667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":7.5499997,"z":16.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":19.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.6499999,"y":6.7499995,"z":19.616667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":22.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.6499999,"y":6.7499995,"z":22.366667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.75,"y":22.15,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":7.5499997,"z":25.116667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":11.75,"y":22.15,"z":27.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.6499999,"y":6.7499995,"z":27.866667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":11.75,"y":22.15,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.85,"y":7.5499997,"z":30.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.6499999,"y":6.7499995,"z":33.366665},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":8.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":6.35,"y":4.0499997,"z":8.616667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":4.8499994,"z":11.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":6.35,"y":4.0499997,"z":36.116665},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":4.8499994,"z":14.116667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":4.8499994,"z":16.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":19.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":6.35,"y":4.0499997,"z":19.616667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":22.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":6.35,"y":4.0499997,"z":22.366667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":4.8499994,"z":25.116667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":27.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":6.35,"y":4.0499997,"z":27.866667},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":9.05,"y":24.85,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.5499997,"y":4.8499994,"z":30.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":6.35,"y":4.0499997,"z":33.366665},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":24.05,"z":9.533333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":9.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.35,"y":24.85,"z":12.283333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":37.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.35,"y":24.85,"z":15.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":24.05,"z":17.783333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":17.783333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.35,"y":24.85,"z":20.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.35,"y":24.85,"z":23.283333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":23.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":24.05,"z":26.033333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":26.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":5.5499997,"y":24.05,"z":28.783333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":28.783333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.35,"y":24.85,"z":31.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.849999,"y":4.8499994,"z":34.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":21.35,"z":9.533333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":9.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":3.6499999,"y":22.15,"z":12.283333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":37.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":3.6499999,"y":22.15,"z":15.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":21.35,"z":17.783333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":17.783333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":3.6499999,"y":22.15,"z":20.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":21.35,"z":23.283333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":23.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":21.35,"z":26.033333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":26.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":2.85,"y":21.35,"z":28.783333},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":28.783333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":3.6499999,"y":22.15,"z":31.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.549999,"y":7.5499997,"z":34.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":7.7,"y":20.0,"z":7.5},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":7.7,"y":8.9,"z":7.5},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":10.25},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":10.25},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":7.7,"y":8.9,"z":35.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":13.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":13.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":15.75},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":15.75},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":18.5},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":18.5},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":21.25},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":21.25},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":24.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":24.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":20.0,"z":26.75},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":26.75},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":7.7,"y":20.0,"z":29.5},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":29.5},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.7,"y":8.9,"z":32.25},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":27.5,"y":137.5,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":11.65,"y":130.40001,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":11.65,"y":131.90001,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":11.65,"y":133.40001,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":8.9,"y":124.8,"z":39.583332},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":20.0,"y":133.8,"z":34.083332},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":134.8,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":124.8,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":135.3,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":124.3,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":119.8,"z":35.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":135.8,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":123.8,"z":13.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":136.3,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":123.3,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":136.8,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":122.8,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":137.3,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":122.3,"z":21.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":137.8,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":121.8,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":138.3,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":121.3,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.45,"y":138.8,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":120.8,"z":29.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.45,"y":120.3,"z":32.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":132.15001,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":127.450005,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":132.65001,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":126.950005,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":122.450005,"z":35.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":133.15001,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":133.65001,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":125.950005,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":134.15001,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":125.450005,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":134.65001,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":135.15001,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":124.450005,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":135.65001,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":123.950005,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.8,"y":136.15001,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":13.099999,"y":122.950005,"z":32.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":15.8,"y":127.450005,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":132.15001,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":15.8,"y":127.950005,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":131.65001,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":127.15,"z":35.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":131.15001,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":15.8,"y":128.95,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":130.65001,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":15.8,"y":129.45,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":130.15001,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":129.65001,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":15.8,"y":130.45,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":129.15001,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":15.8,"y":130.95,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":128.65001,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":128.15001,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":13.099999,"y":127.65,"z":32.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":124.8,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":134.8,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":125.3,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":134.3,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":129.8,"z":35.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":125.8,"z":13.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":133.8,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":126.3,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":133.3,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":126.8,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":132.8,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":127.3,"z":21.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":132.3,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":127.8,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":131.8,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":128.3,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":131.3,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":18.45,"y":128.8,"z":29.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":130.8,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":10.45,"y":130.3,"z":32.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":125.600006,"z":8.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":6.5499997,"y":134.0,"z":8.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":126.100006,"z":11.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":7.3499994,"y":134.3,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":7.3499994,"y":129.8,"z":36.116665},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":126.600006,"z":14.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":7.3499994,"y":133.8,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":127.100006,"z":16.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":7.3499994,"y":133.3,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":127.600006,"z":19.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":6.5499997,"y":132.0,"z":19.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":128.1,"z":22.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":6.5499997,"y":131.5,"z":22.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":22.35,"y":128.6,"z":25.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":7.3499994,"y":131.8,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":22.35,"y":129.1,"z":27.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":6.5499997,"y":130.5,"z":27.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":22.35,"y":129.6,"z":30.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":7.3499994,"y":130.8,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":6.5499997,"y":129.5,"z":33.366665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":128.25,"z":8.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":3.8999996,"y":131.35,"z":8.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":128.75,"z":11.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":4.7,"y":131.65001,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":3.8999996,"y":126.350006,"z":36.116665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":129.25,"z":14.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":4.7,"y":131.15001,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":129.75,"z":16.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":4.7,"y":130.65001,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":130.25,"z":19.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":3.8999996,"y":129.35,"z":19.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":130.75,"z":22.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":3.8999996,"y":128.85,"z":22.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":131.25,"z":25.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":4.7,"y":129.15001,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":131.75,"z":27.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":3.8999996,"y":127.850006,"z":27.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":25.0,"y":132.25,"z":30.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":4.7,"y":128.15001,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":3.8999996,"y":126.850006,"z":33.366665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":24.2,"y":132.15001,"z":9.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":127.450005,"z":9.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":25.0,"y":131.85,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":126.950005,"z":12.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":122.450005,"z":37.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":25.0,"y":132.35,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":126.450005,"z":15.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":24.2,"y":133.65001,"z":17.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":125.950005,"z":17.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":25.0,"y":133.35,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":125.450005,"z":20.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":25.0,"y":133.85,"z":23.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":124.950005,"z":23.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":24.2,"y":135.15001,"z":26.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":124.450005,"z":26.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":24.2,"y":135.65001,"z":28.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":123.950005,"z":28.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":25.0,"y":135.35,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":123.450005,"z":31.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":4.7,"y":122.950005,"z":34.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":21.55,"y":134.8,"z":9.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":124.8,"z":9.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":22.35,"y":134.5,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":124.3,"z":12.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":119.8,"z":37.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":22.35,"y":135.0,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":123.8,"z":15.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":21.55,"y":136.3,"z":17.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":123.3,"z":17.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":22.35,"y":136.0,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":122.8,"z":20.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":21.55,"y":137.3,"z":23.283333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":122.3,"z":23.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":21.55,"y":137.8,"z":26.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":121.8,"z":26.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":21.55,"y":138.3,"z":28.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":121.3,"z":28.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":22.35,"y":138.0,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":120.8,"z":31.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3499994,"y":120.3,"z":34.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":20.0,"y":129.8,"z":7.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":8.9,"y":129.8,"z":7.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":130.3,"z":10.25},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":129.3,"z":10.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":8.9,"y":124.8,"z":35.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":130.8,"z":13.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":128.8,"z":13.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":131.3,"z":15.75},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":128.3,"z":15.75},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":131.8,"z":18.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":127.8,"z":18.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":132.3,"z":21.25},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":127.3,"z":21.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":132.8,"z":24.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":126.8,"z":24.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":20.0,"y":133.3,"z":26.75},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":126.3,"z":26.75},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":20.0,"y":133.8,"z":29.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":125.8,"z":29.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.9,"y":125.3,"z":32.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":137.5,"y":110.0,"z":0.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":133.94275,"y":117.694786,"z":33.27122},"xAxis":{"x":-0.5753389,"y":-0.8177769,"z":-0.015033832},"yAxis":{"x":0.81772906,"y":-0.57471883,"z":-0.031897496}},"center":{"x":-0.12357646,"y":10.494074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":137.99884,"y":112.53033,"z":62.876194},"xAxis":{"x":-0.97823864,"y":-0.17338446,"z":0.11396066},"yAxis":{"x":0.1709279,"y":-0.98479384,"z":-0.031060498}},"center":{"x":-0.12357646,"y":22.374077},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":141.00517,"y":106.695335,"z":92.48181},"xAxis":{"x":-0.7959064,"y":0.570233,"z":0.20338961},"yAxis":{"x":-0.5710203,"y":-0.8186831,"z":0.060776904}},"center":{"x":-0.12357646,"y":34.254074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":117.93729,"y":123.961006,"z":123.16797},"xAxis":{"x":-0.31402892,"y":0.93382967,"z":-0.17131259},"yAxis":{"x":-0.91865724,"y":-0.344424,"z":-0.19349675}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":136.13455,"y":111.515366,"z":103.420906},"xAxis":{"x":-0.7450154,"y":0.63712275,"z":0.19755179},"yAxis":{"x":-0.63599,"y":-0.7677775,"z":0.07768176}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":137.3818,"y":112.406906,"z":12.989752},"xAxis":{"x":-0.09029477,"y":-0.9953887,"z":-0.03237674},"yAxis":{"x":0.99420047,"y":-0.091998495,"z":0.055692818}},"center":{"x":-0.93696856,"y":0.7832468},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.314926,"y":122.0073,"z":12.989752},"xAxis":{"x":-0.06653002,"y":0.997259,"z":-0.03237674},"yAxis":{"x":-0.99635196,"y":-0.0646614,"z":0.055692818}},"center":{"x":1.124723,"y":3.1688933},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":136.52615,"y":109.71794,"z":22.922638},"xAxis":{"x":-0.34421495,"y":-0.93889034,"z":-0.0009968684},"yAxis":{"x":0.9385935,"y":-0.34413248,"z":0.024800014}},"center":{"x":-0.93696856,"y":4.743247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.73938,"y":124.79701,"z":22.922638},"xAxis":{"x":0.19310229,"y":0.9811781,"z":-0.0009968645},"yAxis":{"x":-0.98087204,"y":0.19306725,"z":0.024800016}},"center":{"x":1.124723,"y":7.1288934},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":125.62988,"y":128.39691,"z":114.93756},"xAxis":{"x":0.5112397,"y":-0.8182523,"z":0.26286313},"yAxis":{"x":0.8071614,"y":0.56217724,"z":0.18013114}},"center":{"x":1.124723,"y":42.76889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":135.40482,"y":107.52786,"z":32.95115},"xAxis":{"x":-0.5736374,"y":-0.8182601,"z":0.03729018},"yAxis":{"x":0.81888974,"y":-0.5739431,"z":0.0029793852}},"center":{"x":-0.93696856,"y":8.703246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.50431,"y":127.135544,"z":32.95115},"xAxis":{"x":0.43857092,"y":0.8979226,"z":0.037290182},"yAxis":{"x":-0.89859235,"y":0.43877432,"z":0.0029793861}},"center":{"x":1.124723,"y":11.088894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":134.15887,"y":105.890015,"z":43.069942},"xAxis":{"x":-0.76265264,"y":-0.6418631,"z":0.07982934},"yAxis":{"x":0.6433902,"y":-0.7654939,"z":-0.008255903}},"center":{"x":-0.93696856,"y":12.663246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":124.47869,"y":128.94814,"z":43.069942},"xAxis":{"x":0.6528536,"y":0.75326586,"z":0.07982935},"yAxis":{"x":-0.7552186,"y":0.655421,"z":-0.008255898}},"center":{"x":1.124723,"y":15.048893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":132.93811,"y":104.81945,"z":53.267418},"xAxis":{"x":-0.8981532,"y":-0.42193183,"z":0.12367071},"yAxis":{"x":0.42426497,"y":-0.9055016,"z":-0.008126721}},"center":{"x":-0.93696856,"y":16.623247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":125.51694,"y":130.19649,"z":53.267418},"xAxis":{"x":0.82109076,"y":0.55723923,"z":0.12367071},"yAxis":{"x":-0.5606932,"y":0.82798374,"z":-0.008126717}},"center":{"x":1.124723,"y":19.008894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.89053,"y":104.29187,"z":63.52652},"xAxis":{"x":-0.9707426,"y":-0.17371759,"z":0.16577406},"yAxis":{"x":0.17670953,"y":-0.98425734,"z":0.0033579662}},"center":{"x":-0.93696856,"y":20.583248},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":126.469086,"y":130.88144,"z":63.52652},"xAxis":{"x":0.9316157,"y":0.3234364,"z":0.16577406},"yAxis":{"x":-0.3285057,"y":0.94449604,"z":0.0033579704}},"center":{"x":1.124723,"y":22.968895},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.15216,"y":104.24535,"z":73.82591},"xAxis":{"x":-0.9753871,"y":0.08556697,"z":0.2032197},"yAxis":{"x":-0.082109146,"y":-0.99629956,"z":0.025401745}},"center":{"x":-0.93696856,"y":24.543247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.19109,"y":131.0429,"z":73.82591},"xAxis":{"x":0.97676414,"y":0.068070665,"z":0.2032197},"yAxis":{"x":-0.074757345,"y":0.99687815,"z":0.025401747}},"center":{"x":1.124723,"y":26.928894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.83754,"y":104.58458,"z":84.14147},"xAxis":{"x":-0.9117647,"y":0.3379415,"z":0.23341092},"yAxis":{"x":-0.33424303,"y":-0.94079334,"z":0.05647598}},"center":{"x":-0.93696856,"y":28.503246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.55491,"y":130.75706,"z":84.14147},"xAxis":{"x":0.9534051,"y":-0.19114947,"z":0.23341092},"yAxis":{"x":0.18295546,"y":0.9814977,"z":0.056475975}},"center":{"x":1.124723,"y":30.888893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.03186,"y":105.1875,"z":94.44796},"xAxis":{"x":-0.7842873,"y":0.56590486,"z":0.25425407},"yAxis":{"x":-0.56220764,"y":-0.8215877,"z":0.09442578}},"center":{"x":-0.93696856,"y":32.463245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.457306,"y":130.13116,"z":94.44796},"xAxis":{"x":0.8631584,"y":-0.4362481,"z":0.25425407},"yAxis":{"x":0.42676133,"y":0.8994212,"z":0.094425775}},"center":{"x":1.124723,"y":34.848892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":126.82706,"y":129.29602,"z":104.72075},"xAxis":{"x":0.7122824,"y":-0.6502286,"z":0.2643038},"yAxis":{"x":0.63975334,"y":0.7563404,"z":0.13661948}},"center":{"x":1.124723,"y":38.80889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":134.91252,"y":117.57827,"z":13.435106},"xAxis":{"x":-0.53807175,"y":-0.83440876,"z":-0.11933507},"yAxis":{"x":0.8379547,"y":-0.54483956,"z":0.03133347}},"center":{"x":-0.4242164,"y":1.8345448},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":125.56278,"y":117.28589,"z":13.435106},"xAxis":{"x":0.40091687,"y":0.90830874,"z":-0.11933507},"yAxis":{"x":-0.91286975,"y":0.4070467,"z":0.03133347}},"center":{"x":0.45382434,"y":2.2107508},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":135.48816,"y":115.35852,"z":23.303574},"xAxis":{"x":-0.7386987,"y":-0.6695792,"z":-0.07738132},"yAxis":{"x":0.67040634,"y":-0.74176097,"z":0.018601367}},"center":{"x":-0.4242164,"y":5.7945447},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":124.64698,"y":119.38825,"z":23.303574},"xAxis":{"x":0.62485886,"y":0.77689356,"z":-0.07738131},"yAxis":{"x":-0.77818954,"y":0.627754,"z":0.018601371}},"center":{"x":0.45382434,"y":6.170751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":120.627045,"y":130.85843,"z":113.54069},"xAxis":{"x":0.09541839,"y":-0.99164784,"z":0.08677476},"yAxis":{"x":0.9532186,"y":0.116141684,"z":0.27907962}},"center":{"x":0.45382434,"y":41.81075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":135.86687,"y":113.25151,"z":33.20622},"xAxis":{"x":-0.88840693,"y":-0.4578397,"z":-0.033405066},"yAxis":{"x":0.4575195,"y":-0.88903475,"z":0.01712037}},"center":{"x":-0.4242164,"y":9.754545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.08572,"y":111.30482,"z":43.146427},"xAxis":{"x":-0.97681475,"y":-0.2138735,"z":0.009544118},"yAxis":{"x":0.21405698,"y":-0.9764481,"z":0.026993174}},"center":{"x":-0.4242164,"y":13.714545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":123.42263,"y":123.29857,"z":43.146427},"xAxis":{"x":0.93133134,"y":0.36404783,"z":0.009544116},"yAxis":{"x":-0.3641717,"y":0.93094057,"z":0.026993178}},"center":{"x":0.45382434,"y":14.090751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.19292,"y":109.55492,"z":53.12499},"xAxis":{"x":-0.9977914,"y":0.045401324,"z":0.048487876},"yAxis":{"x":-0.043098077,"y":-0.99793935,"z":0.047535144}},"center":{"x":-0.4242164,"y":17.674545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":123.043,"y":125.010155,"z":53.12499},"xAxis":{"x":0.99260926,"y":0.11124659,"z":0.048487872},"yAxis":{"x":-0.11354463,"y":0.9923951,"z":0.047535148}},"center":{"x":0.45382434,"y":18.050749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.24437,"y":108.02462,"z":63.14002},"xAxis":{"x":-0.94988227,"y":0.30200514,"z":0.08072562},"yAxis":{"x":-0.296113,"y":-0.9520181,"z":0.077321775}},"center":{"x":-0.4242164,"y":21.634546},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.2999,"y":106.721535,"z":73.18712},"xAxis":{"x":-0.8364096,"y":0.5381435,"z":0.1040218},"yAxis":{"x":-0.52744234,"y":-0.84186876,"z":0.11428749}},"center":{"x":-0.4242164,"y":25.594545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.494095,"y":127.791916,"z":73.18712},"xAxis":{"x":0.9102962,"y":-0.4006748,"z":0.1040218},"yAxis":{"x":0.38925132,"y":0.9140141,"z":0.11428749}},"center":{"x":0.45382434,"y":25.970749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.41898,"y":105.637474,"z":83.25965},"xAxis":{"x":-0.6652424,"y":0.7374412,"z":0.11676091},"yAxis":{"x":-0.7210442,"y":-0.6751298,"z":0.15586886}},"center":{"x":-0.4242164,"y":29.554544},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.206894,"y":128.844,"z":83.25965},"xAxis":{"x":0.7724133,"y":-0.62429523,"z":0.11676091},"yAxis":{"x":0.6065534,"y":0.779614,"z":0.15586886}},"center":{"x":0.45382434,"y":29.930748},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.65674,"y":104.74911,"z":93.34923},"xAxis":{"x":-0.44825023,"y":0.8860777,"z":0.11805953},"yAxis":{"x":-0.8634931,"y":-0.46336386,"z":0.19918239}},"center":{"x":-0.4242164,"y":33.51454},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":121.32063,"y":130.34178,"z":103.44627},"xAxis":{"x":0.3503399,"y":-0.9303952,"z":0.10782764},"yAxis":{"x":0.89866537,"y":0.36634862,"z":0.24122445}},"center":{"x":0.45382434,"y":37.85075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":129.26485,"y":119.52754,"z":13.36509},"xAxis":{"x":0.08606999,"y":0.9891255,"z":0.11925897},"yAxis":{"x":-0.99278396,"y":0.09518274,"z":-0.07294013}},"center":{"x":-0.7832468,"y":2.8772452},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":131.44586,"y":116.2441,"z":13.36509},"xAxis":{"x":0.06972301,"y":-0.99041206,"z":0.11925897},"yAxis":{"x":0.995451,"y":0.061294764,"z":-0.07294013}},"center":{"x":0.6453203,"y":1.124723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":130.53271,"y":118.69622,"z":23.368233},"xAxis":{"x":0.34198764,"y":0.9355641,"z":0.08811502},"yAxis":{"x":-0.93709475,"y":0.34651875,"z":-0.042168815}},"center":{"x":-0.7832468,"y":6.837245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":130.06354,"y":116.866844,"z":23.368233},"xAxis":{"x":-0.19142272,"y":-0.9775444,"z":0.08811502},"yAxis":{"x":0.979765,"y":-0.19565862,"z":-0.04216882}},"center":{"x":0.6453203,"y":5.0847235},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":115.15579,"y":128.79222,"z":112.31718},"xAxis":{"x":-0.53402984,"y":0.826285,"z":-0.17906766},"yAxis":{"x":-0.8033065,"y":-0.5619361,"z":-0.1972979}},"center":{"x":0.6453203,"y":40.72472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":128.52435,"y":117.5765,"z":33.34264},"xAxis":{"x":-0.43918693,"y":-0.8970081,"z":0.049912926},"yAxis":{"x":0.89748985,"y":-0.44056073,"z":-0.020449623}},"center":{"x":0.6453203,"y":9.044723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":133.45811,"y":116.66922,"z":43.28672},"xAxis":{"x":0.7663193,"y":0.64241844,"z":0.0073018465},"yAxis":{"x":-0.64235586,"y":0.7663502,"z":-0.009288694}},"center":{"x":-0.7832468,"y":14.757245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":126.85706,"y":118.411255,"z":43.28672},"xAxis":{"x":-0.6563883,"y":-0.7543879,"z":0.0073018465},"yAxis":{"x":0.75433093,"y":-0.65642864,"z":-0.0092886975}},"center":{"x":0.6453203,"y":13.004723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":135.03949,"y":115.41705,"z":53.200996},"xAxis":{"x":0.9053076,"y":0.4231626,"z":-0.03676331},"yAxis":{"x":-0.42374516,"y":0.90573204,"z":-0.009459998}},"center":{"x":-0.7832468,"y":18.717243},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":125.099266,"y":119.40063,"z":53.200996},"xAxis":{"x":-0.82796454,"y":-0.55957407,"z":-0.03676331},"yAxis":{"x":0.56021583,"y":-0.82829267,"z":-0.009460002}},"center":{"x":0.6453203,"y":16.964722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":123.2949,"y":120.56341,"z":63.08804},"xAxis":{"x":-0.9420178,"y":-0.32607606,"z":-0.07922681},"yAxis":{"x":0.3286056,"y":-0.94423485,"z":-0.020951657}},"center":{"x":0.6453203,"y":20.924723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":138.21127,"y":112.37771,"z":72.95233},"xAxis":{"x":0.9894063,"y":-0.0857469,"z":-0.11714399},"yAxis":{"x":0.081211254,"y":0.99577034,"z":-0.04296676}},"center":{"x":-0.7832468,"y":26.637245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.49107,"y":121.90637,"z":72.95233},"xAxis":{"x":-0.9906388,"y":-0.070086025,"z":-0.11714399},"yAxis":{"x":0.07556139,"y":-0.996215,"z":-0.04296676}},"center":{"x":0.6453203,"y":24.884722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":139.70845,"y":110.60424,"z":82.799904},"xAxis":{"x":0.9286847,"y":-0.34010977,"z":-0.14788543},"yAxis":{"x":0.33254027,"y":0.94018304,"z":-0.07397867}},"center":{"x":-0.7832468,"y":30.597244},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":119.734886,"y":123.42379,"z":82.799904},"xAxis":{"x":-0.97045594,"y":0.19064417,"z":-0.14788543},"yAxis":{"x":-0.18136914,"y":-0.98062855,"z":-0.07397867}},"center":{"x":0.6453203,"y":28.84472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":118.07013,"y":125.09785,"z":92.63797},"xAxis":{"x":-0.88286877,"y":0.4380339,"z":-0.16931933},"yAxis":{"x":-0.4243689,"y":-0.89855635,"z":-0.11183681}},"center":{"x":0.6453203,"y":32.80472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.53426,"y":126.89984,"z":102.4744},"xAxis":{"x":-0.73395115,"y":0.65492773,"z":-0.17995936},"yAxis":{"x":-0.63658684,"y":-0.7556898,"z":-0.1539159}},"center":{"x":0.6453203,"y":36.76472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":124.13435,"y":116.95325,"z":13.079913},"xAxis":{"x":0.53869915,"y":0.8313422,"z":0.13665034},"yAxis":{"x":-0.8420566,"y":0.5365383,"z":0.055383664}},"center":{"x":-1.8345448,"y":3.3899975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":136.11047,"y":119.58929,"z":13.079913},"xAxis":{"x":-0.40201628,"y":-0.90537816,"z":0.13665034},"yAxis":{"x":0.91562253,"y":-0.39820597,"z":0.055383664}},"center":{"x":1.603463,"y":0.45382434},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":124.905914,"y":117.52671,"z":23.329191},"xAxis":{"x":0.73920655,"y":0.666781,"z":0.09474588},"yAxis":{"x":-0.6730452,"y":0.7364311,"z":0.06840568}},"center":{"x":-1.8345448,"y":7.3499975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":135.43813,"y":118.90219,"z":23.329191},"xAxis":{"x":-0.62579817,"y":-0.7742092,"z":0.09474588},"yAxis":{"x":0.7799621,"y":-0.6220769,"z":0.06840568}},"center":{"x":1.603463,"y":4.4138246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":112.743484,"y":123.575806,"z":112.316536},"xAxis":{"x":-0.09777797,"y":0.9927873,"z":-0.069375046},"yAxis":{"x":-0.9746976,"y":-0.109609395,"z":-0.19480874}},"center":{"x":1.603463,"y":40.05382},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":126.206604,"y":118.07464,"z":33.52624},"xAxis":{"x":0.8888702,"y":0.45533243,"z":0.050815266},"yAxis":{"x":-0.4579707,"y":0.88620365,"z":0.07004257}},"center":{"x":-1.8345448,"y":11.309998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":134.23915,"y":118.15753,"z":33.52624},"xAxis":{"x":-0.806697,"y":-0.58877647,"z":0.050815262},"yAxis":{"x":0.59096515,"y":-0.80365056,"z":0.07004257}},"center":{"x":1.603463,"y":8.373823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":128.00957,"y":118.4605,"z":43.654037},"xAxis":{"x":0.9773115,"y":0.21165964,"z":0.007904895},"yAxis":{"x":-0.21174754,"y":0.97546977,"z":0.060180828}},"center":{"x":-1.8345448,"y":15.269998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":132.51874,"y":117.49437,"z":43.654037},"xAxis":{"x":-0.9321683,"y":-0.36193895,"z":0.0079048965},"yAxis":{"x":0.36173764,"y":-0.9303355,"z":0.060180824}},"center":{"x":1.603463,"y":12.333823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":130.25316,"y":118.55902,"z":53.700356},"xAxis":{"x":0.9983974,"y":-0.047339655,"z":-0.031009555},"yAxis":{"x":0.04854965,"y":0.99803925,"z":0.03950432}},"center":{"x":-1.8345448,"y":19.229996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":130.31818,"y":117.04609,"z":53.700356},"xAxis":{"x":-0.993511,"y":-0.10942692,"z":-0.031009555},"yAxis":{"x":0.1081758,"y":-0.9933466,"z":0.039504316}},"center":{"x":1.603463,"y":16.293823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":132.84514,"y":118.26483,"z":63.658615},"xAxis":{"x":0.9506657,"y":-0.30370492,"z":-0.06322954},"yAxis":{"x":0.30487037,"y":0.952347,"z":0.009446877}},"center":{"x":-1.8345448,"y":23.189997},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":127.71209,"y":116.93118,"z":63.658615},"xAxis":{"x":-0.98647135,"y":0.15124895,"z":-0.06322954},"yAxis":{"x":-0.15213701,"y":-0.9883143,"z":0.009446874}},"center":{"x":1.603463,"y":20.253824},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":135.66913,"y":117.49981,"z":73.52836},"xAxis":{"x":0.8374265,"y":-0.5396583,"z":-0.08652073},"yAxis":{"x":0.5394398,"y":0.8415616,"z":-0.027907139}},"center":{"x":-1.8345448,"y":27.149996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":124.803185,"y":117.24501,"z":73.52836},"xAxis":{"x":-0.9115375,"y":0.40201184,"z":-0.08652073},"yAxis":{"x":-0.40114912,"y":-0.91558754,"z":-0.02790714}},"center":{"x":1.603463,"y":24.213823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":138.59265,"y":116.21848,"z":83.31523},"xAxis":{"x":0.6665323,"y":-0.7388373,"z":-0.09926797},"yAxis":{"x":0.7359914,"y":0.67336553,"z":-0.06996738}},"center":{"x":-1.8345448,"y":31.109995},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.71521,"y":118.05322,"z":83.31523},"xAxis":{"x":-0.77390575,"y":0.62547237,"z":-0.09926797},"yAxis":{"x":-0.6215926,"y":-0.7802097,"z":-0.06996738}},"center":{"x":1.603463,"y":28.173822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":141.47635,"y":114.41117,"z":93.03068},"xAxis":{"x":0.44983405,"y":-0.8874297,"z":-0.10058728},"yAxis":{"x":0.8808953,"y":0.4594226,"z":-0.11381713}},"center":{"x":-1.8345448,"y":35.069996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":118.58429,"y":119.387184,"z":93.03068},"xAxis":{"x":-0.5831204,"y":0.80613446,"z":-0.100587286},"yAxis":{"x":-0.7981805,"y":-0.5915687,"z":-0.113817126}},"center":{"x":1.603463,"y":32.133823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":115.54957,"y":121.241776,"z":102.69105},"xAxis":{"x":-0.35241157,"y":0.9314699,"z":-0.0903872},"yAxis":{"x":-0.91866726,"y":-0.36274594,"z":-0.1564156}},"center":{"x":1.603463,"y":36.093822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.898094,"y":111.19636,"z":13.386254},"xAxis":{"x":-0.9961783,"y":0.086254425,"z":0.013745277},"yAxis":{"x":-0.087324694,"y":-0.98676294,"z":-0.13665034}},"center":{"x":-2.8772452,"y":3.030967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":137.41862,"y":125.62514,"z":13.386254},"xAxis":{"x":0.9974069,"y":0.07064415,"z":0.013745278},"yAxis":{"x":-0.06811417,"y":0.9882748,"z":-0.13665034}},"center":{"x":2.6894908,"y":0.6453203},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.27969,"y":112.54775,"z":23.874218},"xAxis":{"x":-0.9392128,"y":0.34040016,"z":0.044800572},"yAxis":{"x":-0.34328505,"y":-0.93328565,"z":-0.10551448}},"center":{"x":-2.8772452,"y":6.990967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":138.08324,"y":124.62007,"z":23.844154},"xAxis":{"x":-0.19306059,"y":-0.97549695,"z":0.10551448},"yAxis":{"x":0.9808998,"y":-0.18928403,"z":0.044800572}},"center":{"x":2.6894908,"y":4.6053205},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":114.51503,"y":117.80386,"z":114.188},"xAxis":{"x":-0.53632927,"y":0.8283651,"z":-0.1617471},"yAxis":{"x":-0.8238691,"y":-0.55544287,"z":-0.112795725}},"center":{"x":2.6894908,"y":40.245316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.4476,"y":114.21,"z":34.33437},"xAxis":{"x":-0.8176738,"y":0.571807,"z":0.0666806},"yAxis":{"x":-0.5754634,"y":-0.81505233,"z":-0.06731664}},"center":{"x":-2.8772452,"y":10.950967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":138.24376,"y":122.985435,"z":34.30757},"xAxis":{"x":-0.44087622,"y":-0.89504004,"z":0.06731664},"yAxis":{"x":0.89705724,"y":-0.43685472,"z":0.0666806}},"center":{"x":2.6894908,"y":8.565319},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":122.45352,"y":115.96931,"z":44.731438},"xAxis":{"x":-0.6399897,"y":0.7644278,"z":0.077868074},"yAxis":{"x":-0.76775914,"y":-0.64026207,"z":-0.02470567}},"center":{"x":-2.8772452,"y":14.910967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":137.59796,"y":121.10553,"z":44.710922},"xAxis":{"x":-0.6581477,"y":-0.75248337,"z":0.02470567},"yAxis":{"x":0.7516931,"y":-0.65489995,"z":0.077868074}},"center":{"x":2.6894908,"y":12.52532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":124.29106,"y":117.60513,"z":55.034527},"xAxis":{"x":-0.418482,"y":0.90490496,"z":0.07758719},"yAxis":{"x":-0.9068373,"y":-0.42103586,"z":0.01936351}},"center":{"x":-2.8772452,"y":18.870966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":136.05765,"y":118.92091,"z":55.034527},"xAxis":{"x":0.5548881,"y":-0.8282991,"z":0.07758719},"yAxis":{"x":0.8298081,"y":0.5577128,"z":0.01936351}},"center":{"x":2.6894908,"y":16.48532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":126.89615,"y":118.90552,"z":65.219246},"xAxis":{"x":-0.16851151,"y":0.98349714,"z":0.06585742},"yAxis":{"x":-0.9830534,"y":-0.17257608,"z":0.061834898}},"center":{"x":-2.8772452,"y":22.830967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":133.68806,"y":117.229004,"z":65.219246},"xAxis":{"x":0.3202897,"y":-0.94502765,"z":0.06585742},"yAxis":{"x":0.9439535,"y":0.3242348,"z":0.061834894}},"center":{"x":2.6894908,"y":20.44532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":130.1515,"y":119.68176,"z":75.26943},"xAxis":{"x":0.09258743,"y":0.99475425,"z":0.043492176},"yAxis":{"x":-0.9911221,"y":0.08788756,"z":0.09976327}},"center":{"x":-2.8772452,"y":26.790966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.77992,"y":116.166115,"z":75.28069},"xAxis":{"x":-0.9926684,"y":-0.068240136,"z":-0.09976327},"yAxis":{"x":0.06416633,"y":-0.99699104,"z":0.043492176}},"center":{"x":2.6894908,"y":24.40532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":133.89473,"y":119.78151,"z":85.17824},"xAxis":{"x":0.3467086,"y":0.9378956,"z":0.012042396},"yAxis":{"x":-0.930484,"y":0.34229296,"z":0.13051844}},"center":{"x":-2.8772452,"y":30.750965},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":126.91268,"y":115.26898,"z":85.17824},"xAxis":{"x":-0.19572088,"y":-0.9805857,"z":0.012042397},"yAxis":{"x":0.9725746,"y":-0.19251902,"z":0.13051844}},"center":{"x":2.6894908,"y":28.365318},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":137.92961,"y":119.099304,"z":94.948616},"xAxis":{"x":0.57622975,"y":0.81686413,"z":-0.026311003},"yAxis":{"x":-0.805344,"y":0.57299817,"z":0.15196766}},"center":{"x":-2.8772452,"y":34.710964},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.08604,"y":115.403,"z":94.984276},"xAxis":{"x":-0.8850655,"y":0.43996006,"z":-0.15196766},"yAxis":{"x":-0.44134974,"y":-0.89694935,"z":-0.026310997}},"center":{"x":2.6894908,"y":32.325317},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":118.52421,"y":116.16535,"z":104.59315},"xAxis":{"x":-0.655687,"y":-0.7518818,"z":-0.068908356},"yAxis":{"x":0.7362096,"y":-0.65692395,"z":0.16262354}},"center":{"x":2.6894908,"y":36.285316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":124.484,"y":106.071236,"z":13.109857},"xAxis":{"x":-0.84092474,"y":0.5362139,"z":0.07294013},"yAxis":{"x":-0.5400496,"y":-0.8401528,"z":-0.049896974}},"center":{"x":-3.3899975,"y":1.979669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":134.0628,"y":130.28264,"z":13.109857},"xAxis":{"x":0.9144539,"y":-0.39806253,"z":0.07294013},"yAxis":{"x":0.40197182,"y":0.9142915,"z":-0.049896974}},"center":{"x":3.3603892,"y":1.603463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":122.44892,"y":106.92495,"z":23.656837},"xAxis":{"x":-0.6713363,"y":0.7361562,"z":0.08591624},"yAxis":{"x":-0.73931795,"y":-0.67331153,"z":-0.007780733}},"center":{"x":-3.3899975,"y":5.939669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.1757,"y":130.03833,"z":23.638098},"xAxis":{"x":-0.62488663,"y":-0.7806767,"z":0.0077807303},"yAxis":{"x":0.7782312,"y":-0.6220728,"z":0.08591624}},"center":{"x":3.3603892,"y":5.5634627},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":119.26449,"y":115.53506,"z":115.68764},"xAxis":{"x":-0.97830814,"y":-0.106028914,"z":-0.17796355},"yAxis":{"x":0.078710705,"y":-0.9849135,"z":0.15411016}},"center":{"x":3.3603892,"y":41.203457},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.12335,"y":108.47277,"z":34.237774},"xAxis":{"x":-0.4556935,"y":0.885827,"z":0.087486446},"yAxis":{"x":-0.887191,"y":-0.4599758,"z":0.03625492}},"center":{"x":-3.3899975,"y":9.899668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":137.80089,"y":128.71573,"z":34.227528},"xAxis":{"x":-0.8043121,"y":-0.5931,"z":-0.03625492},"yAxis":{"x":0.5886571,"y":-0.8036349,"z":0.08748644}},"center":{"x":3.3603892,"y":9.523462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":120.66257,"y":110.50884,"z":44.80902},"xAxis":{"x":-0.20895049,"y":0.97484714,"z":0.07754184},"yAxis":{"x":-0.97341424,"y":-0.21493964,"z":0.079156294}},"center":{"x":-3.3899975,"y":13.859668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":138.64517,"y":126.75641,"z":44.809345},"xAxis":{"x":-0.9278059,"y":-0.3645689,"z":-0.079156294},"yAxis":{"x":0.35887763,"y":-0.93015814,"z":0.077541836}},"center":{"x":3.3603892,"y":13.483462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.16187,"y":112.79343,"z":55.327602},"xAxis":{"x":0.051782206,"y":0.9970434,"z":0.05677206},"yAxis":{"x":-0.99200845,"y":0.04480468,"z":0.11794834}},"center":{"x":-3.3899975,"y":17.819668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":138.3956,"y":124.162895,"z":55.327602},"xAxis":{"x":0.10482726,"y":-0.99286866,"z":0.056772057},"yAxis":{"x":0.9868042,"y":0.11093123,"z":0.11794834}},"center":{"x":3.3603892,"y":17.443464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":122.650024,"y":115.06957,"z":65.75419},"xAxis":{"x":0.30842382,"y":0.9508766,"z":0.026617395},"yAxis":{"x":-0.9416842,"y":0.301245,"z":0.14994101}},"center":{"x":-3.3899975,"y":21.779669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":137.28183,"y":121.68197,"z":65.75419},"xAxis":{"x":-0.15587676,"y":-0.9874178,"z":0.026617393},"yAxis":{"x":0.9772156,"y":-0.15022431,"z":0.149941}},"center":{"x":3.3603892,"y":21.403465},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":125.08717,"y":117.08092,"z":76.05584},"xAxis":{"x":0.5431773,"y":0.8395482,"z":-0.01083105},"yAxis":{"x":-0.8259313,"y":0.5365982,"z":0.17291573}},"center":{"x":-3.3899975,"y":25.739668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":135.4503,"y":119.41681,"z":76.09259},"xAxis":{"x":-0.8997052,"y":0.40078765,"z":-0.17291573},"yAxis":{"x":-0.40515563,"y":-0.91418356,"z":-0.010831051}},"center":{"x":3.3603892,"y":25.363464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":128.36768,"y":118.589455,"z":86.20826},"xAxis":{"x":0.73976344,"y":0.67077833,"z":-0.05297638},"yAxis":{"x":-0.6527768,"y":0.73454344,"z":0.18527928}},"center":{"x":-3.3899975,"y":29.699667},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":132.18521,"y":117.31098,"z":86.20826},"xAxis":{"x":-0.6257229,"y":-0.7782444,"z":-0.052976377},"yAxis":{"x":0.7596479,"y":-0.6233832,"z":0.18527928}},"center":{"x":3.3603892,"y":29.323463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":132.32741,"y":119.392044,"z":96.19753},"xAxis":{"x":0.8845498,"y":0.45627055,"z":-0.09689598},"yAxis":{"x":-0.43422812,"y":0.8813541,"z":0.1861743}},"center":{"x":-3.3899975,"y":33.659668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.6736,"y":115.85613,"z":96.25415},"xAxis":{"x":-0.5667562,"y":0.80257493,"z":-0.18617432},"yAxis":{"x":-0.8022831,"y":-0.58902717,"z":-0.09689597}},"center":{"x":3.3603892,"y":33.28346},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":124.017586,"y":115.26304,"z":106.02104},"xAxis":{"x":-0.9225925,"y":-0.3596533,"z":-0.13954419},"yAxis":{"x":0.3344063,"y":-0.9259366,"z":0.17553876}},"center":{"x":3.3603892,"y":37.243458},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":130.16983,"y":103.7827,"z":13.928757},"xAxis":{"x":-0.08804783,"y":-0.9948696,"z":-0.049820874},"yAxis":{"x":0.99575406,"y":-0.086557,"z":-0.03133347}},"center":{"x":-3.030967,"y":0.93696856},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":128.08899,"y":131.65353,"z":13.928757},"xAxis":{"x":-0.06866809,"y":0.9963948,"z":-0.049820874},"yAxis":{"x":-0.99703515,"y":-0.07027893,"z":-0.03133347}},"center":{"x":3.1688933,"y":2.6894908},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.63999,"y":103.38346,"z":24.339933},"xAxis":{"x":-0.93802464,"y":0.34091404,"z":0.062348798},"yAxis":{"x":-0.34260687,"y":-0.9392964,"z":-0.018514436}},"center":{"x":-3.030967,"y":4.896969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":130.75946,"y":132.60188,"z":24.3487},"xAxis":{"x":0.19145048,"y":0.98132765,"z":-0.018514432},"yAxis":{"x":-0.9798067,"y":0.18997745,"z":-0.062348798}},"center":{"x":3.1688933,"y":6.6494904},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":124.76105,"y":117.500496,"z":117.7276},"xAxis":{"x":0.5173222,"y":-0.8195507,"z":0.24640305},"yAxis":{"x":0.8283961,"y":0.5518233,"z":0.09618185}},"center":{"x":3.1688933,"y":42.289486},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":125.25324,"y":103.72622,"z":34.84625},"xAxis":{"x":-0.8156954,"y":0.5723273,"z":0.08415719},"yAxis":{"x":-0.5728869,"y":-0.81939656,"z":0.019747058}},"center":{"x":-3.030967,"y":8.856968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":133.20276,"y":132.57068,"z":34.86703},"xAxis":{"x":0.43765178,"y":0.8989277,"z":0.01974706},"yAxis":{"x":-0.8951846,"y":0.43767813,"z":-0.08415719}},"center":{"x":3.1688933,"y":10.60949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":123.175156,"y":104.8946,"z":45.444443},"xAxis":{"x":-0.7629188,"y":-0.6434846,"z":0.062310327},"yAxis":{"x":0.63724935,"y":-0.7647492,"z":-0.09524632}},"center":{"x":-3.030967,"y":12.816968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":135.17146,"y":131.64952,"z":45.444443},"xAxis":{"x":0.65286285,"y":0.754909,"z":0.062310327},"yAxis":{"x":-0.7490369,"y":0.65564615,"z":-0.09524632}},"center":{"x":3.1688933,"y":14.56949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.433876,"y":106.63798,"z":55.997314},"xAxis":{"x":-0.41506103,"y":0.9048361,"z":0.0948472},"yAxis":{"x":-0.8995247,"y":-0.42375925,"z":0.10622378}},"center":{"x":-3.030967,"y":16.77697},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":136.45107,"y":129.98967,"z":56.03753},"xAxis":{"x":0.82215947,"y":0.5592587,"z":0.10622378},"yAxis":{"x":-0.5514985,"y":0.8287662,"z":-0.0948472}},"center":{"x":3.1688933,"y":18.529491},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.32351,"y":108.808,"z":66.55551},"xAxis":{"x":-0.16453825,"y":0.98287344,"z":0.08298752},"yAxis":{"x":-0.9732315,"y":-0.17545763,"z":0.1484422}},"center":{"x":-3.030967,"y":20.736969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":136.87482,"y":127.79363,"z":66.6018},"xAxis":{"x":0.9338018,"y":0.3255444,"z":0.1484422},"yAxis":{"x":-0.3162678,"y":0.9450332,"z":-0.08298751}},"center":{"x":3.1688933,"y":22.489492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":123.01869,"y":111.34694,"z":77.094765},"xAxis":{"x":-0.97892797,"y":0.08420157,"z":0.18603791},"yAxis":{"x":-0.096946254,"y":-0.99344975,"z":-0.060489677}},"center":{"x":-3.030967,"y":24.696968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":136.33536,"y":125.301094,"z":77.094765},"xAxis":{"x":0.98004776,"y":0.06997317,"z":0.18603791},"yAxis":{"x":-0.059657097,"y":0.9963845,"z":-0.060489673}},"center":{"x":3.1688933,"y":26.449492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":124.93854,"y":113.603165,"z":87.47887},"xAxis":{"x":-0.9162191,"y":0.33721203,"z":0.2164038},"yAxis":{"x":-0.35125956,"y":-0.93583155,"z":-0.028913813}},"center":{"x":-3.030967,"y":28.656967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":134.7921,"y":122.77232,"z":87.47887},"xAxis":{"x":0.9576905,"y":-0.18973216,"z":0.2164038},"yAxis":{"x":0.20053868,"y":0.979259,"z":-0.028913813}},"center":{"x":3.1688933,"y":30.40949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.82747,"y":115.20716,"z":97.678535},"xAxis":{"x":0.5807661,"y":0.8140145,"z":-0.009550408},"yAxis":{"x":-0.78945345,"y":0.5660285,"z":0.2374341}},"center":{"x":-3.030967,"y":32.616966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":132.27406,"y":120.47006,"z":97.72411},"xAxis":{"x":0.86828035,"y":-0.43556204,"z":0.2374341},"yAxis":{"x":0.44627598,"y":0.8948444,"z":0.009550402}},"center":{"x":3.1688933,"y":34.369488},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":128.87787,"y":118.64139,"z":107.810135},"xAxis":{"x":0.7180175,"y":-0.6504692,"z":0.24767049},"yAxis":{"x":0.660514,"y":0.74899447,"z":0.05223564}},"center":{"x":3.1688933,"y":38.329487},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":135.29613,"y":106.344864,"z":14.360628},"xAxis":{"x":-0.54166925,"y":-0.83996797,"z":-0.03237674},"yAxis":{"x":0.8400787,"y":-0.5422824,"z":0.014054429}},"center":{"x":-1.979669,"y":0.4242164},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":123.4266,"y":128.32098,"z":14.360628},"xAxis":{"x":0.40360045,"y":0.9143623,"z":-0.03237674},"yAxis":{"x":-0.91456765,"y":0.40418872,"z":0.01405443}},"center":{"x":2.2107508,"y":3.3603892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":133.29189,"y":104.41185,"z":24.533062},"xAxis":{"x":-0.672426,"y":0.7401634,"z":-0.0011949046},"yAxis":{"x":-0.74013644,"y":-0.6723857,"z":0.009771731}},"center":{"x":-1.979669,"y":4.3842163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":125.38494,"y":130.57452,"z":24.534779},"xAxis":{"x":0.6258398,"y":0.77989036,"z":0.009771734},"yAxis":{"x":-0.77993435,"y":0.62586015,"z":0.0011949074}},"center":{"x":2.2107508,"y":7.3203893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":127.138054,"y":122.73114,"z":117.87049},"xAxis":{"x":0.07268841,"y":-0.9826745,"z":0.17049108},"yAxis":{"x":0.9579899,"y":0.11634371,"z":0.26214415}},"center":{"x":2.2107508,"y":42.960384},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":130.98267,"y":103.26622,"z":34.819756},"xAxis":{"x":-0.45918667,"y":0.8883397,"z":0.0003825858},"yAxis":{"x":-0.8870442,"y":-0.45854017,"z":0.05379155}},"center":{"x":-1.979669,"y":8.344215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":127.48472,"y":131.99371,"z":34.83059},"xAxis":{"x":0.8043917,"y":0.59165907,"z":0.053791553},"yAxis":{"x":-0.59250027,"y":0.8055702,"z":-0.00038258414}},"center":{"x":2.2107508,"y":11.28039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":128.63087,"y":103.101074,"z":45.224186},"xAxis":{"x":-0.972205,"y":-0.21326065,"z":0.09663012},"yAxis":{"x":0.21514808,"y":-0.9765359,"z":0.009431346}},"center":{"x":-1.979669,"y":12.304215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":129.50233,"y":132.5675,"z":45.224186},"xAxis":{"x":0.9268742,"y":0.36272138,"z":0.09663012},"yAxis":{"x":-0.3652631,"y":0.9308565,"z":0.00943135}},"center":{"x":2.2107508,"y":15.24039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":127.1589,"y":103.38195,"z":55.663837},"xAxis":{"x":0.042766698,"y":0.9986359,"z":-0.029956149},"yAxis":{"x":-0.98971325,"y":0.046443693,"z":0.13531676}},"center":{"x":-1.979669,"y":16.264217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":131.21988,"y":132.34354,"z":55.68491},"xAxis":{"x":0.98479366,"y":0.108953364,"z":0.13531676},"yAxis":{"x":-0.11398089,"y":0.9930312,"z":0.029956153}},"center":{"x":2.2107508,"y":19.20039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":125.907875,"y":104.68936,"z":66.17745},"xAxis":{"x":-0.93835497,"y":0.30256343,"z":0.1671687},"yAxis":{"x":-0.2966723,"y":-0.9531072,"z":0.05976851}},"center":{"x":-1.979669,"y":20.224218},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":132.44028,"y":131.42474,"z":66.17745},"xAxis":{"x":0.9741336,"y":-0.15204732,"z":0.1671687},"yAxis":{"x":0.143921,"y":0.9877826,"z":0.059768513}},"center":{"x":2.2107508,"y":23.16039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":125.58297,"y":106.22157,"z":76.66428},"xAxis":{"x":-0.82169145,"y":0.5373377,"z":0.18997717},"yAxis":{"x":-0.5289615,"y":-0.8431069,"z":0.096801065}},"center":{"x":-1.979669,"y":24.184217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":133.00087,"y":129.96222,"z":76.66428},"xAxis":{"x":0.8956332,"y":-0.4021813,"z":0.18997717},"yAxis":{"x":0.39055812,"y":0.9154747,"z":0.096801065}},"center":{"x":2.2107508,"y":27.12039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":126.08067,"y":107.9828,"z":87.108284},"xAxis":{"x":-0.647813,"y":0.73448586,"z":0.20216045},"yAxis":{"x":-0.7235259,"y":-0.6762633,"z":0.13848576}},"center":{"x":-1.979669,"y":28.144217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":132.7848,"y":128.14482,"z":87.108284},"xAxis":{"x":0.75473624,"y":-0.62410283,"z":0.20216045},"yAxis":{"x":0.6088272,"y":0.78112173,"z":0.13848576}},"center":{"x":2.2107508,"y":31.080389},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":127.342224,"y":109.483505,"z":97.47112},"xAxis":{"x":0.8668732,"y":0.46414614,"z":-0.18193191},"yAxis":{"x":-0.42877734,"y":0.88033646,"z":0.20287369}},"center":{"x":-1.979669,"y":32.104214},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":131.72908,"y":126.18595,"z":97.47531},"xAxis":{"x":0.5612133,"y":-0.8024225,"z":0.20287369},"yAxis":{"x":0.7835921,"y":0.5940406,"z":0.1819319}},"center":{"x":2.2107508,"y":35.040386},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":129.8289,"y":124.30887,"z":107.73654},"xAxis":{"x":0.32848445,"y":-0.9247746,"z":0.19206746},"yAxis":{"x":0.9027337,"y":0.36720452,"z":0.22412671}},"center":{"x":2.2107508,"y":39.000385},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":129.75,"y":111.75,"z":12.5},"xAxis":{"x":0.94551855,"y":-0.32556817,"z":0.0},"yAxis":{"x":0.32432926,"y":0.9419206,"z":0.087155744}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":129.75,"y":123.85,"z":12.5},"xAxis":{"x":-0.9848077,"y":0.17364818,"z":1.7347235E-18},"yAxis":{"x":-0.17298739,"y":-0.98106027,"z":0.087155744}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":128.96852,"y":111.04165,"z":22.708858},"xAxis":{"x":0.8293582,"y":-0.5582617,"z":-0.022557568},"yAxis":{"x":0.5586466,"y":0.8279352,"z":0.04936801}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":130.41104,"y":124.671875,"z":22.708858},"xAxis":{"x":-0.9064788,"y":0.42164835,"z":-0.022557566},"yAxis":{"x":-0.42225114,"y":-0.90513355,"z":0.049368005}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":120.23438,"y":123.035126,"z":113.910194},"xAxis":{"x":0.91865724,"y":0.344424,"z":0.19349675},"yAxis":{"x":-0.31402892,"y":0.93382967,"z":-0.17131259}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":128.43864,"y":110.750946,"z":32.954247},"xAxis":{"x":0.6565101,"y":-0.7535248,"z":-0.034566317},"yAxis":{"x":0.75411546,"y":0.65670484,"z":0.0069739646}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":130.88892,"y":125.041885,"z":32.954247},"xAxis":{"x":-0.7663047,"y":0.64154685,"z":-0.034566317},"yAxis":{"x":-0.6420998,"y":-0.76658934,"z":0.006973962}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":128.26047,"y":110.79952,"z":43.215782},"xAxis":{"x":0.43896064,"y":-0.8978168,"z":-0.035193495},"yAxis":{"x":0.89718086,"y":0.4401035,"z":-0.037086535}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.0725,"y":125.02178,"z":43.215782},"xAxis":{"x":-0.5740058,"y":0.8180946,"z":-0.03519349},"yAxis":{"x":-0.81728774,"y":-0.5750351,"z":-0.037086535}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":128.5097,"y":111.08548,"z":53.47197},"xAxis":{"x":0.19179593,"y":-0.98113155,"z":-0.024395604},"yAxis":{"x":0.97792184,"y":0.19315164,"z":-0.07975807}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":130.87105,"y":124.700356,"z":53.47197},"xAxis":{"x":-0.34291738,"y":0.9390487,"z":-0.0243956},"yAxis":{"x":-0.93566644,"y":-0.34375426,"z":-0.07975807}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.23244,"y":111.490456,"z":63.701675},"xAxis":{"x":-0.067844145,"y":-0.99769163,"z":-0.0029214371},"yAxis":{"x":0.9907393,"y":-0.06702561,"z":-0.11808155}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":130.22057,"y":124.1873,"z":63.701675},"xAxis":{"x":-0.08906448,"y":0.99602157,"z":-0.0029214337},"yAxis":{"x":-0.9890267,"y":-0.08878534,"z":-0.11808154}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":130.44191,"y":111.88785,"z":73.88561},"xAxis":{"x":-0.3219546,"y":-0.9463486,"z":0.027739862},"yAxis":{"x":0.93474436,"y":-0.32238603,"z":-0.14939938}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.08815,"y":123.6056,"z":73.88561},"xAxis":{"x":0.16994928,"y":0.9850623,"z":0.027739864},"yAxis":{"x":-0.9736684,"y":0.1721907,"z":-0.14939938}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":132.1176,"y":112.151566,"z":84.00765},"xAxis":{"x":-0.5529139,"y":-0.8306629,"z":0.06546206},"yAxis":{"x":0.8138202,"y":-0.55522144,"z":-0.17153983}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":127.47434,"y":123.08299,"z":84.00765},"xAxis":{"x":0.41616234,"y":0.90693086,"z":0.06546206},"yAxis":{"x":-0.8906565,"y":0.4210762,"z":-0.17153983}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":134.20668,"y":112.164795,"z":94.05598},"xAxis":{"x":-0.744706,"y":-0.6586569,"z":0.10762927},"yAxis":{"x":0.63635224,"y":-0.7493856,"z":-0.1829675}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":125.413055,"y":122.743126,"z":94.05598},"xAxis":{"x":0.6325008,"y":0.76704544,"z":0.10762927},"yAxis":{"x":-0.7457474,"y":0.640612,"z":-0.1829675}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.969246,"y":122.69697,"z":104.02387},"xAxis":{"x":0.80396247,"y":0.5751064,"z":0.15131736},"yAxis":{"x":-0.54899013,"y":0.8155741,"z":-0.18288997}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":110.0,"y":0.0,"z":0.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":127.28635,"y":8.871574,"z":13.2},"xAxis":{"x":-0.9821934,"y":-0.1878725,"z":0.0},"yAxis":{"x":0.1878725,"y":-0.9821934,"z":0.0}},"center":{"x":0.018135905,"y":10.147437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":127.36145,"y":7.482663,"z":21.45},"xAxis":{"x":-0.99949074,"y":-0.031910583,"z":0.0},"yAxis":{"x":0.031910583,"y":-0.99949074,"z":0.0}},"center":{"x":0.018135905,"y":22.027437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":127.21835,"y":6.099103,"z":29.7},"xAxis":{"x":-0.99217725,"y":0.12483711,"z":0.0},"yAxis":{"x":-0.12483711,"y":-0.99217725,"z":0.0}},"center":{"x":0.018135905,"y":33.907433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":39.583332},"xAxis":{"x":-0.8910065,"y":0.45399052,"z":0.0},"yAxis":{"x":-0.45399052,"y":-0.8910065,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":34.083332},"xAxis":{"x":-0.9335804,"y":0.35836795,"z":0.0},"yAxis":{"x":-0.35836795,"y":-0.9335804,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.82053,"y":4.768862,"z":7.7},"xAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":-1.4286158,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.27946,"y":10.631138,"z":7.7},"xAxis":{"x":0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":1.4286158,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.66532,"y":4.7037673,"z":10.45},"xAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":-1.4286158,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.4347,"y":10.696233,"z":10.45},"xAxis":{"x":0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":1.4286158,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.92197,"y":10.898706,"z":35.2},"xAxis":{"x":0.99667823,"y":-0.08144013,"z":0.0},"yAxis":{"x":0.08144013,"y":0.99667823,"z":0.0}},"center":{"x":1.4286158,"y":42.912548},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.50691,"y":4.6468854,"z":13.2},"xAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":-1.4286158,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.5931,"y":10.753115,"z":13.2},"xAxis":{"x":0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":1.4286158,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.34574,"y":4.598372,"z":15.95},"xAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0},"yAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0}},"center":{"x":-1.4286158,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.75426,"y":10.801628,"z":15.95},"xAxis":{"x":0.9596648,"y":0.28114665,"z":0.0},"yAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0}},"center":{"x":1.4286158,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.18226,"y":4.5583596,"z":18.7},"xAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0},"yAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0}},"center":{"x":-1.4286158,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.91774,"y":10.84164,"z":18.7},"xAxis":{"x":0.9730637,"y":0.23053637,"z":0.0},"yAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0}},"center":{"x":1.4286158,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.01691,"y":4.5269585,"z":21.45},"xAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0},"yAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0}},"center":{"x":-1.4286158,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.0831,"y":10.873041,"z":21.45},"xAxis":{"x":0.9837955,"y":0.17929421,"z":0.0},"yAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0}},"center":{"x":1.4286158,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.85013,"y":4.5042543,"z":24.2},"xAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0},"yAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0}},"center":{"x":-1.4286158,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.24988,"y":10.895745,"z":24.2},"xAxis":{"x":0.99183077,"y":0.1275606,"z":0.0},"yAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0}},"center":{"x":1.4286158,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.682396,"y":4.4903097,"z":26.95},"xAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0},"yAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0}},"center":{"x":-1.4286158,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.4176,"y":10.90969,"z":26.95},"xAxis":{"x":0.9971475,"y":0.07547738,"z":0.0},"yAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0}},"center":{"x":1.4286158,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.51417,"y":4.4851623,"z":29.7},"xAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0},"yAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0}},"center":{"x":-1.4286158,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.58585,"y":10.914837,"z":29.7},"xAxis":{"x":0.9997311,"y":0.023187257,"z":0.0},"yAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0}},"center":{"x":1.4286158,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.7541,"y":10.911173,"z":32.45},"xAxis":{"x":0.99957454,"y":-0.029166406,"z":0.0},"yAxis":{"x":0.029166406,"y":0.99957454,"z":0.0}},"center":{"x":1.4286158,"y":38.95255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.553116,"y":6.693087,"z":7.7},"xAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":-0.5593769,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":126.54689,"y":8.706912,"z":7.7},"xAxis":{"x":0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":0.5593769,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.49623,"y":6.5346794,"z":10.45},"xAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":-0.5593769,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":126.603775,"y":8.86532,"z":10.45},"xAxis":{"x":0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":0.5593769,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":127.45939,"y":10.098569,"z":35.2},"xAxis":{"x":0.75846034,"y":0.6517192,"z":0.0},"yAxis":{"x":-0.6517192,"y":0.75846034,"z":0.0}},"center":{"x":0.5593769,"y":42.129883},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.43114,"y":6.379466,"z":13.2},"xAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":-0.5593769,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.35801,"y":6.227872,"z":15.95},"xAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0},"yAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0}},"center":{"x":-0.5593769,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":126.742,"y":9.172128,"z":15.95},"xAxis":{"x":0.47452843,"y":0.88024014,"z":0.0},"yAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0}},"center":{"x":0.5593769,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.27705,"y":6.0803127,"z":18.7},"xAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0},"yAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0}},"center":{"x":-0.5593769,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":126.82296,"y":9.319687,"z":18.7},"xAxis":{"x":0.51994634,"y":0.85419893,"z":0.0},"yAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0}},"center":{"x":0.5593769,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.18848,"y":5.937193,"z":21.45},"xAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0},"yAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0}},"center":{"x":-0.5593769,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":121.09253,"y":5.798905,"z":24.2},"xAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0},"yAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0}},"center":{"x":-0.5593769,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":127.00748,"y":9.601095,"z":24.2},"xAxis":{"x":0.6063861,"y":0.79517037,"z":0.0},"yAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0}},"center":{"x":0.5593769,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":120.98948,"y":5.6658278,"z":26.95},"xAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0},"yAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0}},"center":{"x":-0.5593769,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":127.11053,"y":9.734172,"z":26.95},"xAxis":{"x":0.6471711,"y":0.7623448,"z":0.0},"yAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0}},"center":{"x":0.5593769,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":120.87961,"y":5.538326,"z":29.7},"xAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0},"yAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0}},"center":{"x":-0.5593769,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":127.33679,"y":9.983251,"z":32.45},"xAxis":{"x":0.72331256,"y":0.69052076,"z":0.0},"yAxis":{"x":-0.69052076,"y":0.72331256,"z":0.0}},"center":{"x":0.5593769,"y":38.169884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.43114,"y":9.020534,"z":7.7},"xAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":-0.5016618,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.66887,"y":6.379466,"z":7.7},"xAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":0.5016618,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.49623,"y":8.86532,"z":10.45},"xAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":-0.5016618,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.603775,"y":6.5346794,"z":10.45},"xAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":0.5016618,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.4013,"y":8.021953,"z":35.2},"xAxis":{"x":0.08144013,"y":0.99667823,"z":0.0},"yAxis":{"x":-0.99667823,"y":0.08144013,"z":0.0}},"center":{"x":0.5016618,"y":41.028614},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.54689,"y":6.693087,"z":13.2},"xAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":0.5016618,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.60163,"y":8.545745,"z":15.95},"xAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0},"yAxis":{"x":0.9596648,"y":0.28114665,"z":0.0}},"center":{"x":-0.5016618,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.498375,"y":6.8542547,"z":15.95},"xAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0},"yAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0}},"center":{"x":0.5016618,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.64164,"y":8.382259,"z":18.7},"xAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0},"yAxis":{"x":0.9730637,"y":0.23053637,"z":0.0}},"center":{"x":-0.5016618,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.45837,"y":7.0177407,"z":18.7},"xAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0},"yAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0}},"center":{"x":0.5016618,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.42696,"y":7.1830964,"z":21.45},"xAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0},"yAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0}},"center":{"x":0.5016618,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.69575,"y":8.050131,"z":24.2},"xAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0},"yAxis":{"x":0.99183077,"y":0.1275606,"z":0.0}},"center":{"x":-0.5016618,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.40426,"y":7.349869,"z":24.2},"xAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0},"yAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0}},"center":{"x":0.5016618,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.709694,"y":7.8823986,"z":26.95},"xAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0},"yAxis":{"x":0.9971475,"y":0.07547738,"z":0.0}},"center":{"x":-0.5016618,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.39031,"y":7.517601,"z":26.95},"xAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0},"yAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0}},"center":{"x":0.5016618,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.38517,"y":7.6858335,"z":29.7},"xAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0},"yAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0}},"center":{"x":0.5016618,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.38883,"y":7.8541045,"z":32.45},"xAxis":{"x":0.029166406,"y":0.99957454,"z":0.0},"yAxis":{"x":-0.99957454,"y":0.029166406,"z":0.0}},"center":{"x":0.5016618,"y":37.068615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.50691,"y":10.753115,"z":7.7},"xAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":-1.284328,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":128.5931,"y":4.6468854,"z":7.7},"xAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":1.284328,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.66532,"y":10.696233,"z":10.45},"xAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":-1.284328,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":128.4347,"y":4.7037673,"z":10.45},"xAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":1.284328,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.20144,"y":5.5593815,"z":35.2},"xAxis":{"x":-0.6517192,"y":0.75846034,"z":0.0},"yAxis":{"x":-0.75846034,"y":-0.6517192,"z":0.0}},"center":{"x":1.284328,"y":40.15937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.82053,"y":10.631138,"z":13.2},"xAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":-1.284328,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":128.27946,"y":4.768862,"z":13.2},"xAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":1.284328,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.97213,"y":10.558009,"z":15.95},"xAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0},"yAxis":{"x":0.47452843,"y":0.88024014,"z":0.0}},"center":{"x":-1.284328,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":128.12788,"y":4.84199,"z":15.95},"xAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0},"yAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0}},"center":{"x":1.284328,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":120.11969,"y":10.477048,"z":18.7},"xAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0},"yAxis":{"x":0.51994634,"y":0.85419893,"z":0.0}},"center":{"x":-1.284328,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.980316,"y":4.922952,"z":18.7},"xAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0},"yAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0}},"center":{"x":1.284328,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":120.26281,"y":10.3884735,"z":21.45},"xAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0},"yAxis":{"x":0.5639391,"y":0.8258164,"z":0.0}},"center":{"x":-1.284328,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.8372,"y":5.0115256,"z":21.45},"xAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0},"yAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0}},"center":{"x":1.284328,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":120.40109,"y":10.292531,"z":24.2},"xAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0},"yAxis":{"x":0.6063861,"y":0.79517037,"z":0.0}},"center":{"x":-1.284328,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.69891,"y":5.1074686,"z":24.2},"xAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0},"yAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0}},"center":{"x":1.284328,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":120.53417,"y":10.189483,"z":26.95},"xAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0},"yAxis":{"x":0.6471711,"y":0.7623448,"z":0.0}},"center":{"x":-1.284328,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.565834,"y":5.210517,"z":26.95},"xAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0},"yAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0}},"center":{"x":1.284328,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":120.661674,"y":10.079611,"z":29.7},"xAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0},"yAxis":{"x":0.6861822,"y":0.7274297,"z":0.0}},"center":{"x":-1.284328,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.43833,"y":5.3203893,"z":29.7},"xAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0},"yAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0}},"center":{"x":1.284328,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.31676,"y":5.436784,"z":32.45},"xAxis":{"x":-0.69052076,"y":0.72331256,"z":0.0},"yAxis":{"x":-0.72331256,"y":-0.69052076,"z":0.0}},"center":{"x":1.284328,"y":36.19937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.17947,"y":10.631138,"z":8.616667},"xAxis":{"x":0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":-2.385598,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":130.92055,"y":4.768862,"z":8.616667},"xAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":2.385598,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.33468,"y":10.696233,"z":11.366667},"xAxis":{"x":0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":-2.385598,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.76532,"y":4.7037673,"z":11.366667},"xAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":2.385598,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.27805,"y":4.5012927,"z":36.116665},"xAxis":{"x":-0.99667823,"y":0.08144013,"z":0.0},"yAxis":{"x":-0.08144013,"y":-0.99667823,"z":0.0}},"center":{"x":2.385598,"y":40.101658},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.49309,"y":10.753115,"z":14.116667},"xAxis":{"x":0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":-2.385598,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.60692,"y":4.6468854,"z":14.116667},"xAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":2.385598,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.65426,"y":10.801628,"z":16.866667},"xAxis":{"x":0.9596648,"y":0.28114665,"z":0.0},"yAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0}},"center":{"x":-2.385598,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.44576,"y":4.598372,"z":16.866667},"xAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0},"yAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0}},"center":{"x":2.385598,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.81774,"y":10.84164,"z":19.616667},"xAxis":{"x":0.9730637,"y":0.23053637,"z":0.0},"yAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0}},"center":{"x":-2.385598,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":130.28227,"y":4.5583596,"z":19.616667},"xAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0},"yAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0}},"center":{"x":2.385598,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.98309,"y":10.873041,"z":22.366667},"xAxis":{"x":0.9837955,"y":0.17929421,"z":0.0},"yAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0}},"center":{"x":-2.385598,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":130.11691,"y":4.5269585,"z":22.366667},"xAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0},"yAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0}},"center":{"x":2.385598,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":118.14987,"y":10.895745,"z":25.116667},"xAxis":{"x":0.99183077,"y":0.1275606,"z":0.0},"yAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0}},"center":{"x":-2.385598,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.95013,"y":4.5042543,"z":25.116667},"xAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0},"yAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0}},"center":{"x":2.385598,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":118.317604,"y":10.90969,"z":27.866667},"xAxis":{"x":0.9971475,"y":0.07547738,"z":0.0},"yAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0}},"center":{"x":-2.385598,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":129.78241,"y":4.4903097,"z":27.866667},"xAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0},"yAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0}},"center":{"x":2.385598,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":118.48583,"y":10.914837,"z":30.616667},"xAxis":{"x":0.9997311,"y":0.023187257,"z":0.0},"yAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0}},"center":{"x":-2.385598,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.61417,"y":4.4851623,"z":30.616667},"xAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0},"yAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0}},"center":{"x":2.385598,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":129.4459,"y":4.4888268,"z":33.366665},"xAxis":{"x":-0.99957454,"y":0.029166406,"z":0.0},"yAxis":{"x":-0.029166406,"y":-0.99957454,"z":0.0}},"center":{"x":2.385598,"y":36.14166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.446884,"y":8.706912,"z":8.616667},"xAxis":{"x":0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":-3.2548368,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":132.65312,"y":6.693087,"z":8.616667},"xAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":3.2548368,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.50377,"y":8.86532,"z":11.366667},"xAxis":{"x":0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":-3.2548368,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":132.59624,"y":6.5346794,"z":11.366667},"xAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":3.2548368,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":131.74063,"y":5.3014307,"z":36.116665},"xAxis":{"x":-0.75846034,"y":-0.6517192,"z":0.0},"yAxis":{"x":0.6517192,"y":-0.75846034,"z":0.0}},"center":{"x":3.2548368,"y":40.884323},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.56886,"y":9.020534,"z":14.116667},"xAxis":{"x":0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":-3.2548368,"y":10.449885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":132.53114,"y":6.379466,"z":14.116667},"xAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":3.2548368,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.64199,"y":9.172128,"z":16.866667},"xAxis":{"x":0.47452843,"y":0.88024014,"z":0.0},"yAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0}},"center":{"x":-3.2548368,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":132.45802,"y":6.227872,"z":16.866667},"xAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0},"yAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0}},"center":{"x":3.2548368,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.72295,"y":9.319687,"z":19.616667},"xAxis":{"x":0.51994634,"y":0.85419893,"z":0.0},"yAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0}},"center":{"x":-3.2548368,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":132.37706,"y":6.0803127,"z":19.616667},"xAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0},"yAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0}},"center":{"x":3.2548368,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.81152,"y":9.462807,"z":22.366667},"xAxis":{"x":0.5639391,"y":0.8258164,"z":0.0},"yAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0}},"center":{"x":-3.2548368,"y":22.329885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":132.28848,"y":5.937193,"z":22.366667},"xAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0},"yAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0}},"center":{"x":3.2548368,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":115.90747,"y":9.601095,"z":25.116667},"xAxis":{"x":0.6063861,"y":0.79517037,"z":0.0},"yAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0}},"center":{"x":-3.2548368,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":132.19254,"y":5.798905,"z":25.116667},"xAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0},"yAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0}},"center":{"x":3.2548368,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":116.01052,"y":9.734172,"z":27.866667},"xAxis":{"x":0.6471711,"y":0.7623448,"z":0.0},"yAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0}},"center":{"x":-3.2548368,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":132.0895,"y":5.6658278,"z":27.866667},"xAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0},"yAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0}},"center":{"x":3.2548368,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":116.12039,"y":9.861673,"z":30.616667},"xAxis":{"x":0.6861822,"y":0.7274297,"z":0.0},"yAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0}},"center":{"x":-3.2548368,"y":34.209885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":131.97961,"y":5.538326,"z":30.616667},"xAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0},"yAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0}},"center":{"x":3.2548368,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":131.86322,"y":5.416749,"z":33.366665},"xAxis":{"x":-0.72331256,"y":-0.69052076,"z":0.0},"yAxis":{"x":0.69052076,"y":-0.72331256,"z":0.0}},"center":{"x":3.2548368,"y":36.924324},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":115.56886,"y":6.379466,"z":9.533333},"xAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":-3.312552,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.53114,"y":9.020534,"z":9.533333},"xAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":3.312552,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":115.50377,"y":6.5346794,"z":12.283333},"xAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":-3.312552,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.59624,"y":8.86532,"z":12.283333},"xAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":3.312552,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.7987,"y":7.3780465,"z":37.033333},"xAxis":{"x":-0.08144013,"y":-0.99667823,"z":0.0},"yAxis":{"x":0.99667823,"y":-0.08144013,"z":0.0}},"center":{"x":3.312552,"y":41.98559},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":115.446884,"y":6.693087,"z":15.033333},"xAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":-3.312552,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.65312,"y":8.706912,"z":15.033333},"xAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":3.312552,"y":10.305597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":115.39837,"y":6.8542547,"z":17.783333},"xAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0},"yAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0}},"center":{"x":-3.312552,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.70163,"y":8.545745,"z":17.783333},"xAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0},"yAxis":{"x":0.9596648,"y":0.28114665,"z":0.0}},"center":{"x":3.312552,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":115.35836,"y":7.0177407,"z":20.533333},"xAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0},"yAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0}},"center":{"x":-3.312552,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.74165,"y":8.382259,"z":20.533333},"xAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0},"yAxis":{"x":0.9730637,"y":0.23053637,"z":0.0}},"center":{"x":3.312552,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":115.32696,"y":7.1830964,"z":23.283333},"xAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0},"yAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0}},"center":{"x":-3.312552,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.77304,"y":8.216904,"z":23.283333},"xAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0},"yAxis":{"x":0.9837955,"y":0.17929421,"z":0.0}},"center":{"x":3.312552,"y":22.185598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":115.30425,"y":7.349869,"z":26.033333},"xAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0},"yAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0}},"center":{"x":-3.312552,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.79575,"y":8.050131,"z":26.033333},"xAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0},"yAxis":{"x":0.99183077,"y":0.1275606,"z":0.0}},"center":{"x":3.312552,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":115.290306,"y":7.517601,"z":28.783333},"xAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0},"yAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0}},"center":{"x":-3.312552,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.8097,"y":7.8823986,"z":28.783333},"xAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0},"yAxis":{"x":0.9971475,"y":0.07547738,"z":0.0}},"center":{"x":3.312552,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":115.285164,"y":7.6858335,"z":31.533333},"xAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0},"yAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0}},"center":{"x":-3.312552,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.81485,"y":7.714166,"z":31.533333},"xAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0},"yAxis":{"x":0.9997311,"y":0.023187257,"z":0.0}},"center":{"x":3.312552,"y":34.065594},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":132.81117,"y":7.545895,"z":34.283333},"xAxis":{"x":-0.029166406,"y":-0.99957454,"z":0.0},"yAxis":{"x":0.99957454,"y":-0.029166406,"z":0.0}},"center":{"x":3.312552,"y":38.025593},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.49309,"y":4.6468854,"z":9.533333},"xAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":-2.5298858,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":130.60692,"y":10.753115,"z":9.533333},"xAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":2.5298858,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":117.33468,"y":4.7037673,"z":12.283333},"xAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":-2.5298858,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":130.76532,"y":10.696233,"z":12.283333},"xAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":2.5298858,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.99858,"y":9.840618,"z":37.033333},"xAxis":{"x":0.6517192,"y":-0.75846034,"z":0.0},"yAxis":{"x":0.75846034,"y":0.6517192,"z":0.0}},"center":{"x":2.5298858,"y":42.854836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":117.17947,"y":4.768862,"z":15.033333},"xAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":-2.5298858,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":130.92055,"y":10.631138,"z":15.033333},"xAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":2.5298858,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.02787,"y":4.84199,"z":17.783333},"xAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0},"yAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0}},"center":{"x":-2.5298858,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.07213,"y":10.558009,"z":17.783333},"xAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0},"yAxis":{"x":0.47452843,"y":0.88024014,"z":0.0}},"center":{"x":2.5298858,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":116.88031,"y":4.922952,"z":20.533333},"xAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0},"yAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0}},"center":{"x":-2.5298858,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.2197,"y":10.477048,"z":20.533333},"xAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0},"yAxis":{"x":0.51994634,"y":0.85419893,"z":0.0}},"center":{"x":2.5298858,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":116.73719,"y":5.0115256,"z":23.283333},"xAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0},"yAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0}},"center":{"x":-2.5298858,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.36281,"y":10.3884735,"z":23.283333},"xAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0},"yAxis":{"x":0.5639391,"y":0.8258164,"z":0.0}},"center":{"x":2.5298858,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":116.59891,"y":5.1074686,"z":26.033333},"xAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0},"yAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0}},"center":{"x":-2.5298858,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.5011,"y":10.292531,"z":26.033333},"xAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0},"yAxis":{"x":0.6063861,"y":0.79517037,"z":0.0}},"center":{"x":2.5298858,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":116.46583,"y":5.210517,"z":28.783333},"xAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0},"yAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0}},"center":{"x":-2.5298858,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.63419,"y":10.189483,"z":28.783333},"xAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0},"yAxis":{"x":0.6471711,"y":0.7623448,"z":0.0}},"center":{"x":2.5298858,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":116.338326,"y":5.3203893,"z":31.533333},"xAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0},"yAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0}},"center":{"x":-2.5298858,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.76167,"y":10.079611,"z":31.533333},"xAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0},"yAxis":{"x":0.6861822,"y":0.7274297,"z":0.0}},"center":{"x":2.5298858,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.88326,"y":9.963216,"z":34.283333},"xAxis":{"x":0.69052076,"y":-0.72331256,"z":0.0},"yAxis":{"x":0.72331256,"y":0.69052076,"z":0.0}},"center":{"x":2.5298858,"y":38.894836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":118.5,"y":7.7,"z":7.5},"xAxis":{"x":0.052335955,"y":-0.9986295,"z":0.0},"yAxis":{"x":0.9986295,"y":0.052335955,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":129.6,"y":7.7,"z":7.5},"xAxis":{"x":-0.052335955,"y":0.9986295,"z":0.0},"yAxis":{"x":-0.9986295,"y":-0.052335955,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":10.25},"xAxis":{"x":2.3554114E-10,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":2.3554114E-10,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":10.25},"xAxis":{"x":-2.3554114E-10,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":-2.3554114E-10,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":129.6,"y":7.7,"z":35.0},"xAxis":{"x":0.45399052,"y":0.8910065,"z":0.0},"yAxis":{"x":-0.8910065,"y":0.45399052,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":13.0},"xAxis":{"x":-0.052335955,"y":-0.9986295,"z":0.0},"yAxis":{"x":0.9986295,"y":-0.052335955,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":13.0},"xAxis":{"x":0.052335955,"y":0.9986295,"z":0.0},"yAxis":{"x":-0.9986295,"y":0.052335955,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":15.75},"xAxis":{"x":-0.104528464,"y":-0.9945219,"z":0.0},"yAxis":{"x":0.9945219,"y":-0.104528464,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":15.75},"xAxis":{"x":0.104528464,"y":0.9945219,"z":0.0},"yAxis":{"x":-0.9945219,"y":0.104528464,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":18.5},"xAxis":{"x":-0.15643446,"y":-0.98768836,"z":0.0},"yAxis":{"x":0.98768836,"y":-0.15643446,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":18.5},"xAxis":{"x":0.15643446,"y":0.98768836,"z":0.0},"yAxis":{"x":-0.98768836,"y":0.15643446,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":21.25},"xAxis":{"x":-0.20791169,"y":-0.9781476,"z":0.0},"yAxis":{"x":0.9781476,"y":-0.20791169,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":21.25},"xAxis":{"x":0.20791169,"y":0.9781476,"z":0.0},"yAxis":{"x":-0.9781476,"y":0.20791169,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":24.0},"xAxis":{"x":-0.25881904,"y":-0.9659258,"z":0.0},"yAxis":{"x":0.9659258,"y":-0.25881904,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":24.0},"xAxis":{"x":0.25881904,"y":0.9659258,"z":0.0},"yAxis":{"x":-0.9659258,"y":0.25881904,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":118.5,"y":7.7,"z":26.75},"xAxis":{"x":-0.309017,"y":-0.95105654,"z":0.0},"yAxis":{"x":0.95105654,"y":-0.309017,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":26.75},"xAxis":{"x":0.309017,"y":0.95105654,"z":0.0},"yAxis":{"x":-0.95105654,"y":0.309017,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":118.5,"y":7.7,"z":29.5},"xAxis":{"x":-0.35836795,"y":-0.9335804,"z":0.0},"yAxis":{"x":0.9335804,"y":-0.35836795,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":29.5},"xAxis":{"x":0.35836795,"y":0.9335804,"z":0.0},"yAxis":{"x":-0.9335804,"y":0.35836795,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.6,"y":7.7,"z":32.25},"xAxis":{"x":0.40673664,"y":0.9135454,"z":0.0},"yAxis":{"x":-0.9135454,"y":0.40673664,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":9.075,"y":63.8,"z":0.0},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":9.042062,"y":46.147964,"z":13.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":8.598002,"y":46.366684,"z":21.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":8.153943,"y":46.585403,"z":29.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":9.244375,"y":42.982834,"z":39.583332},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":11.484553,"y":54.25284,"z":34.083332},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":7.6477647,"y":54.56415,"z":7.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.785125,"y":42.817333,"z":7.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":7.499745,"y":54.63706,"z":10.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.933145,"y":42.744427,"z":10.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":14.265322,"y":42.08827,"z":35.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":7.351725,"y":54.709965,"z":13.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.081163,"y":42.67152,"z":13.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":7.2037053,"y":54.78287,"z":15.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.229183,"y":42.598614,"z":15.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":7.0556855,"y":54.855778,"z":18.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.377203,"y":42.525707,"z":18.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.9076657,"y":54.928684,"z":21.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.525223,"y":42.4528,"z":21.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.759646,"y":55.00159,"z":24.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.673243,"y":42.379894,"z":24.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.611626,"y":55.074497,"z":26.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.821262,"y":42.306988,"z":26.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":6.4636064,"y":55.147404,"z":29.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.969282,"y":42.23408,"z":29.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":14.117302,"y":42.161175,"z":32.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.869399,"y":50.971107,"z":7.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":11.563491,"y":46.410378,"z":7.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.721379,"y":51.044014,"z":10.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":11.711511,"y":46.33747,"z":10.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":13.043688,"y":45.681313,"z":35.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.5733595,"y":51.11692,"z":13.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.42534,"y":51.189827,"z":15.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":12.007549,"y":46.191658,"z":15.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.27732,"y":51.262733,"z":18.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":12.155569,"y":46.11875,"z":18.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.1293,"y":51.33564,"z":21.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":7.9812803,"y":51.408546,"z":24.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":12.451609,"y":45.97294,"z":24.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":7.8332605,"y":51.481453,"z":26.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":12.599628,"y":45.900032,"z":26.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":7.6852407,"y":51.55436,"z":29.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":12.895668,"y":45.75422,"z":32.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":12.845298,"y":49.01283,"z":7.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":7.587592,"y":48.368656,"z":7.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":12.697278,"y":49.085735,"z":10.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":7.735612,"y":48.29575,"z":10.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":9.067789,"y":47.63959,"z":35.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":7.883631,"y":48.222843,"z":13.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":12.401238,"y":49.23155,"z":15.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.031651,"y":48.149937,"z":15.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":12.253219,"y":49.304455,"z":18.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.17967,"y":48.07703,"z":18.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.32769,"y":48.004124,"z":21.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.957179,"y":49.450268,"z":24.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.47571,"y":47.931217,"z":24.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.809159,"y":49.523174,"z":26.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.62373,"y":47.85831,"z":26.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.7717495,"y":47.785404,"z":29.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":8.919769,"y":47.712498,"z":32.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":16.43834,"y":50.234467,"z":7.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":3.9945495,"y":47.14702,"z":7.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":16.29032,"y":50.307373,"z":10.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.1425695,"y":47.074112,"z":10.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.474747,"y":46.417953,"z":35.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":16.1423,"y":50.38028,"z":13.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.290589,"y":47.001205,"z":13.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.994281,"y":50.453186,"z":15.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.4386086,"y":46.9283,"z":15.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.846261,"y":50.526093,"z":18.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.5866284,"y":46.855392,"z":18.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.698241,"y":50.599,"z":21.45},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.734648,"y":46.782486,"z":21.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.550221,"y":50.671906,"z":24.2},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.882668,"y":46.70958,"z":24.2},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.402202,"y":50.744812,"z":26.95},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.030688,"y":46.636673,"z":26.95},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.254182,"y":50.81772,"z":29.7},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.1787076,"y":46.563766,"z":29.7},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.3267274,"y":46.49086,"z":32.45},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":17.325468,"y":53.846172,"z":8.616667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.107422,"y":43.535313,"z":8.616667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":17.177448,"y":53.91908,"z":11.366667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":2.8912506,"y":44.533558,"z":11.366667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":4.2234282,"y":43.8774,"z":36.116665},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":17.029428,"y":53.991985,"z":14.116667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":3.03927,"y":44.46065,"z":14.116667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":16.881409,"y":54.06489,"z":16.866667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":3.1872897,"y":44.387745,"z":16.866667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":16.733389,"y":54.1378,"z":19.616667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.6995008,"y":43.243687,"z":19.616667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":16.58537,"y":54.210705,"z":22.366667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":3.8475206,"y":43.17078,"z":22.366667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":16.43735,"y":54.28361,"z":25.116667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":3.631349,"y":44.169025,"z":25.116667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":16.28933,"y":54.356518,"z":27.866667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":4.1435604,"y":43.024967,"z":27.866667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":16.14131,"y":54.429424,"z":30.616667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":3.9273887,"y":44.023212,"z":30.616667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":4.4396,"y":42.879154,"z":33.366665},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":16.103832,"y":57.439213,"z":8.616667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.3290567,"y":39.942272,"z":8.616667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.955813,"y":57.51212,"z":11.366667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":4.112885,"y":40.940514,"z":11.366667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.809254,"y":39.213207,"z":36.116665},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.807794,"y":57.585026,"z":14.116667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":4.2609043,"y":40.867607,"z":14.116667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.659774,"y":57.657932,"z":16.866667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":4.408924,"y":40.7947,"z":16.866667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.511754,"y":57.73084,"z":19.616667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":4.9211354,"y":39.650646,"z":19.616667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.363734,"y":57.803745,"z":22.366667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.069155,"y":39.57774,"z":22.366667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.215714,"y":57.87665,"z":25.116667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":4.8529835,"y":40.57598,"z":25.116667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":15.067695,"y":57.94956,"z":27.866667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.365195,"y":39.431927,"z":27.866667},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":14.919675,"y":58.022465,"z":30.616667},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":5.149023,"y":40.43017,"z":30.616667},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":5.6612344,"y":39.286114,"z":33.366665},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":12.4921255,"y":58.326344,"z":9.533333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":7.9407635,"y":39.05514,"z":9.533333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.415257,"y":58.76344,"z":12.283333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.088783,"y":38.982235,"z":12.283333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.420961,"y":38.326077,"z":37.033333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":13.267238,"y":58.836346,"z":15.033333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.236803,"y":38.90933,"z":15.033333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":12.048066,"y":58.545063,"z":17.783333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.384823,"y":38.836422,"z":17.783333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.971198,"y":58.98216,"z":20.533333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.532843,"y":38.763515,"z":20.533333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.823178,"y":59.055065,"z":23.283333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.680862,"y":38.69061,"z":23.283333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.604007,"y":58.763783,"z":26.033333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.828882,"y":38.617702,"z":26.033333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":11.455987,"y":58.83669,"z":28.783333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":8.976902,"y":38.544796,"z":28.783333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":12.379119,"y":59.273785,"z":31.533333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.124922,"y":38.47189,"z":31.533333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":9.272942,"y":38.398983,"z":34.283333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":8.899083,"y":57.104706,"z":9.533333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":11.533806,"y":40.27678,"z":9.533333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.822215,"y":57.541805,"z":12.283333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":11.681826,"y":40.203873,"z":12.283333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":13.014004,"y":39.547714,"z":37.033333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.674195,"y":57.61471,"z":15.033333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":11.829845,"y":40.130966,"z":15.033333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":8.455024,"y":57.323425,"z":17.783333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":11.977865,"y":40.05806,"z":17.783333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":9.378156,"y":57.760525,"z":20.533333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.125885,"y":39.985153,"z":20.533333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":8.158984,"y":57.46924,"z":23.283333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.273905,"y":39.912247,"z":23.283333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":8.010964,"y":57.542145,"z":26.033333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.421925,"y":39.83934,"z":26.033333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":7.862945,"y":57.61505,"z":28.783333},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.569944,"y":39.766434,"z":28.783333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":8.786077,"y":58.05215,"z":31.533333},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.717964,"y":39.693527,"z":31.533333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":12.865984,"y":39.62062,"z":34.283333},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":12.668712,"y":53.669586,"z":7.5},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":7.764178,"y":43.7119,"z":7.5},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":12.520692,"y":53.742493,"z":10.25},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":7.9121976,"y":43.638992,"z":10.25},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":9.244375,"y":42.982834,"z":35.0},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":12.372672,"y":53.8154,"z":13.0},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.060217,"y":43.566086,"z":13.0},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":12.224652,"y":53.888306,"z":15.75},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.208237,"y":43.49318,"z":15.75},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":12.0766325,"y":53.961212,"z":18.5},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.3562565,"y":43.420273,"z":18.5},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":11.928613,"y":54.03412,"z":21.25},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.504276,"y":43.347366,"z":21.25},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":11.780593,"y":54.107025,"z":24.0},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.652296,"y":43.27446,"z":24.0},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":11.632573,"y":54.17993,"z":26.75},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.800316,"y":43.201553,"z":26.75},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":11.484553,"y":54.25284,"z":29.5},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":8.948336,"y":43.128647,"z":29.5},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":9.096355,"y":43.05574,"z":32.25},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":18.425,"y":101.2,"z":0.0},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":7.4890823,"y":87.5313,"z":13.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":7.045023,"y":88.43287,"z":21.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":6.6009636,"y":89.334435,"z":29.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":6.6215844,"y":83.06879,"z":39.583332},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":13.914917,"y":93.38271,"z":34.083332},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":11.580418,"y":94.76387,"z":7.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":8.660044,"y":82.28867,"z":7.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":11.432398,"y":95.06439,"z":10.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":8.8080635,"y":81.98815,"z":10.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.140242,"y":79.283455,"z":35.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":11.284378,"y":95.364914,"z":13.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":8.956083,"y":81.68763,"z":13.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":11.136358,"y":95.665436,"z":15.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.104103,"y":81.38711,"z":15.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.988338,"y":95.96596,"z":18.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.252123,"y":81.086586,"z":18.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.840319,"y":96.26648,"z":21.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.400143,"y":80.786064,"z":21.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.692299,"y":96.567,"z":24.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.548162,"y":80.48554,"z":24.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.544279,"y":96.86752,"z":26.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.696182,"y":80.18502,"z":26.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":10.396259,"y":97.168045,"z":29.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.844202,"y":79.8845,"z":29.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":9.992222,"y":79.58398,"z":32.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.366523,"y":91.193596,"z":7.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.8739395,"y":85.85895,"z":7.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.218503,"y":91.49412,"z":10.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.021959,"y":85.558426,"z":10.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":11.354137,"y":82.85373,"z":35.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.070483,"y":91.79464,"z":13.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.922463,"y":92.09516,"z":15.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.317999,"y":84.95738,"z":15.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.774444,"y":92.39568,"z":18.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.466019,"y":84.65686,"z":18.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.626424,"y":92.696205,"z":21.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.478404,"y":92.99673,"z":24.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.762058,"y":84.05582,"z":24.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.330384,"y":93.29725,"z":26.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":10.910078,"y":83.755295,"z":26.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":9.182364,"y":93.59777,"z":29.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":11.206118,"y":83.15425,"z":32.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":12.384892,"y":87.09569,"z":7.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":7.8555694,"y":89.956856,"z":7.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":12.236873,"y":87.39621,"z":10.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.00359,"y":89.656334,"z":10.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":9.335768,"y":86.95164,"z":35.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.151609,"y":89.35581,"z":13.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":11.940833,"y":87.99725,"z":15.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.299629,"y":89.05529,"z":15.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":11.792813,"y":88.297775,"z":18.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.447649,"y":88.75477,"z":18.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.595669,"y":88.45425,"z":21.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":11.496774,"y":88.89882,"z":24.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.743689,"y":88.153725,"z":24.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":11.348754,"y":89.19934,"z":26.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":8.891708,"y":87.8532,"z":26.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":9.039728,"y":87.55268,"z":29.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":9.187748,"y":87.25216,"z":32.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.955173,"y":85.8818,"z":7.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":4.285289,"y":91.170746,"z":7.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.807153,"y":86.18232,"z":10.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":4.4333086,"y":90.870224,"z":10.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.7654867,"y":88.16553,"z":35.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.659133,"y":86.48284,"z":13.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":4.5813284,"y":90.5697,"z":13.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.511113,"y":86.78336,"z":15.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":4.729348,"y":90.26918,"z":15.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.363093,"y":87.083885,"z":18.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":4.877368,"y":89.96866,"z":18.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.215074,"y":87.38441,"z":21.45},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.025388,"y":89.66814,"z":21.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":15.067054,"y":87.68493,"z":24.2},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.1734076,"y":89.367615,"z":24.2},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":14.919034,"y":87.98545,"z":26.95},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.3214273,"y":89.06709,"z":26.95},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":14.771014,"y":88.28597,"z":29.7},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.469447,"y":88.76657,"z":29.7},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.617467,"y":88.46605,"z":32.45},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.981924,"y":88.26436,"z":8.616667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":1.2585374,"y":88.788185,"z":8.616667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.833904,"y":88.56488,"z":11.366667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":1.7707486,"y":89.558815,"z":11.366667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":3.1029267,"y":86.85412,"z":36.116665},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.685884,"y":88.8654,"z":14.116667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":1.9187684,"y":89.25829,"z":14.116667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.537865,"y":89.165924,"z":16.866667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":2.0667882,"y":88.95777,"z":16.866667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.389845,"y":89.466446,"z":19.616667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":1.8506166,"y":87.5861,"z":19.616667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.241825,"y":89.76697,"z":22.366667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":1.9986364,"y":87.285576,"z":22.366667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":18.093805,"y":90.06749,"z":25.116667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":2.5108476,"y":88.056206,"z":25.116667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":17.945786,"y":90.36801,"z":27.866667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":2.294676,"y":86.68453,"z":27.866667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":17.797766,"y":90.66853,"z":30.616667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":2.8068871,"y":87.45516,"z":30.616667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":2.5907156,"y":86.08349,"z":33.366665},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":20.19582,"y":91.83463,"z":8.616667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":0.044642225,"y":85.21791,"z":8.616667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":20.0478,"y":92.135155,"z":11.366667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":0.5568533,"y":85.98854,"z":11.366667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":1.5248401,"y":82.21269,"z":36.116665},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.89978,"y":92.43568,"z":14.116667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":0.7048731,"y":85.68802,"z":14.116667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.75176,"y":92.7362,"z":16.866667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":0.8528929,"y":85.3875,"z":16.866667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.60374,"y":93.03672,"z":19.616667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":0.6367214,"y":84.01582,"z":19.616667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.45572,"y":93.33724,"z":22.366667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":0.78474116,"y":83.7153,"z":22.366667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.307701,"y":93.637764,"z":25.116667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":1.2969522,"y":84.48593,"z":25.116667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.159681,"y":93.938286,"z":27.866667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":1.0807807,"y":83.11426,"z":27.866667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":19.011662,"y":94.23881,"z":30.616667},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":1.5929918,"y":83.88489,"z":30.616667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":1.3768203,"y":82.513214,"z":33.366665},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":17.81326,"y":94.86139,"z":9.533333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":2.4272037,"y":82.191154,"z":9.533333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.73639,"y":94.797714,"z":12.283333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":2.5752234,"y":81.89063,"z":12.283333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.9074016,"y":79.185936,"z":37.033333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.58837,"y":95.098236,"z":15.033333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":2.7232432,"y":81.59011,"z":15.033333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":17.3692,"y":95.762955,"z":17.783333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":2.871263,"y":81.28959,"z":17.783333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.29233,"y":95.69928,"z":20.533333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.0192828,"y":80.98907,"z":20.533333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":18.14431,"y":95.9998,"z":23.283333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.1673026,"y":80.688545,"z":23.283333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":16.92514,"y":96.66452,"z":26.033333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.3153224,"y":80.38802,"z":26.033333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":16.77712,"y":96.96504,"z":28.783333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.4633422,"y":80.0875,"z":28.783333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":17.70025,"y":96.90137,"z":31.533333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.611362,"y":79.78698,"z":31.533333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":3.7593818,"y":79.48646,"z":34.283333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":14.242978,"y":96.07528,"z":9.533333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":5.997484,"y":80.977264,"z":9.533333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.166109,"y":96.01161,"z":12.283333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":6.145504,"y":80.67674,"z":12.283333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.477682,"y":77.972046,"z":37.033333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":15.018089,"y":96.31213,"z":15.033333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":6.293524,"y":80.37622,"z":15.033333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":13.798919,"y":96.976845,"z":17.783333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":6.4415436,"y":80.0757,"z":17.783333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":14.72205,"y":96.91318,"z":20.533333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":6.5895634,"y":79.77518,"z":20.533333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":13.502879,"y":97.57789,"z":23.283333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":6.737583,"y":79.474655,"z":23.283333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":13.354859,"y":97.87841,"z":26.033333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":6.885603,"y":79.17413,"z":26.033333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":13.20684,"y":98.17893,"z":28.783333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.0336227,"y":78.87361,"z":28.783333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":14.129971,"y":98.115265,"z":31.533333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.1816425,"y":78.57309,"z":31.533333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":7.3296623,"y":78.27257,"z":34.283333},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":15.099075,"y":90.97854,"z":7.5},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":5.1413865,"y":86.074005,"z":7.5},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.951056,"y":91.27906,"z":10.25},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":5.2894063,"y":85.77348,"z":10.25},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":6.6215844,"y":83.06879,"z":35.0},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.803036,"y":91.57958,"z":13.0},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":5.437426,"y":85.47296,"z":13.0},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.655016,"y":91.880104,"z":15.75},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":5.585446,"y":85.17244,"z":15.75},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.506996,"y":92.180626,"z":18.5},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":5.7334657,"y":84.87192,"z":18.5},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.358976,"y":92.48115,"z":21.25},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":5.8814855,"y":84.571396,"z":21.25},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.210957,"y":92.78167,"z":24.0},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":6.0295053,"y":84.270874,"z":24.0},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":14.062937,"y":93.08219,"z":26.75},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":6.177525,"y":83.97035,"z":26.75},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":13.914917,"y":93.38271,"z":29.5},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":6.325545,"y":83.66983,"z":29.5},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":6.4735646,"y":83.36931,"z":32.25},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":36.3,"y":18.425,"z":0.0},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":50.58858,"y":7.420229,"z":13.2},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":50.20079,"y":7.226972,"z":21.45},"xAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0},"yAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":49.80351,"y":7.0540676,"z":29.7},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":39.583332},"xAxis":{"x":-0.29757574,"y":0.9546982,"z":0.0},"yAxis":{"x":-0.9546982,"y":-0.29757574,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":34.083332},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.971397,"y":11.384627,"z":7.7},"xAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0},"yAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.267677,"y":8.263756,"z":7.7},"xAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0},"yAxis":{"x":0.88932097,"y":0.45728356,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.912888,"y":11.448994,"z":10.45},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.326187,"y":8.199389,"z":10.45},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.80036,"y":7.577432,"z":35.2},"xAxis":{"x":0.29757574,"y":-0.9546982,"z":0.0},"yAxis":{"x":0.9546982,"y":0.29757574,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.855495,"y":11.514361,"z":13.2},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.38358,"y":8.134022,"z":13.2},"xAxis":{"x":0.42628422,"y":-0.9045893,"z":0.0},"yAxis":{"x":0.9045893,"y":0.42628422,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.799244,"y":11.580711,"z":15.95},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.43983,"y":8.067672,"z":15.95},"xAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0},"yAxis":{"x":0.91181946,"y":0.41059133,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.74415,"y":11.648024,"z":18.7},"xAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0},"yAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.494926,"y":8.00036,"z":18.7},"xAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0},"yAxis":{"x":0.91877747,"y":0.39477587,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.69022,"y":11.716277,"z":21.45},"xAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0},"yAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.548855,"y":7.932106,"z":21.45},"xAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0},"yAxis":{"x":0.9254611,"y":0.37884253,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.63748,"y":11.785452,"z":24.2},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.601593,"y":7.8629313,"z":24.2},"xAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0},"yAxis":{"x":0.93186855,"y":0.36279613,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.58595,"y":11.855528,"z":26.95},"xAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0},"yAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.653126,"y":7.792855,"z":26.95},"xAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0},"yAxis":{"x":0.93799776,"y":0.3466414,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":42.53563,"y":11.926484,"z":29.7},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.703445,"y":7.721899,"z":29.7},"xAxis":{"x":0.33038318,"y":-0.9438469,"z":0.0},"yAxis":{"x":0.9438469,"y":0.33038318,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.75253,"y":7.6500845,"z":32.45},"xAxis":{"x":0.31402633,"y":-0.94941425,"z":0.0},"yAxis":{"x":0.94941425,"y":0.31402633,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.607227,"y":10.218126,"z":7.7},"xAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0},"yAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.631847,"y":9.430257,"z":7.7},"xAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0},"yAxis":{"x":0.88932097,"y":0.45728356,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.528023,"y":10.219848,"z":10.45},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.711052,"y":9.428535,"z":10.45},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":52.419224,"y":9.351663,"z":35.2},"xAxis":{"x":0.29757574,"y":-0.9546982,"z":0.0},"yAxis":{"x":0.9546982,"y":0.29757574,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.448856,"y":10.222939,"z":13.2},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.369755,"y":10.227396,"z":15.95},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.86932,"y":9.420987,"z":15.95},"xAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0},"yAxis":{"x":0.91181946,"y":0.41059133,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.29074,"y":10.233219,"z":18.7},"xAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0},"yAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.948334,"y":9.415164,"z":18.7},"xAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0},"yAxis":{"x":0.91877747,"y":0.39477587,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.21184,"y":10.240407,"z":21.45},"xAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0},"yAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.133076,"y":10.248957,"z":24.2},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":52.106,"y":9.399426,"z":24.2},"xAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0},"yAxis":{"x":0.93186855,"y":0.36279613,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":46.054474,"y":10.258866,"z":26.95},"xAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0},"yAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":52.1846,"y":9.389517,"z":26.95},"xAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0},"yAxis":{"x":0.93799776,"y":0.3466414,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":45.97605,"y":10.270132,"z":29.7},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":52.34124,"y":9.365632,"z":32.45},"xAxis":{"x":0.31402633,"y":-0.94941425,"z":0.0},"yAxis":{"x":0.94941425,"y":0.31402633,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":50.43131,"y":12.184445,"z":7.7},"xAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0},"yAxis":{"x":0.88932097,"y":0.45728356,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.807766,"y":7.4639378,"z":7.7},"xAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0},"yAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":50.385506,"y":12.119802,"z":10.45},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.85357,"y":7.5285807,"z":10.45},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.314022,"y":8.072087,"z":35.2},"xAxis":{"x":-0.29757574,"y":0.9546982,"z":0.0},"yAxis":{"x":-0.9546982,"y":-0.29757574,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.900486,"y":7.592423,"z":13.2},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":50.290577,"y":11.992938,"z":15.95},"xAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0},"yAxis":{"x":0.91181946,"y":0.41059133,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.948498,"y":7.6554446,"z":15.95},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":50.241486,"y":11.930756,"z":18.7},"xAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0},"yAxis":{"x":0.91877747,"y":0.39477587,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.99759,"y":7.717628,"z":18.7},"xAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0},"yAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.04775,"y":7.7789536,"z":21.45},"xAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0},"yAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":50.140114,"y":11.80898,"z":24.2},"xAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0},"yAxis":{"x":0.93186855,"y":0.36279613,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.09896,"y":7.839403,"z":24.2},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":50.087864,"y":11.749424,"z":26.95},"xAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0},"yAxis":{"x":0.93799776,"y":0.3466414,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.15121,"y":7.898959,"z":26.95},"xAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0},"yAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.204483,"y":7.9576035,"z":29.7},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.25876,"y":8.015319,"z":32.45},"xAxis":{"x":-0.31402633,"y":0.94941425,"z":0.0},"yAxis":{"x":-0.94941425,"y":-0.31402633,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.59781,"y":15.820277,"z":7.7},"xAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0},"yAxis":{"x":0.88932097,"y":0.45728356,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.641266,"y":3.8281054,"z":7.7},"xAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0},"yAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.61465,"y":15.734938,"z":10.45},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.624424,"y":3.913446,"z":10.45},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.53979,"y":4.6909475,"z":35.2},"xAxis":{"x":-0.29757574,"y":0.9546982,"z":0.0},"yAxis":{"x":-0.9546982,"y":-0.29757574,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.630013,"y":15.649319,"z":13.2},"xAxis":{"x":0.42628422,"y":-0.9045893,"z":0.0},"yAxis":{"x":0.9045893,"y":0.42628422,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.609062,"y":3.9990644,"z":13.2},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.643894,"y":15.563447,"z":15.95},"xAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0},"yAxis":{"x":0.91181946,"y":0.41059133,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.59518,"y":4.0849357,"z":15.95},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.65629,"y":15.477349,"z":18.7},"xAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0},"yAxis":{"x":0.91877747,"y":0.39477587,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.582787,"y":4.171034,"z":18.7},"xAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0},"yAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.667194,"y":15.391049,"z":21.45},"xAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0},"yAxis":{"x":0.9254611,"y":0.37884253,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.57188,"y":4.2573338,"z":21.45},"xAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0},"yAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.67661,"y":15.304574,"z":24.2},"xAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0},"yAxis":{"x":0.93186855,"y":0.36279613,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.562466,"y":4.3438087,"z":24.2},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.684525,"y":15.21795,"z":26.95},"xAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0},"yAxis":{"x":0.93799776,"y":0.3466414,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.55455,"y":4.4304338,"z":26.95},"xAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0},"yAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.690945,"y":15.131201,"z":29.7},"xAxis":{"x":0.33038318,"y":-0.9438469,"z":0.0},"yAxis":{"x":0.9438469,"y":0.33038318,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.54813,"y":4.5171824,"z":29.7},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.54321,"y":4.604029,"z":32.45},"xAxis":{"x":-0.31402633,"y":0.94941425,"z":0.0},"yAxis":{"x":-0.94941425,"y":-0.31402633,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.285862,"y":18.567074,"z":8.616667},"xAxis":{"x":0.88932097,"y":0.45728356,"z":0.0},"yAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.953213,"y":1.0813091,"z":8.616667},"xAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0},"yAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.350506,"y":18.521269,"z":11.366667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.81742,"y":1.4913056,"z":11.366667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.343246,"y":2.1132624,"z":36.116665},"xAxis":{"x":-0.29757574,"y":0.9546982,"z":0.0},"yAxis":{"x":-0.9546982,"y":-0.29757574,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.414345,"y":18.474354,"z":14.116667},"xAxis":{"x":0.9045893,"y":0.42628422,"z":0.0},"yAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.76003,"y":1.5566735,"z":14.116667},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.477367,"y":18.426342,"z":16.866667},"xAxis":{"x":0.91181946,"y":0.41059133,"z":0.0},"yAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.703777,"y":1.6230232,"z":16.866667},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.53955,"y":18.377249,"z":19.616667},"xAxis":{"x":0.91877747,"y":0.39477587,"z":0.0},"yAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.699524,"y":1.2711337,"z":19.616667},"xAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0},"yAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.600876,"y":18.32709,"z":22.366667},"xAxis":{"x":0.9254611,"y":0.37884253,"z":0.0},"yAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.6382,"y":1.3212937,"z":22.366667},"xAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0},"yAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":49.661327,"y":18.275877,"z":25.116667},"xAxis":{"x":0.93186855,"y":0.36279613,"z":0.0},"yAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.542015,"y":1.8277638,"z":25.116667},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":49.720882,"y":18.223629,"z":27.866667},"xAxis":{"x":0.93799776,"y":0.3466414,"z":0.0},"yAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.518192,"y":1.4247547,"z":27.866667},"xAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0},"yAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":49.779526,"y":18.170359,"z":30.616667},"xAxis":{"x":0.9438469,"y":0.33038318,"z":0.0},"yAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.440163,"y":1.9687958,"z":30.616667},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.401833,"y":1.5323001,"z":33.366665},"xAxis":{"x":-0.94941425,"y":-0.31402633,"z":0.0},"yAxis":{"x":0.31402633,"y":-0.94941425,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":45.65003,"y":19.733576,"z":8.616667},"xAxis":{"x":0.88932097,"y":0.45728356,"z":0.0},"yAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":52.589046,"y":-0.085191905,"z":8.616667},"xAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0},"yAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":45.73537,"y":19.750414,"z":11.366667},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.432556,"y":0.26215976,"z":11.366667},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.726204,"y":-0.18666607,"z":36.116665},"xAxis":{"x":-0.9546982,"y":-0.29757574,"z":0.0},"yAxis":{"x":0.29757574,"y":-0.9546982,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":45.820988,"y":19.765778,"z":14.116667},"xAxis":{"x":0.9045893,"y":0.42628422,"z":0.0},"yAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.35339,"y":0.26524982,"z":14.116667},"xAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0},"yAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":45.90686,"y":19.77966,"z":16.866667},"xAxis":{"x":0.91181946,"y":0.41059133,"z":0.0},"yAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.27429,"y":0.2697072,"z":16.866667},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":45.992958,"y":19.792053,"z":19.616667},"xAxis":{"x":0.91877747,"y":0.39477587,"z":0.0},"yAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":52.246117,"y":-0.14367057,"z":19.616667},"xAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0},"yAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.079258,"y":19.80296,"z":22.366667},"xAxis":{"x":0.9254611,"y":0.37884253,"z":0.0},"yAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":52.159817,"y":-0.15457647,"z":22.366667},"xAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0},"yAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.165733,"y":19.812372,"z":25.116667},"xAxis":{"x":0.93186855,"y":0.36279613,"z":0.0},"yAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":51.03761,"y":0.2912682,"z":25.116667},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.252357,"y":19.82029,"z":27.866667},"xAxis":{"x":0.93799776,"y":0.3466414,"z":0.0},"yAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.986717,"y":-0.17190738,"z":27.866667},"xAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0},"yAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":46.339104,"y":19.82671,"z":30.616667},"xAxis":{"x":0.9438469,"y":0.33038318,"z":0.0},"yAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":50.880585,"y":0.3124437,"z":30.616667},"xAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0},"yAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.81312,"y":-0.18324727,"z":33.366665},"xAxis":{"x":-0.94941425,"y":-0.31402633,"z":0.0},"yAxis":{"x":0.31402633,"y":-0.94941425,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":42.903233,"y":17.421625,"z":9.533333},"xAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0},"yAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.335842,"y":2.2267573,"z":9.533333},"xAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0},"yAxis":{"x":0.88932097,"y":0.45728356,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":43.31323,"y":18.55742,"z":12.283333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.29004,"y":2.1621141,"z":12.283333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":54.829586,"y":1.6186075,"z":37.033333},"xAxis":{"x":0.29757574,"y":-0.9546982,"z":0.0},"yAxis":{"x":0.9546982,"y":0.29757574,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":43.378597,"y":18.614809,"z":15.033333},"xAxis":{"x":0.9045893,"y":0.42628422,"z":0.0},"yAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.243122,"y":2.0982718,"z":15.033333},"xAxis":{"x":0.42628422,"y":-0.9045893,"z":0.0},"yAxis":{"x":0.9045893,"y":0.42628422,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":43.043964,"y":17.613132,"z":17.783333},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.19511,"y":2.03525,"z":17.783333},"xAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0},"yAxis":{"x":0.91181946,"y":0.41059133,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":43.512257,"y":18.726158,"z":20.533333},"xAxis":{"x":0.91877747,"y":0.39477587,"z":0.0},"yAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.14602,"y":1.9730668,"z":20.533333},"xAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0},"yAxis":{"x":0.91877747,"y":0.39477587,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":43.580513,"y":18.780085,"z":23.283333},"xAxis":{"x":0.9254611,"y":0.37884253,"z":0.0},"yAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.09586,"y":1.9117413,"z":23.283333},"xAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0},"yAxis":{"x":0.9254611,"y":0.37884253,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":43.194427,"y":17.797092,"z":26.033333},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.044647,"y":1.8512915,"z":26.033333},"xAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0},"yAxis":{"x":0.93186855,"y":0.36279613,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":43.246677,"y":17.856647,"z":28.783333},"xAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0},"yAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":54.992397,"y":1.7917355,"z":28.783333},"xAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0},"yAxis":{"x":0.93799776,"y":0.3466414,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":43.790718,"y":18.934675,"z":31.533333},"xAxis":{"x":0.9438469,"y":0.33038318,"z":0.0},"yAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":54.939125,"y":1.7330914,"z":31.533333},"xAxis":{"x":0.33038318,"y":-0.9438469,"z":0.0},"yAxis":{"x":0.9438469,"y":0.33038318,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":54.88485,"y":1.6753763,"z":34.283333},"xAxis":{"x":0.31402633,"y":-0.94941425,"z":0.0},"yAxis":{"x":0.94941425,"y":0.31402633,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":41.736732,"y":13.785794,"z":9.533333},"xAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0},"yAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.502342,"y":5.8625894,"z":9.533333},"xAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0},"yAxis":{"x":0.88932097,"y":0.45728356,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":42.084084,"y":14.942286,"z":12.283333},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.519184,"y":5.777249,"z":12.283333},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.603817,"y":4.9997473,"z":37.033333},"xAxis":{"x":0.29757574,"y":-0.9546982,"z":0.0},"yAxis":{"x":0.9546982,"y":0.29757574,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":42.087173,"y":15.021452,"z":15.033333},"xAxis":{"x":0.9045893,"y":0.42628422,"z":0.0},"yAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.534546,"y":5.6916304,"z":15.033333},"xAxis":{"x":0.42628422,"y":-0.9045893,"z":0.0},"yAxis":{"x":0.9045893,"y":0.42628422,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":41.690647,"y":14.042624,"z":17.783333},"xAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0},"yAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.548428,"y":5.605759,"z":17.783333},"xAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0},"yAxis":{"x":0.91181946,"y":0.41059133,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":42.097454,"y":15.179565,"z":20.533333},"xAxis":{"x":0.91877747,"y":0.39477587,"z":0.0},"yAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.56082,"y":5.519661,"z":20.533333},"xAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0},"yAxis":{"x":0.91877747,"y":0.39477587,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":41.667347,"y":14.215022,"z":23.283333},"xAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0},"yAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.571728,"y":5.433361,"z":23.283333},"xAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0},"yAxis":{"x":0.9254611,"y":0.37884253,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":41.657932,"y":14.301497,"z":26.033333},"xAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0},"yAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.581142,"y":5.346886,"z":26.033333},"xAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0},"yAxis":{"x":0.93186855,"y":0.36279613,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":41.650017,"y":14.388122,"z":28.783333},"xAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0},"yAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.589058,"y":5.260261,"z":28.783333},"xAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0},"yAxis":{"x":0.93799776,"y":0.3466414,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":42.134365,"y":15.494255,"z":31.533333},"xAxis":{"x":0.9438469,"y":0.33038318,"z":0.0},"yAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.595478,"y":5.1735125,"z":31.533333},"xAxis":{"x":0.33038318,"y":-0.9438469,"z":0.0},"yAxis":{"x":0.9438469,"y":0.33038318,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.6004,"y":5.0866656,"z":34.283333},"xAxis":{"x":0.31402633,"y":-0.94941425,"z":0.0},"yAxis":{"x":0.94941425,"y":0.31402633,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":7.5},"xAxis":{"x":-0.88932097,"y":-0.45728356,"z":0.0},"yAxis":{"x":0.45728356,"y":-0.88932097,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":7.5},"xAxis":{"x":0.88932097,"y":0.45728356,"z":0.0},"yAxis":{"x":-0.45728356,"y":0.88932097,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":10.25},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":10.25},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":35.0},"xAxis":{"x":0.9546982,"y":0.29757574,"z":0.0},"yAxis":{"x":-0.29757574,"y":0.9546982,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":13.0},"xAxis":{"x":-0.9045893,"y":-0.42628422,"z":0.0},"yAxis":{"x":0.42628422,"y":-0.9045893,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":13.0},"xAxis":{"x":0.9045893,"y":0.42628422,"z":0.0},"yAxis":{"x":-0.42628422,"y":0.9045893,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":15.75},"xAxis":{"x":-0.91181946,"y":-0.41059133,"z":0.0},"yAxis":{"x":0.41059133,"y":-0.91181946,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":15.75},"xAxis":{"x":0.91181946,"y":0.41059133,"z":0.0},"yAxis":{"x":-0.41059133,"y":0.91181946,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":18.5},"xAxis":{"x":-0.91877747,"y":-0.39477587,"z":0.0},"yAxis":{"x":0.39477587,"y":-0.91877747,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":18.5},"xAxis":{"x":0.91877747,"y":0.39477587,"z":0.0},"yAxis":{"x":-0.39477587,"y":0.91877747,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":21.25},"xAxis":{"x":-0.9254611,"y":-0.37884253,"z":0.0},"yAxis":{"x":0.37884253,"y":-0.9254611,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":21.25},"xAxis":{"x":0.9254611,"y":0.37884253,"z":0.0},"yAxis":{"x":-0.37884253,"y":0.9254611,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":24.0},"xAxis":{"x":-0.93186855,"y":-0.36279613,"z":0.0},"yAxis":{"x":0.36279613,"y":-0.93186855,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":24.0},"xAxis":{"x":0.93186855,"y":0.36279613,"z":0.0},"yAxis":{"x":-0.36279613,"y":0.93186855,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":26.75},"xAxis":{"x":-0.93799776,"y":-0.3466414,"z":0.0},"yAxis":{"x":0.3466414,"y":-0.93799776,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":26.75},"xAxis":{"x":0.93799776,"y":0.3466414,"z":0.0},"yAxis":{"x":-0.3466414,"y":0.93799776,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":46.66727,"y":14.803036,"z":29.5},"xAxis":{"x":-0.9438469,"y":-0.33038318,"z":0.0},"yAxis":{"x":0.33038318,"y":-0.9438469,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":29.5},"xAxis":{"x":0.9438469,"y":0.33038318,"z":0.0},"yAxis":{"x":-0.33038318,"y":0.9438469,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":51.571804,"y":4.8453474,"z":32.25},"xAxis":{"x":0.94941425,"y":0.31402633,"z":0.0},"yAxis":{"x":-0.31402633,"y":0.94941425,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":73.7,"y":9.075,"z":0.0},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":92.878914,"y":9.686985,"z":13.2},"xAxis":{"x":-0.96856874,"y":0.24874611,"z":0.0},"yAxis":{"x":-0.24874611,"y":-0.96856874,"z":0.0}},"center":{"x":0.018135905,"y":10.147437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":92.55005,"y":8.814442,"z":21.45},"xAxis":{"x":-0.9370789,"y":0.34911764,"z":0.0},"yAxis":{"x":-0.34911764,"y":-0.9370789,"z":0.0}},"center":{"x":0.018135905,"y":22.027437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":92.13133,"y":7.981274,"z":29.7},"xAxis":{"x":-0.8952193,"y":0.4456258,"z":0.0},"yAxis":{"x":-0.4456258,"y":-0.8952193,"z":0.0}},"center":{"x":0.018135905,"y":33.907433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":39.583332},"xAxis":{"x":-0.7155458,"y":0.69856584,"z":0.0},"yAxis":{"x":-0.69856584,"y":-0.7155458,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":34.083332},"xAxis":{"x":-0.7627582,"y":0.64668375,"z":0.0},"yAxis":{"x":-0.64668375,"y":-0.7627582,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":84.26547,"y":9.162091,"z":7.7},"xAxis":{"x":-0.99945986,"y":0.03286397,"z":0.0},"yAxis":{"x":-0.03286397,"y":-0.99945986,"z":0.0}},"center":{"x":-1.4286158,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.55513,"y":10.6787195,"z":7.7},"xAxis":{"x":0.99945986,"y":-0.03286397,"z":0.0},"yAxis":{"x":0.03286397,"y":0.99945986,"z":0.0}},"center":{"x":1.4286158,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":84.15297,"y":9.1698885,"z":10.45},"xAxis":{"x":-0.9976922,"y":0.06789891,"z":0.0},"yAxis":{"x":-0.06789891,"y":-0.9976922,"z":0.0}},"center":{"x":-1.4286158,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.66763,"y":10.670922,"z":10.45},"xAxis":{"x":0.9976922,"y":-0.06789891,"z":0.0},"yAxis":{"x":0.06789891,"y":0.9976922,"z":0.0}},"center":{"x":1.4286158,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.64837,"y":10.426133,"z":35.2},"xAxis":{"x":0.92729235,"y":-0.374338,"z":0.0},"yAxis":{"x":0.374338,"y":0.92729235,"z":0.0}},"center":{"x":1.4286158,"y":42.912548},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":84.0408,"y":9.181626,"z":13.2},"xAxis":{"x":-0.99469686,"y":0.10285027,"z":0.0},"yAxis":{"x":-0.10285027,"y":-0.99469686,"z":0.0}},"center":{"x":-1.4286158,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.7798,"y":10.659184,"z":13.2},"xAxis":{"x":0.99469686,"y":-0.10285027,"z":0.0},"yAxis":{"x":0.10285027,"y":0.99469686,"z":0.0}},"center":{"x":1.4286158,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":83.92912,"y":9.197291,"z":15.95},"xAxis":{"x":-0.99047744,"y":0.13767508,"z":0.0},"yAxis":{"x":-0.13767508,"y":-0.99047744,"z":0.0}},"center":{"x":-1.4286158,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.89148,"y":10.643519,"z":15.95},"xAxis":{"x":0.99047744,"y":-0.13767508,"z":0.0},"yAxis":{"x":0.13767508,"y":0.99047744,"z":0.0}},"center":{"x":1.4286158,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":83.81806,"y":9.216865,"z":18.7},"xAxis":{"x":-0.9850392,"y":0.17233045,"z":0.0},"yAxis":{"x":-0.17233045,"y":-0.9850392,"z":0.0}},"center":{"x":-1.4286158,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.00254,"y":10.623946,"z":18.7},"xAxis":{"x":0.9850392,"y":-0.17233045,"z":0.0},"yAxis":{"x":0.17233045,"y":0.9850392,"z":0.0}},"center":{"x":1.4286158,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":83.70775,"y":9.24032,"z":21.45},"xAxis":{"x":-0.9783888,"y":0.2067738,"z":0.0},"yAxis":{"x":-0.2067738,"y":-0.9783888,"z":0.0}},"center":{"x":-1.4286158,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.112854,"y":10.600491,"z":21.45},"xAxis":{"x":0.9783888,"y":-0.2067738,"z":0.0},"yAxis":{"x":0.2067738,"y":0.9783888,"z":0.0}},"center":{"x":1.4286158,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":83.59833,"y":9.267632,"z":24.2},"xAxis":{"x":-0.9705344,"y":0.24096268,"z":0.0},"yAxis":{"x":-0.24096268,"y":-0.9705344,"z":0.0}},"center":{"x":-1.4286158,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.222275,"y":10.573179,"z":24.2},"xAxis":{"x":0.9705344,"y":-0.24096268,"z":0.0},"yAxis":{"x":0.24096268,"y":0.9705344,"z":0.0}},"center":{"x":1.4286158,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":83.48994,"y":9.298763,"z":26.95},"xAxis":{"x":-0.9614857,"y":0.27485502,"z":0.0},"yAxis":{"x":-0.27485502,"y":-0.9614857,"z":0.0}},"center":{"x":-1.4286158,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.330666,"y":10.5420475,"z":26.95},"xAxis":{"x":0.9614857,"y":-0.27485502,"z":0.0},"yAxis":{"x":0.27485502,"y":0.9614857,"z":0.0}},"center":{"x":1.4286158,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":83.3827,"y":9.333677,"z":29.7},"xAxis":{"x":-0.9512538,"y":0.30840915,"z":0.0},"yAxis":{"x":-0.30840915,"y":-0.9512538,"z":0.0}},"center":{"x":-1.4286158,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.437904,"y":10.5071335,"z":29.7},"xAxis":{"x":0.9512538,"y":-0.30840915,"z":0.0},"yAxis":{"x":0.30840915,"y":0.9512538,"z":0.0}},"center":{"x":1.4286158,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.543846,"y":10.468479,"z":32.45},"xAxis":{"x":0.93985134,"y":-0.34158376,"z":0.0},"yAxis":{"x":0.34158376,"y":0.93985134,"z":0.0}},"center":{"x":1.4286158,"y":38.95255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.68621,"y":10.081065,"z":7.7},"xAxis":{"x":-0.7258621,"y":-0.6878403,"z":0.0},"yAxis":{"x":0.6878403,"y":-0.7258621,"z":0.0}},"center":{"x":-0.5593769,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.13439,"y":9.759746,"z":7.7},"xAxis":{"x":0.7258621,"y":0.6878403,"z":0.0},"yAxis":{"x":-0.6878403,"y":0.7258621,"z":0.0}},"center":{"x":0.5593769,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.60445,"y":10.003391,"z":10.45},"xAxis":{"x":-0.74954087,"y":-0.6619581,"z":0.0},"yAxis":{"x":0.6619581,"y":-0.74954087,"z":0.0}},"center":{"x":-0.5593769,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.216156,"y":9.8374195,"z":10.45},"xAxis":{"x":0.74954087,"y":0.6619581,"z":0.0},"yAxis":{"x":-0.6619581,"y":0.74954087,"z":0.0}},"center":{"x":0.5593769,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.05926,"y":10.395044,"z":35.2},"xAxis":{"x":0.9180365,"y":0.39649576,"z":0.0},"yAxis":{"x":-0.39649576,"y":0.9180365,"z":0.0}},"center":{"x":0.5593769,"y":42.129883},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.52001,"y":9.928634,"z":13.2},"xAxis":{"x":-0.77229726,"y":-0.63526136,"z":0.0},"yAxis":{"x":0.63526136,"y":-0.77229726,"z":0.0}},"center":{"x":-0.5593769,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.43301,"y":9.856883,"z":15.95},"xAxis":{"x":-0.79410326,"y":-0.60778284,"z":0.0},"yAxis":{"x":0.60778284,"y":-0.79410326,"z":0.0}},"center":{"x":-0.5593769,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.387596,"y":9.983928,"z":15.95},"xAxis":{"x":0.79410326,"y":0.60778284,"z":0.0},"yAxis":{"x":-0.60778284,"y":0.79410326,"z":0.0}},"center":{"x":0.5593769,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.34354,"y":9.788229,"z":18.7},"xAxis":{"x":-0.8149321,"y":-0.57955647,"z":0.0},"yAxis":{"x":0.57955647,"y":-0.8149321,"z":0.0}},"center":{"x":-0.5593769,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.477066,"y":10.052582,"z":18.7},"xAxis":{"x":0.8149321,"y":0.57955647,"z":0.0},"yAxis":{"x":-0.57955647,"y":0.8149321,"z":0.0}},"center":{"x":0.5593769,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.25171,"y":9.7227545,"z":21.45},"xAxis":{"x":-0.8347581,"y":-0.55061686,"z":0.0},"yAxis":{"x":0.55061686,"y":-0.8347581,"z":0.0}},"center":{"x":-0.5593769,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.157646,"y":9.660542,"z":24.2},"xAxis":{"x":-0.8535569,"y":-0.52099967,"z":0.0},"yAxis":{"x":0.52099967,"y":-0.8535569,"z":0.0}},"center":{"x":-0.5593769,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.66296,"y":10.180269,"z":24.2},"xAxis":{"x":0.8535569,"y":0.52099967,"z":0.0},"yAxis":{"x":-0.52099967,"y":0.8535569,"z":0.0}},"center":{"x":0.5593769,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":86.061455,"y":9.6016655,"z":26.95},"xAxis":{"x":-0.8713053,"y":-0.49074137,"z":0.0},"yAxis":{"x":0.49074137,"y":-0.8713053,"z":0.0}},"center":{"x":-0.5593769,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.75915,"y":10.239145,"z":26.95},"xAxis":{"x":0.8713053,"y":0.49074137,"z":0.0},"yAxis":{"x":-0.49074137,"y":0.8713053,"z":0.0}},"center":{"x":0.5593769,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":85.963264,"y":9.5462,"z":29.7},"xAxis":{"x":-0.8879815,"y":-0.4598792,"z":0.0},"yAxis":{"x":0.4598792,"y":-0.8879815,"z":0.0}},"center":{"x":-0.5593769,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":92.95741,"y":10.346599,"z":32.45},"xAxis":{"x":0.903565,"y":0.4284511,"z":0.0},"yAxis":{"x":-0.4284511,"y":0.903565,"z":0.0}},"center":{"x":0.5593769,"y":38.169884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.64204,"y":12.206689,"z":7.7},"xAxis":{"x":-0.03286397,"y":-0.99945986,"z":0.0},"yAxis":{"x":0.99945986,"y":-0.03286397,"z":0.0}},"center":{"x":-0.5016618,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.178566,"y":7.6341214,"z":7.7},"xAxis":{"x":0.03286397,"y":0.99945986,"z":0.0},"yAxis":{"x":-0.99945986,"y":0.03286397,"z":0.0}},"center":{"x":0.5016618,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.63424,"y":12.094183,"z":10.45},"xAxis":{"x":-0.06789891,"y":-0.9976922,"z":0.0},"yAxis":{"x":0.9976922,"y":-0.06789891,"z":0.0}},"center":{"x":-0.5016618,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.18636,"y":7.746628,"z":10.45},"xAxis":{"x":0.06789891,"y":0.9976922,"z":0.0},"yAxis":{"x":-0.9976922,"y":0.06789891,"z":0.0}},"center":{"x":0.5016618,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.43115,"y":8.727365,"z":35.2},"xAxis":{"x":0.374338,"y":0.92729235,"z":0.0},"yAxis":{"x":-0.92729235,"y":0.374338,"z":0.0}},"center":{"x":0.5016618,"y":41.028614},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.1981,"y":7.858791,"z":13.2},"xAxis":{"x":0.10285027,"y":0.99469686,"z":0.0},"yAxis":{"x":-0.99469686,"y":0.10285027,"z":0.0}},"center":{"x":0.5016618,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.606834,"y":11.8703375,"z":15.95},"xAxis":{"x":-0.13767508,"y":-0.99047744,"z":0.0},"yAxis":{"x":0.99047744,"y":-0.13767508,"z":0.0}},"center":{"x":-0.5016618,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.21377,"y":7.970474,"z":15.95},"xAxis":{"x":0.13767508,"y":0.99047744,"z":0.0},"yAxis":{"x":-0.99047744,"y":0.13767508,"z":0.0}},"center":{"x":0.5016618,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.587265,"y":11.759273,"z":18.7},"xAxis":{"x":-0.17233045,"y":-0.9850392,"z":0.0},"yAxis":{"x":0.9850392,"y":-0.17233045,"z":0.0}},"center":{"x":-0.5016618,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.23334,"y":8.081538,"z":18.7},"xAxis":{"x":0.17233045,"y":0.9850392,"z":0.0},"yAxis":{"x":-0.9850392,"y":0.17233045,"z":0.0}},"center":{"x":0.5016618,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.25679,"y":8.191848,"z":21.45},"xAxis":{"x":0.2067738,"y":0.9783888,"z":0.0},"yAxis":{"x":-0.9783888,"y":0.2067738,"z":0.0}},"center":{"x":0.5016618,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.5365,"y":11.539544,"z":24.2},"xAxis":{"x":-0.24096268,"y":-0.9705344,"z":0.0},"yAxis":{"x":0.9705344,"y":-0.24096268,"z":0.0}},"center":{"x":-0.5016618,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.2841,"y":8.301267,"z":24.2},"xAxis":{"x":0.24096268,"y":0.9705344,"z":0.0},"yAxis":{"x":-0.9705344,"y":0.24096268,"z":0.0}},"center":{"x":0.5016618,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.50536,"y":11.43115,"z":26.95},"xAxis":{"x":-0.27485502,"y":-0.9614857,"z":0.0},"yAxis":{"x":0.9614857,"y":-0.27485502,"z":0.0}},"center":{"x":-0.5016618,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.31524,"y":8.40966,"z":26.95},"xAxis":{"x":0.27485502,"y":0.9614857,"z":0.0},"yAxis":{"x":-0.9614857,"y":0.27485502,"z":0.0}},"center":{"x":0.5016618,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.35015,"y":8.516896,"z":29.7},"xAxis":{"x":0.30840915,"y":0.9512538,"z":0.0},"yAxis":{"x":-0.9512538,"y":0.30840915,"z":0.0}},"center":{"x":0.5016618,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":91.3888,"y":8.622841,"z":32.45},"xAxis":{"x":0.34158376,"y":0.93985134,"z":0.0},"yAxis":{"x":-0.93985134,"y":0.34158376,"z":0.0}},"center":{"x":0.5016618,"y":37.068615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":86.72307,"y":14.627426,"z":7.7},"xAxis":{"x":0.6878403,"y":-0.7258621,"z":0.0},"yAxis":{"x":0.7258621,"y":0.6878403,"z":0.0}},"center":{"x":-1.284328,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.097534,"y":5.2133846,"z":7.7},"xAxis":{"x":-0.6878403,"y":0.7258621,"z":0.0},"yAxis":{"x":-0.7258621,"y":-0.6878403,"z":0.0}},"center":{"x":1.284328,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":86.800735,"y":14.545663,"z":10.45},"xAxis":{"x":0.6619581,"y":-0.74954087,"z":0.0},"yAxis":{"x":0.74954087,"y":0.6619581,"z":0.0}},"center":{"x":-1.284328,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.01987,"y":5.295148,"z":10.45},"xAxis":{"x":-0.6619581,"y":0.74954087,"z":0.0},"yAxis":{"x":-0.74954087,"y":-0.6619581,"z":0.0}},"center":{"x":1.284328,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.46224,"y":6.13825,"z":35.2},"xAxis":{"x":-0.39649576,"y":0.9180365,"z":0.0},"yAxis":{"x":-0.9180365,"y":-0.39649576,"z":0.0}},"center":{"x":1.284328,"y":40.15937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":86.875496,"y":14.4612255,"z":13.2},"xAxis":{"x":0.63526136,"y":-0.77229726,"z":0.0},"yAxis":{"x":0.77229726,"y":0.63526136,"z":0.0}},"center":{"x":-1.284328,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.94511,"y":5.3795853,"z":13.2},"xAxis":{"x":-0.63526136,"y":0.77229726,"z":0.0},"yAxis":{"x":-0.77229726,"y":-0.63526136,"z":0.0}},"center":{"x":1.284328,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":86.94725,"y":14.374218,"z":15.95},"xAxis":{"x":0.60778284,"y":-0.79410326,"z":0.0},"yAxis":{"x":0.79410326,"y":0.60778284,"z":0.0}},"center":{"x":-1.284328,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.87335,"y":5.466593,"z":15.95},"xAxis":{"x":-0.60778284,"y":0.79410326,"z":0.0},"yAxis":{"x":-0.79410326,"y":-0.60778284,"z":0.0}},"center":{"x":1.284328,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.0159,"y":14.284747,"z":18.7},"xAxis":{"x":0.57955647,"y":-0.8149321,"z":0.0},"yAxis":{"x":0.8149321,"y":0.57955647,"z":0.0}},"center":{"x":-1.284328,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.8047,"y":5.556063,"z":18.7},"xAxis":{"x":-0.57955647,"y":0.8149321,"z":0.0},"yAxis":{"x":-0.8149321,"y":-0.57955647,"z":0.0}},"center":{"x":1.284328,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.081375,"y":14.192924,"z":21.45},"xAxis":{"x":0.55061686,"y":-0.8347581,"z":0.0},"yAxis":{"x":0.8347581,"y":0.55061686,"z":0.0}},"center":{"x":-1.284328,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.73923,"y":5.6478868,"z":21.45},"xAxis":{"x":-0.55061686,"y":0.8347581,"z":0.0},"yAxis":{"x":-0.8347581,"y":-0.55061686,"z":0.0}},"center":{"x":1.284328,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.143585,"y":14.098861,"z":24.2},"xAxis":{"x":0.52099967,"y":-0.8535569,"z":0.0},"yAxis":{"x":0.8535569,"y":0.52099967,"z":0.0}},"center":{"x":-1.284328,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.67702,"y":5.7419505,"z":24.2},"xAxis":{"x":-0.52099967,"y":0.8535569,"z":0.0},"yAxis":{"x":-0.8535569,"y":-0.52099967,"z":0.0}},"center":{"x":1.284328,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.20246,"y":14.002673,"z":26.95},"xAxis":{"x":0.49074137,"y":-0.8713053,"z":0.0},"yAxis":{"x":0.8713053,"y":0.49074137,"z":0.0}},"center":{"x":-1.284328,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.61814,"y":5.838138,"z":26.95},"xAxis":{"x":-0.49074137,"y":0.8713053,"z":0.0},"yAxis":{"x":-0.8713053,"y":-0.49074137,"z":0.0}},"center":{"x":1.284328,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.25793,"y":13.904479,"z":29.7},"xAxis":{"x":0.4598792,"y":-0.8879815,"z":0.0},"yAxis":{"x":0.8879815,"y":0.4598792,"z":0.0}},"center":{"x":-1.284328,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.562675,"y":5.9363313,"z":29.7},"xAxis":{"x":-0.4598792,"y":0.8879815,"z":0.0},"yAxis":{"x":-0.8879815,"y":-0.4598792,"z":0.0}},"center":{"x":1.284328,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":91.51068,"y":6.03641,"z":32.45},"xAxis":{"x":-0.4284511,"y":0.903565,"z":0.0},"yAxis":{"x":-0.903565,"y":-0.4284511,"z":0.0}},"center":{"x":1.284328,"y":36.19937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":84.59744,"y":15.583253,"z":8.616667},"xAxis":{"x":0.99945986,"y":-0.03286397,"z":0.0},"yAxis":{"x":0.03286397,"y":0.99945986,"z":0.0}},"center":{"x":-2.385598,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":94.22316,"y":4.257558,"z":8.616667},"xAxis":{"x":-0.99945986,"y":0.03286397,"z":0.0},"yAxis":{"x":-0.03286397,"y":-0.99945986,"z":0.0}},"center":{"x":2.385598,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":84.709946,"y":15.575456,"z":11.366667},"xAxis":{"x":0.9976922,"y":-0.06789891,"z":0.0},"yAxis":{"x":0.06789891,"y":0.9976922,"z":0.0}},"center":{"x":-2.385598,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.11066,"y":4.2653546,"z":11.366667},"xAxis":{"x":-0.9976922,"y":0.06789891,"z":0.0},"yAxis":{"x":-0.06789891,"y":-0.9976922,"z":0.0}},"center":{"x":2.385598,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.12992,"y":4.510144,"z":36.116665},"xAxis":{"x":-0.92729235,"y":0.374338,"z":0.0},"yAxis":{"x":-0.374338,"y":-0.92729235,"z":0.0}},"center":{"x":2.385598,"y":40.101658},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":84.82211,"y":15.563718,"z":14.116667},"xAxis":{"x":0.99469686,"y":-0.10285027,"z":0.0},"yAxis":{"x":0.10285027,"y":0.99469686,"z":0.0}},"center":{"x":-2.385598,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.99849,"y":4.277093,"z":14.116667},"xAxis":{"x":-0.99469686,"y":0.10285027,"z":0.0},"yAxis":{"x":-0.10285027,"y":-0.99469686,"z":0.0}},"center":{"x":2.385598,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":84.93379,"y":15.548053,"z":16.866667},"xAxis":{"x":0.99047744,"y":-0.13767508,"z":0.0},"yAxis":{"x":0.13767508,"y":0.99047744,"z":0.0}},"center":{"x":-2.385598,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.88681,"y":4.2927585,"z":16.866667},"xAxis":{"x":-0.99047744,"y":0.13767508,"z":0.0},"yAxis":{"x":-0.13767508,"y":-0.99047744,"z":0.0}},"center":{"x":2.385598,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":85.04485,"y":15.52848,"z":19.616667},"xAxis":{"x":0.9850392,"y":-0.17233045,"z":0.0},"yAxis":{"x":0.17233045,"y":0.9850392,"z":0.0}},"center":{"x":-2.385598,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":93.77575,"y":4.312331,"z":19.616667},"xAxis":{"x":-0.9850392,"y":0.17233045,"z":0.0},"yAxis":{"x":-0.17233045,"y":-0.9850392,"z":0.0}},"center":{"x":2.385598,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":85.15517,"y":15.505024,"z":22.366667},"xAxis":{"x":0.9783888,"y":-0.2067738,"z":0.0},"yAxis":{"x":0.2067738,"y":0.9783888,"z":0.0}},"center":{"x":-2.385598,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":93.665436,"y":4.3357873,"z":22.366667},"xAxis":{"x":-0.9783888,"y":0.2067738,"z":0.0},"yAxis":{"x":-0.2067738,"y":-0.9783888,"z":0.0}},"center":{"x":2.385598,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":85.26459,"y":15.477713,"z":25.116667},"xAxis":{"x":0.9705344,"y":-0.24096268,"z":0.0},"yAxis":{"x":0.24096268,"y":0.9705344,"z":0.0}},"center":{"x":-2.385598,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.556015,"y":4.363098,"z":25.116667},"xAxis":{"x":-0.9705344,"y":0.24096268,"z":0.0},"yAxis":{"x":-0.24096268,"y":-0.9705344,"z":0.0}},"center":{"x":2.385598,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":85.37298,"y":15.446581,"z":27.866667},"xAxis":{"x":0.9614857,"y":-0.27485502,"z":0.0},"yAxis":{"x":0.27485502,"y":0.9614857,"z":0.0}},"center":{"x":-2.385598,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":93.447624,"y":4.3942294,"z":27.866667},"xAxis":{"x":-0.9614857,"y":0.27485502,"z":0.0},"yAxis":{"x":-0.27485502,"y":-0.9614857,"z":0.0}},"center":{"x":2.385598,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":85.48022,"y":15.411667,"z":30.616667},"xAxis":{"x":0.9512538,"y":-0.30840915,"z":0.0},"yAxis":{"x":0.30840915,"y":0.9512538,"z":0.0}},"center":{"x":-2.385598,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.340385,"y":4.429144,"z":30.616667},"xAxis":{"x":-0.9512538,"y":0.30840915,"z":0.0},"yAxis":{"x":-0.30840915,"y":-0.9512538,"z":0.0}},"center":{"x":2.385598,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":93.23444,"y":4.467798,"z":33.366665},"xAxis":{"x":-0.93985134,"y":0.34158376,"z":0.0},"yAxis":{"x":-0.34158376,"y":-0.93985134,"z":0.0}},"center":{"x":2.385598,"y":36.14166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.176704,"y":14.664279,"z":8.616667},"xAxis":{"x":0.7258621,"y":0.6878403,"z":0.0},"yAxis":{"x":-0.6878403,"y":0.7258621,"z":0.0}},"center":{"x":-3.2548368,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":96.6439,"y":5.1765313,"z":8.616667},"xAxis":{"x":-0.7258621,"y":-0.6878403,"z":0.0},"yAxis":{"x":0.6878403,"y":-0.7258621,"z":0.0}},"center":{"x":3.2548368,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.25847,"y":14.741953,"z":11.366667},"xAxis":{"x":0.74954087,"y":0.6619581,"z":0.0},"yAxis":{"x":-0.6619581,"y":0.74954087,"z":0.0}},"center":{"x":-3.2548368,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":96.56213,"y":5.098858,"z":11.366667},"xAxis":{"x":-0.74954087,"y":-0.6619581,"z":0.0},"yAxis":{"x":0.6619581,"y":-0.74954087,"z":0.0}},"center":{"x":3.2548368,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":95.71903,"y":4.541233,"z":36.116665},"xAxis":{"x":-0.9180365,"y":-0.39649576,"z":0.0},"yAxis":{"x":0.39649576,"y":-0.9180365,"z":0.0}},"center":{"x":3.2548368,"y":40.884323},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.3429,"y":14.81671,"z":14.116667},"xAxis":{"x":0.77229726,"y":0.63526136,"z":0.0},"yAxis":{"x":-0.63526136,"y":0.77229726,"z":0.0}},"center":{"x":-3.2548368,"y":10.449885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":96.4777,"y":5.0241,"z":14.116667},"xAxis":{"x":-0.77229726,"y":-0.63526136,"z":0.0},"yAxis":{"x":0.63526136,"y":-0.77229726,"z":0.0}},"center":{"x":3.2548368,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.42991,"y":14.888461,"z":16.866667},"xAxis":{"x":0.79410326,"y":0.60778284,"z":0.0},"yAxis":{"x":-0.60778284,"y":0.79410326,"z":0.0}},"center":{"x":-3.2548368,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":96.39069,"y":4.9523497,"z":16.866667},"xAxis":{"x":-0.79410326,"y":-0.60778284,"z":0.0},"yAxis":{"x":0.60778284,"y":-0.79410326,"z":0.0}},"center":{"x":3.2548368,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.51938,"y":14.957115,"z":19.616667},"xAxis":{"x":0.8149321,"y":0.57955647,"z":0.0},"yAxis":{"x":-0.57955647,"y":0.8149321,"z":0.0}},"center":{"x":-3.2548368,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":96.30122,"y":4.883695,"z":19.616667},"xAxis":{"x":-0.8149321,"y":-0.57955647,"z":0.0},"yAxis":{"x":0.57955647,"y":-0.8149321,"z":0.0}},"center":{"x":3.2548368,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.611206,"y":15.02259,"z":22.366667},"xAxis":{"x":0.8347581,"y":0.55061686,"z":0.0},"yAxis":{"x":-0.55061686,"y":0.8347581,"z":0.0}},"center":{"x":-3.2548368,"y":22.329885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":96.2094,"y":4.818221,"z":22.366667},"xAxis":{"x":-0.8347581,"y":-0.55061686,"z":0.0},"yAxis":{"x":0.55061686,"y":-0.8347581,"z":0.0}},"center":{"x":3.2548368,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.70527,"y":15.084803,"z":25.116667},"xAxis":{"x":0.8535569,"y":0.52099967,"z":0.0},"yAxis":{"x":-0.52099967,"y":0.8535569,"z":0.0}},"center":{"x":-3.2548368,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":96.11533,"y":4.7560077,"z":25.116667},"xAxis":{"x":-0.8535569,"y":-0.52099967,"z":0.0},"yAxis":{"x":0.52099967,"y":-0.8535569,"z":0.0}},"center":{"x":3.2548368,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.80146,"y":15.143679,"z":27.866667},"xAxis":{"x":0.8713053,"y":0.49074137,"z":0.0},"yAxis":{"x":-0.49074137,"y":0.8713053,"z":0.0}},"center":{"x":-3.2548368,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":96.01914,"y":4.697132,"z":27.866667},"xAxis":{"x":-0.8713053,"y":-0.49074137,"z":0.0},"yAxis":{"x":0.49074137,"y":-0.8713053,"z":0.0}},"center":{"x":3.2548368,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.89965,"y":15.199144,"z":30.616667},"xAxis":{"x":0.8879815,"y":0.4598792,"z":0.0},"yAxis":{"x":-0.4598792,"y":0.8879815,"z":0.0}},"center":{"x":-3.2548368,"y":34.209885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":95.92095,"y":4.641666,"z":30.616667},"xAxis":{"x":-0.8879815,"y":-0.4598792,"z":0.0},"yAxis":{"x":0.4598792,"y":-0.8879815,"z":0.0}},"center":{"x":3.2548368,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":95.82088,"y":4.5896783,"z":33.366665},"xAxis":{"x":-0.903565,"y":-0.4284511,"z":0.0},"yAxis":{"x":0.4284511,"y":-0.903565,"z":0.0}},"center":{"x":3.2548368,"y":36.924324},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":81.22088,"y":12.538655,"z":9.533333},"xAxis":{"x":0.03286397,"y":0.99945986,"z":0.0},"yAxis":{"x":-0.99945986,"y":0.03286397,"z":0.0}},"center":{"x":-3.312552,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.599724,"y":7.302156,"z":9.533333},"xAxis":{"x":-0.03286397,"y":-0.99945986,"z":0.0},"yAxis":{"x":0.99945986,"y":-0.03286397,"z":0.0}},"center":{"x":3.312552,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.228676,"y":12.651161,"z":12.283333},"xAxis":{"x":0.06789891,"y":0.9976922,"z":0.0},"yAxis":{"x":-0.9976922,"y":0.06789891,"z":0.0}},"center":{"x":-3.312552,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.59193,"y":7.1896496,"z":12.283333},"xAxis":{"x":-0.06789891,"y":-0.9976922,"z":0.0},"yAxis":{"x":0.9976922,"y":-0.06789891,"z":0.0}},"center":{"x":3.312552,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.34714,"y":6.208913,"z":37.033333},"xAxis":{"x":-0.374338,"y":-0.92729235,"z":0.0},"yAxis":{"x":0.92729235,"y":-0.374338,"z":0.0}},"center":{"x":3.312552,"y":41.98559},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.24041,"y":12.763325,"z":15.033333},"xAxis":{"x":0.10285027,"y":0.99469686,"z":0.0},"yAxis":{"x":-0.99469686,"y":0.10285027,"z":0.0}},"center":{"x":-3.312552,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.58019,"y":7.0774865,"z":15.033333},"xAxis":{"x":-0.10285027,"y":-0.99469686,"z":0.0},"yAxis":{"x":0.99469686,"y":-0.10285027,"z":0.0}},"center":{"x":3.312552,"y":10.305597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":81.25608,"y":12.875007,"z":17.783333},"xAxis":{"x":0.13767508,"y":0.99047744,"z":0.0},"yAxis":{"x":-0.99047744,"y":0.13767508,"z":0.0}},"center":{"x":-3.312552,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.56452,"y":6.9658036,"z":17.783333},"xAxis":{"x":-0.13767508,"y":-0.99047744,"z":0.0},"yAxis":{"x":0.99047744,"y":-0.13767508,"z":0.0}},"center":{"x":3.312552,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.27565,"y":12.986072,"z":20.533333},"xAxis":{"x":0.17233045,"y":0.9850392,"z":0.0},"yAxis":{"x":-0.9850392,"y":0.17233045,"z":0.0}},"center":{"x":-3.312552,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.54495,"y":6.854739,"z":20.533333},"xAxis":{"x":-0.17233045,"y":-0.9850392,"z":0.0},"yAxis":{"x":0.9850392,"y":-0.17233045,"z":0.0}},"center":{"x":3.312552,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.2991,"y":13.096381,"z":23.283333},"xAxis":{"x":0.2067738,"y":0.9783888,"z":0.0},"yAxis":{"x":-0.9783888,"y":0.2067738,"z":0.0}},"center":{"x":-3.312552,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.5215,"y":6.7444296,"z":23.283333},"xAxis":{"x":-0.2067738,"y":-0.9783888,"z":0.0},"yAxis":{"x":0.9783888,"y":-0.2067738,"z":0.0}},"center":{"x":3.312552,"y":22.185598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":81.326416,"y":13.2058,"z":26.033333},"xAxis":{"x":0.24096268,"y":0.9705344,"z":0.0},"yAxis":{"x":-0.9705344,"y":0.24096268,"z":0.0}},"center":{"x":-3.312552,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.49419,"y":6.6350102,"z":26.033333},"xAxis":{"x":-0.24096268,"y":-0.9705344,"z":0.0},"yAxis":{"x":0.9705344,"y":-0.24096268,"z":0.0}},"center":{"x":3.312552,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":81.35755,"y":13.314194,"z":28.783333},"xAxis":{"x":0.27485502,"y":0.9614857,"z":0.0},"yAxis":{"x":-0.9614857,"y":0.27485502,"z":0.0}},"center":{"x":-3.312552,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.46305,"y":6.5266166,"z":28.783333},"xAxis":{"x":-0.27485502,"y":-0.9614857,"z":0.0},"yAxis":{"x":0.9614857,"y":-0.27485502,"z":0.0}},"center":{"x":3.312552,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.39246,"y":13.42143,"z":31.533333},"xAxis":{"x":0.30840915,"y":0.9512538,"z":0.0},"yAxis":{"x":-0.9512538,"y":0.30840915,"z":0.0}},"center":{"x":-3.312552,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.42814,"y":6.419381,"z":31.533333},"xAxis":{"x":-0.30840915,"y":-0.9512538,"z":0.0},"yAxis":{"x":0.9512538,"y":-0.30840915,"z":0.0}},"center":{"x":3.312552,"y":34.065594},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":97.38949,"y":6.3134365,"z":34.283333},"xAxis":{"x":-0.34158376,"y":-0.93985134,"z":0.0},"yAxis":{"x":0.93985134,"y":-0.34158376,"z":0.0}},"center":{"x":3.312552,"y":38.025593},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":82.13985,"y":10.117918,"z":9.533333},"xAxis":{"x":-0.6878403,"y":0.7258621,"z":0.0},"yAxis":{"x":-0.7258621,"y":-0.6878403,"z":0.0}},"center":{"x":-2.5298858,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":96.680756,"y":9.722893,"z":9.533333},"xAxis":{"x":0.6878403,"y":-0.7258621,"z":0.0},"yAxis":{"x":0.7258621,"y":0.6878403,"z":0.0}},"center":{"x":2.5298858,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":82.06218,"y":10.199681,"z":12.283333},"xAxis":{"x":-0.6619581,"y":0.74954087,"z":0.0},"yAxis":{"x":-0.74954087,"y":-0.6619581,"z":0.0}},"center":{"x":-2.5298858,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":96.75842,"y":9.6411295,"z":12.283333},"xAxis":{"x":0.6619581,"y":-0.74954087,"z":0.0},"yAxis":{"x":0.74954087,"y":0.6619581,"z":0.0}},"center":{"x":2.5298858,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":97.31605,"y":8.798027,"z":37.033333},"xAxis":{"x":0.39649576,"y":-0.9180365,"z":0.0},"yAxis":{"x":0.9180365,"y":0.39649576,"z":0.0}},"center":{"x":2.5298858,"y":42.854836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":81.98742,"y":10.284119,"z":15.033333},"xAxis":{"x":-0.63526136,"y":0.77229726,"z":0.0},"yAxis":{"x":-0.77229726,"y":-0.63526136,"z":0.0}},"center":{"x":-2.5298858,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":96.83318,"y":9.556692,"z":15.033333},"xAxis":{"x":0.63526136,"y":-0.77229726,"z":0.0},"yAxis":{"x":0.77229726,"y":0.63526136,"z":0.0}},"center":{"x":2.5298858,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":81.915665,"y":10.371126,"z":17.783333},"xAxis":{"x":-0.60778284,"y":0.79410326,"z":0.0},"yAxis":{"x":-0.79410326,"y":-0.60778284,"z":0.0}},"center":{"x":-2.5298858,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":96.90494,"y":9.469685,"z":17.783333},"xAxis":{"x":0.60778284,"y":-0.79410326,"z":0.0},"yAxis":{"x":0.79410326,"y":0.60778284,"z":0.0}},"center":{"x":2.5298858,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":81.847015,"y":10.460597,"z":20.533333},"xAxis":{"x":-0.57955647,"y":0.8149321,"z":0.0},"yAxis":{"x":-0.8149321,"y":-0.57955647,"z":0.0}},"center":{"x":-2.5298858,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":96.97359,"y":9.380214,"z":20.533333},"xAxis":{"x":0.57955647,"y":-0.8149321,"z":0.0},"yAxis":{"x":0.8149321,"y":0.57955647,"z":0.0}},"center":{"x":2.5298858,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":81.78154,"y":10.552421,"z":23.283333},"xAxis":{"x":-0.55061686,"y":0.8347581,"z":0.0},"yAxis":{"x":-0.8347581,"y":-0.55061686,"z":0.0}},"center":{"x":-2.5298858,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":97.03906,"y":9.28839,"z":23.283333},"xAxis":{"x":0.55061686,"y":-0.8347581,"z":0.0},"yAxis":{"x":0.8347581,"y":0.55061686,"z":0.0}},"center":{"x":2.5298858,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":81.71933,"y":10.646483,"z":26.033333},"xAxis":{"x":-0.52099967,"y":0.8535569,"z":0.0},"yAxis":{"x":-0.8535569,"y":-0.52099967,"z":0.0}},"center":{"x":-2.5298858,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":97.10127,"y":9.194327,"z":26.033333},"xAxis":{"x":0.52099967,"y":-0.8535569,"z":0.0},"yAxis":{"x":0.8535569,"y":0.52099967,"z":0.0}},"center":{"x":2.5298858,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":81.66045,"y":10.742671,"z":28.783333},"xAxis":{"x":-0.49074137,"y":0.8713053,"z":0.0},"yAxis":{"x":-0.8713053,"y":-0.49074137,"z":0.0}},"center":{"x":-2.5298858,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":97.16015,"y":9.09814,"z":28.783333},"xAxis":{"x":0.49074137,"y":-0.8713053,"z":0.0},"yAxis":{"x":0.8713053,"y":0.49074137,"z":0.0}},"center":{"x":2.5298858,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":81.60499,"y":10.840865,"z":31.533333},"xAxis":{"x":-0.4598792,"y":0.8879815,"z":0.0},"yAxis":{"x":-0.8879815,"y":-0.4598792,"z":0.0}},"center":{"x":-2.5298858,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":97.215614,"y":8.999946,"z":31.533333},"xAxis":{"x":0.4598792,"y":-0.8879815,"z":0.0},"yAxis":{"x":0.8879815,"y":0.4598792,"z":0.0}},"center":{"x":2.5298858,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":97.26761,"y":8.899868,"z":34.283333},"xAxis":{"x":0.4284511,"y":-0.903565,"z":0.0},"yAxis":{"x":0.903565,"y":0.4284511,"z":0.0}},"center":{"x":2.5298858,"y":38.894836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":7.5},"xAxis":{"x":-0.4101134,"y":-0.9120346,"z":0.0},"yAxis":{"x":0.9120346,"y":-0.4101134,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":7.5},"xAxis":{"x":0.4101134,"y":0.9120346,"z":0.0},"yAxis":{"x":-0.9120346,"y":0.4101134,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":10.25},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":10.25},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":35.0},"xAxis":{"x":0.69856584,"y":0.7155458,"z":0.0},"yAxis":{"x":-0.7155458,"y":0.69856584,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":13.0},"xAxis":{"x":-0.47304255,"y":-0.88103956,"z":0.0},"yAxis":{"x":0.88103956,"y":-0.47304255,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":13.0},"xAxis":{"x":0.47304255,"y":0.88103956,"z":0.0},"yAxis":{"x":-0.88103956,"y":0.47304255,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":15.75},"xAxis":{"x":-0.50365317,"y":-0.86390597,"z":0.0},"yAxis":{"x":0.86390597,"y":-0.50365317,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":15.75},"xAxis":{"x":0.50365317,"y":0.86390597,"z":0.0},"yAxis":{"x":-0.86390597,"y":0.50365317,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":18.5},"xAxis":{"x":-0.53364396,"y":-0.8457092,"z":0.0},"yAxis":{"x":0.8457092,"y":-0.53364396,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":18.5},"xAxis":{"x":0.53364396,"y":0.8457092,"z":0.0},"yAxis":{"x":-0.8457092,"y":0.53364396,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":21.25},"xAxis":{"x":-0.56297815,"y":-0.8264718,"z":0.0},"yAxis":{"x":0.8264718,"y":-0.56297815,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":21.25},"xAxis":{"x":0.56297815,"y":0.8264718,"z":0.0},"yAxis":{"x":-0.8264718,"y":0.56297815,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":24.0},"xAxis":{"x":-0.5916195,"y":-0.8062173,"z":0.0},"yAxis":{"x":0.8062173,"y":-0.5916195,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":24.0},"xAxis":{"x":0.5916195,"y":0.8062173,"z":0.0},"yAxis":{"x":-0.8062173,"y":0.5916195,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":26.75},"xAxis":{"x":-0.6195328,"y":-0.78497076,"z":0.0},"yAxis":{"x":0.78497076,"y":-0.6195328,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":26.75},"xAxis":{"x":0.6195328,"y":0.78497076,"z":0.0},"yAxis":{"x":-0.78497076,"y":0.6195328,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":84.43146,"y":12.372672,"z":29.5},"xAxis":{"x":-0.64668375,"y":-0.7627582,"z":0.0},"yAxis":{"x":0.7627582,"y":-0.64668375,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":29.5},"xAxis":{"x":0.64668375,"y":0.7627582,"z":0.0},"yAxis":{"x":-0.7627582,"y":0.64668375,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":94.389145,"y":7.4681387,"z":32.25},"xAxis":{"x":0.6730389,"y":0.73960704,"z":0.0},"yAxis":{"x":-0.73960704,"y":0.6730389,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":63.8,"y":128.425,"z":0.0},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":49.13137,"y":129.57578,"z":19.842703},"xAxis":{"x":0.7385565,"y":-0.67417014,"z":-0.0053724926},"yAxis":{"x":0.67415893,"y":0.73857576,"z":-0.0039567803}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":51.089474,"y":131.49405,"z":35.217346},"xAxis":{"x":0.54095507,"y":-0.84051055,"z":0.030161077},"yAxis":{"x":0.84092736,"y":0.5411434,"z":-0.0022270724}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":53.15555,"y":133.29184,"z":50.59242},"xAxis":{"x":0.30661806,"y":-0.94967663,"z":0.06402878},"yAxis":{"x":0.95142585,"y":0.30775926,"z":0.008549462}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":44.54876,"y":126.35697,"z":67.570045},"xAxis":{"x":0.18872777,"y":-0.9783842,"z":-0.08453534},"yAxis":{"x":0.9813645,"y":0.19106719,"z":-0.020422136}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":55.928505,"y":125.836876,"z":57.15121},"xAxis":{"x":0.35550255,"y":-0.93245506,"z":0.06438575},"yAxis":{"x":0.9342611,"y":0.35655156,"z":0.0052204495}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":56.866863,"y":129.85585,"z":9.413813},"xAxis":{"x":0.8434106,"y":-0.53714603,"z":-0.011518981},"yAxis":{"x":0.53725797,"y":0.8433393,"z":0.011518218}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":43.77544,"y":123.17193,"z":9.413813},"xAxis":{"x":-0.8701092,"y":0.49272436,"z":-0.011518982},"yAxis":{"x":-0.4928398,"y":-0.8700438,"z":0.011518218}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":57.58133,"y":129.74474,"z":14.60294},"xAxis":{"x":0.79399097,"y":-0.6079295,"z":0.00010787936},"yAxis":{"x":0.6079039,"y":0.7939592,"z":0.009034589}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":43.056175,"y":123.24587,"z":14.60294},"xAxis":{"x":-0.8244235,"y":0.5659734,"z":0.00010787926},"yAxis":{"x":-0.5659495,"y":-0.8243904,"z":0.009034589}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":38.974895,"y":124.11577,"z":61.554436},"xAxis":{"x":-0.1880753,"y":0.9768714,"z":0.10173499},"yAxis":{"x":-0.9808457,"y":-0.19216031,"z":0.031877585}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":58.24346,"y":129.61935,"z":19.79868},"xAxis":{"x":0.7385609,"y":-0.6740816,"z":0.011905654},"yAxis":{"x":0.6740436,"y":0.7386528,"z":0.007561558}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":42.38844,"y":123.33678,"z":19.79868},"xAxis":{"x":-0.77249545,"y":0.6349087,"z":0.011905654},"yAxis":{"x":-0.63486594,"y":-0.77258533,"z":0.0075615575}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":58.85217,"y":129.48434,"z":25.000708},"xAxis":{"x":0.6775412,"y":-0.73510015,"z":0.023784777},"yAxis":{"x":0.7351749,"y":0.6778402,"z":0.0071103075}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":41.773552,"y":123.44006,"z":25.000708},"xAxis":{"x":-0.7147193,"y":0.69900686,"z":0.023784777},"yAxis":{"x":-0.69906604,"y":-0.7150217,"z":0.0071103065}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":59.406776,"y":129.3444,"z":30.208652},"xAxis":{"x":0.611395,"y":-0.79052186,"z":0.035655063},"yAxis":{"x":0.7908337,"y":0.6119828,"z":0.007684263}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":41.21244,"y":123.55108,"z":30.208652},"xAxis":{"x":-0.6515336,"y":0.75778145,"z":0.035655063},"yAxis":{"x":-0.7580624,"y":-0.65213674,"z":0.007684262}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":59.907017,"y":129.20428,"z":35.422096},"xAxis":{"x":0.5406247,"y":-0.839926,"z":0.0474264},"yAxis":{"x":0.8405975,"y":0.5415808,"z":0.009279067}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":40.705612,"y":123.66509,"z":35.422096},"xAxis":{"x":-0.5834181,"y":0.8107861,"z":0.047426403},"yAxis":{"x":-0.81140715,"y":-0.5844077,"z":0.009279067}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":60.35303,"y":129.0687,"z":40.640575},"xAxis":{"x":0.46576726,"y":-0.88293755,"z":0.059009418},"yAxis":{"x":0.88408846,"y":0.46716854,"z":0.011882613}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":40.25317,"y":123.7774,"z":40.640575},"xAxis":{"x":-0.51088977,"y":0.8576185,"z":0.059009425},"yAxis":{"x":-0.8586952,"y":-0.51234883,"z":0.0118826125}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":60.74538,"y":128.94235,"z":45.863598},"xAxis":{"x":0.38739124,"y":-0.9192299,"z":0.07031619},"yAxis":{"x":0.92097634,"y":0.38931102,"z":0.015475135}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":39.8548,"y":123.88324,"z":45.863598},"xAxis":{"x":-0.43449947,"y":0.89792305,"z":0.07031619},"yAxis":{"x":-0.89956766,"y":-0.43650717,"z":0.015475135}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":61.08503,"y":128.82988,"z":51.090626},"xAxis":{"x":0.30609155,"y":-0.94852763,"z":0.08126086},"yAxis":{"x":0.95098126,"y":0.30859926,"z":0.02002936}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":39.509785,"y":123.97796,"z":51.090626},"xAxis":{"x":-0.354827,"y":0.93139386,"z":0.08126087},"yAxis":{"x":-0.9337142,"y":-0.35745847,"z":0.02002936}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":39.21699,"y":124.05696,"z":56.321102},"xAxis":{"x":-0.2724772,"y":0.9577767,"z":0.091760375},"yAxis":{"x":-0.96087563,"y":-0.27580288,"z":0.025510713}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":52.275993,"y":128.83545,"z":9.529733},"xAxis":{"x":0.8428881,"y":-0.5365773,"z":-0.040304422},"yAxis":{"x":0.5375211,"y":0.8430734,"z":0.017270565}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":48.307274,"y":124.428825,"z":9.529733},"xAxis":{"x":-0.8695579,"y":0.49218345,"z":-0.040304422},"yAxis":{"x":-0.49311638,"y":-0.8697919,"z":0.017270565}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":52.91879,"y":129.12494,"z":14.688468},"xAxis":{"x":0.79374176,"y":-0.6075781,"z":-0.028684698},"yAxis":{"x":0.60809875,"y":0.7937236,"z":0.014790977}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":47.68034,"y":124.106415,"z":14.688468},"xAxis":{"x":-0.8241564,"y":0.5656354,"z":-0.028684698},"yAxis":{"x":-0.5661562,"y":-0.8241652,"z":0.014790977}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.868153,"y":121.49565,"z":61.225407},"xAxis":{"x":-0.1893267,"y":0.9791923,"z":0.07306017},"yAxis":{"x":-0.98059374,"y":-0.19240543,"z":0.037631355}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":53.544315,"y":129.40457,"z":19.84987},"xAxis":{"x":0.73856527,"y":-0.6739704,"z":-0.01688993},"yAxis":{"x":0.67417294,"y":0.7384534,"z":0.013321156}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":54.151756,"y":129.6759,"z":25.013874},"xAxis":{"x":0.67777747,"y":-0.73525006,"z":-0.0050096633},"yAxis":{"x":0.73524207,"y":0.6776824,"z":0.012872256}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":46.477577,"y":123.49232,"z":25.013874},"xAxis":{"x":-0.714963,"y":0.6991443,"z":-0.005009663},"yAxis":{"x":-0.69914126,"y":-0.71486765,"z":0.012872256}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":54.74045,"y":129.94052,"z":30.180397},"xAxis":{"x":0.6118398,"y":-0.7909519,"z":0.0068659117},"yAxis":{"x":0.79084253,"y":0.6118719,"z":0.01344769}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":45.90338,"y":123.19754,"z":30.180397},"xAxis":{"x":-0.65200007,"y":0.75818783,"z":0.0068659117},"yAxis":{"x":-0.75807697,"y":-0.6520265,"z":0.013447689}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":55.30987,"y":130.20013,"z":35.349335},"xAxis":{"x":0.541253,"y":-0.84065306,"z":0.018646637},"yAxis":{"x":0.8405522,"y":0.54152167,"z":0.015043086}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":55.85964,"y":130.4564,"z":40.520565},"xAxis":{"x":0.4665527,"y":-0.8839762,"z":0.030243078},"yAxis":{"x":0.8839937,"y":0.46716565,"z":0.017646333}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":44.81243,"y":122.62437,"z":40.520565},"xAxis":{"x":-0.511728,"y":0.85861504,"z":0.030243082},"yAxis":{"x":-0.8586008,"y":-0.512341,"z":0.017646333}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":56.389515,"y":130.71107,"z":45.69395},"xAxis":{"x":0.38830623,"y":-0.9205924,"z":0.0415672},"yAxis":{"x":0.9208372,"y":0.3893684,"z":0.02123767}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":44.296463,"y":122.34258,"z":45.69395},"xAxis":{"x":-0.43548384,"y":0.8992363,"z":0.0415672},"yAxis":{"x":-0.89942575,"y":-0.4365573,"z":0.02123767}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":56.89943,"y":130.96588,"z":50.869335},"xAxis":{"x":0.30710754,"y":-0.9502238,"z":0.052533023},"yAxis":{"x":0.9508031,"y":0.30872056,"z":0.025789829}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":43.32438,"y":121.77996,"z":56.04655},"xAxis":{"x":-0.27366897,"y":0.9597547,"z":0.06305732},"yAxis":{"x":-0.9606547,"y":-0.27597997,"z":0.031268254}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.644028,"y":124.70513,"z":9.486556},"xAxis":{"x":-0.8428881,"y":0.5365773,"z":0.040304422},"yAxis":{"x":-0.5375211,"y":-0.8430734,"z":-0.017270565}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":50.721695,"y":128.68997,"z":9.486556},"xAxis":{"x":0.8695579,"y":-0.49218345,"z":0.040304422},"yAxis":{"x":0.49311638,"y":0.8697919,"z":-0.017270565}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.94073,"y":125.23665,"z":14.657449},"xAxis":{"x":-0.79374176,"y":0.6075781,"z":0.028684698},"yAxis":{"x":-0.60809875,"y":-0.7937236,"z":-0.014790977}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":50.45293,"y":128.14378,"z":14.657449},"xAxis":{"x":0.8241564,"y":-0.5656354,"z":0.028684698},"yAxis":{"x":0.5661562,"y":0.8241652,"z":-0.014790977}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":47.67295,"y":122.434845,"z":61.08236},"xAxis":{"x":0.1893267,"y":-0.9791923,"z":-0.07306017},"yAxis":{"x":0.98059374,"y":0.19240543,"z":-0.037631355}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":50.18035,"y":127.57822,"z":19.826056},"xAxis":{"x":0.7724941,"y":-0.63479733,"z":0.01688993},"yAxis":{"x":0.6350054,"y":0.7723928,"z":-0.013321155}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":50.550232,"y":126.35669,"z":24.992258},"xAxis":{"x":-0.67777747,"y":0.73525006,"z":0.0050096633},"yAxis":{"x":-0.73524207,"y":-0.6776824,"z":-0.012872256}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.902287,"y":126.993675,"z":24.992258},"xAxis":{"x":0.714963,"y":-0.6991443,"z":0.005009663},"yAxis":{"x":0.69914126,"y":0.71486765,"z":-0.012872256}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":50.866283,"y":126.94406,"z":30.155956},"xAxis":{"x":-0.6118398,"y":0.7909519,"z":-0.0068659117},"yAxis":{"x":-0.79084253,"y":-0.6118719,"z":-0.01344769}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.617092,"y":126.39072,"z":30.155956},"xAxis":{"x":0.65200007,"y":-0.75818783,"z":-0.0068659117},"yAxis":{"x":0.75807697,"y":0.6520265,"z":-0.013447689}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.323193,"y":125.77005,"z":35.317066},"xAxis":{"x":0.5840832,"y":-0.8114796,"z":-0.018646639},"yAxis":{"x":0.81136495,"y":0.5843463,"z":-0.015043085}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":51.528698,"y":128.16959,"z":40.47553},"xAxis":{"x":-0.4665527,"y":0.8839762,"z":-0.030243078},"yAxis":{"x":-0.8839937,"y":-0.46716565,"z":-0.017646333}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.019066,"y":125.13252,"z":40.47553},"xAxis":{"x":0.511728,"y":-0.85861504,"z":-0.030243082},"yAxis":{"x":0.8586008,"y":0.512341,"z":-0.017646333}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":51.87792,"y":128.80577,"z":45.6313},"xAxis":{"x":-0.38830623,"y":0.9205924,"z":-0.0415672},"yAxis":{"x":-0.9208372,"y":-0.3893684,"z":-0.02123767}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.703278,"y":124.47909,"z":45.6313},"xAxis":{"x":0.43548384,"y":-0.8992363,"z":-0.0415672},"yAxis":{"x":0.89942575,"y":0.4365573,"z":-0.02123767}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.37448,"y":123.81085,"z":50.78436},"xAxis":{"x":0.35592952,"y":-0.9330351,"z":-0.05253303},"yAxis":{"x":0.93353003,"y":0.35757038,"z":-0.025789829}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.031418,"y":123.129,"z":55.934704},"xAxis":{"x":0.27366897,"y":-0.9597547,"z":-0.06305732},"yAxis":{"x":0.9606547,"y":0.27597997,"z":-0.031268254}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.66311,"y":120.11252,"z":9.429332},"xAxis":{"x":-0.8425714,"y":0.53661156,"z":0.04606011},"yAxis":{"x":-0.5366985,"y":-0.84369564,"z":0.011506757}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":49.466022,"y":133.22362,"z":9.429332},"xAxis":{"x":0.8692434,"y":-0.49223405,"z":0.046060115},"yAxis":{"x":0.49226266,"y":0.8703706,"z":0.011506757}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.560226,"y":120.57295,"z":14.647171},"xAxis":{"x":-0.7934677,"y":0.607637,"z":0.03444238},"yAxis":{"x":-0.6075551,"y":-0.79415417,"z":0.01399647}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":49.59263,"y":132.76912,"z":14.647171},"xAxis":{"x":0.8238858,"y":-0.56570834,"z":0.03444238},"yAxis":{"x":0.56559104,"y":0.8245671,"z":0.01399647}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.31077,"y":126.32232,"z":61.334106},"xAxis":{"x":0.18932389,"y":-0.9796049,"z":-0.06731045},"yAxis":{"x":0.98167795,"y":0.19033815,"z":-0.008930331}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.45716,"y":121.08769,"z":19.859928},"xAxis":{"x":-0.7383316,"y":0.6740574,"z":0.022649035},"yAxis":{"x":-0.67389077,"y":-0.738669,"z":0.015472455}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":49.722225,"y":132.2604,"z":19.859928},"xAxis":{"x":0.77226526,"y":-0.6348964,"z":0.022649035},"yAxis":{"x":0.63471246,"y":0.7725935,"z":0.015472455}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.35864,"y":121.65652,"z":25.06715},"xAxis":{"x":-0.67758167,"y":0.7353687,"z":0.010769615},"yAxis":{"x":-0.7352019,"y":-0.6776611,"z":0.015923508}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":49.850086,"y":131.69746,"z":25.06715},"xAxis":{"x":0.7147736,"y":-0.699273,"z":0.010769615},"yAxis":{"x":0.6991023,"y":0.71484435,"z":0.015923508}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.269356,"y":122.27876,"z":30.268425},"xAxis":{"x":-0.61167896,"y":0.79110533,"z":-0.001105698},"yAxis":{"x":-0.791023,"y":-0.6115939,"z":0.015346201}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":49.97149,"y":131.08067,"z":30.268425},"xAxis":{"x":0.65184736,"y":-0.75834936,"z":-0.001105698},"yAxis":{"x":0.7582716,"y":0.65175813,"z":0.015346202}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.193928,"y":122.95339,"z":35.463387},"xAxis":{"x":-0.541124,"y":0.8408441,"z":-0.012886748},"yAxis":{"x":-0.84093034,"y":-0.54096884,"z":0.013744921}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.081776,"y":130.41086,"z":35.463387},"xAxis":{"x":0.5839643,"y":-0.8116771,"z":-0.01288675},"yAxis":{"x":0.8117712,"y":0.5838138,"z":0.013744922}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.136868,"y":123.678955,"z":40.651714},"xAxis":{"x":-0.4664522,"y":0.8842075,"z":-0.024484096},"yAxis":{"x":-0.884545,"y":-0.466322,"z":0.011131824}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.17635,"y":129.68922,"z":40.651714},"xAxis":{"x":0.5116396,"y":-0.85885125,"z":-0.024484102},"yAxis":{"x":0.85919505,"y":0.51152706,"z":0.011131824}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.10256,"y":124.453606,"z":45.833138},"xAxis":{"x":-0.38823062,"y":0.92086625,"z":-0.0358097},"yAxis":{"x":-0.9215359,"y":-0.38822025,"z":0.007526746}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.25075,"y":128.91739,"z":45.833138},"xAxis":{"x":0.4354225,"y":-0.8995137,"z":-0.035809703},"yAxis":{"x":0.90018296,"y":0.43544686,"z":0.007526746}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.0952,"y":125.27515,"z":51.007446},"xAxis":{"x":-0.30705306,"y":0.9505421,"z":-0.046777576},"yAxis":{"x":-0.9516222,"y":-0.30725643,"z":0.0029570565}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.30067,"y":128.09734,"z":51.007446},"xAxis":{"x":0.3558916,"y":-0.9333558,"z":-0.046777584},"yAxis":{"x":0.93442386,"y":0.35615063,"z":0.0029570565}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":50.32198,"y":127.23141,"z":56.17447},"xAxis":{"x":0.2736506,"y":-0.9601206,"z":-0.057304475},"yAxis":{"x":0.96165776,"y":0.27424046,"z":-0.0025425532}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":54.568897,"y":118.573425,"z":10.189063},"xAxis":{"x":-0.5366985,"y":-0.84369564,"z":0.011506757},"yAxis":{"x":0.8425714,"y":-0.53661156,"z":-0.04606011}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":45.485737,"y":134.55826,"z":10.189063},"xAxis":{"x":0.49226266,"y":0.8703706,"z":0.011506757},"yAxis":{"x":-0.8692434,"y":0.49223405,"z":-0.046060115}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":54.31269,"y":118.70985,"z":15.452777},"xAxis":{"x":-0.6075551,"y":-0.79415417,"z":0.01399647},"yAxis":{"x":0.7934677,"y":-0.607637,"z":-0.03444238}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":46.86025,"y":134.64238,"z":15.4915285},"xAxis":{"x":0.8238858,"y":-0.56570834,"z":0.03444238},"yAxis":{"x":0.56559104,"y":0.8245671,"z":0.01399647}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":49.72093,"y":129.47762,"z":62.510597},"xAxis":{"x":0.18932389,"y":-0.9796049,"z":-0.06731045},"yAxis":{"x":0.98167795,"y":0.19033815,"z":-0.008930331}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":54.02858,"y":118.91543,"z":20.71281},"xAxis":{"x":-0.67389077,"y":-0.738669,"z":0.015472455},"yAxis":{"x":0.7383316,"y":-0.6740574,"z":-0.022649035}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":47.168633,"y":134.35486,"z":20.743307},"xAxis":{"x":0.77226526,"y":-0.6348964,"z":0.022649035},"yAxis":{"x":0.63471246,"y":0.7725935,"z":0.015472455}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":53.722652,"y":119.19228,"z":25.96835},"xAxis":{"x":-0.7352019,"y":-0.6776611,"z":0.015923508},"yAxis":{"x":0.67758167,"y":-0.7353687,"z":-0.010769615}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":47.49401,"y":133.99654,"z":25.989704},"xAxis":{"x":0.7147736,"y":-0.699273,"z":0.010769615},"yAxis":{"x":0.6991023,"y":0.71484435,"z":0.015923508}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":53.40118,"y":119.541985,"z":31.218616},"xAxis":{"x":-0.791023,"y":-0.6115939,"z":0.015346201},"yAxis":{"x":0.61167896,"y":-0.79110533,"z":0.001105698}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":46.70207,"y":133.6515,"z":31.218616},"xAxis":{"x":0.7582716,"y":0.65175813,"z":0.015346202},"yAxis":{"x":-0.65184736,"y":0.75834936,"z":0.001105698}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":53.070545,"y":119.965546,"z":36.46287},"xAxis":{"x":-0.84093034,"y":-0.54096884,"z":0.013744921},"yAxis":{"x":0.541124,"y":-0.8408441,"z":0.012886748}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":47.05421,"y":133.24565,"z":36.46287},"xAxis":{"x":0.8117712,"y":0.5838138,"z":0.013744922},"yAxis":{"x":-0.5839643,"y":0.8116771,"z":0.01288675}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":52.7372,"y":120.463425,"z":41.70042},"xAxis":{"x":-0.884545,"y":-0.466322,"z":0.011131824},"yAxis":{"x":0.4664522,"y":-0.8842075,"z":0.024484096}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":48.50957,"y":132.48785,"z":41.68974},"xAxis":{"x":0.5116396,"y":-0.85885125,"z":-0.024484102},"yAxis":{"x":0.85919505,"y":0.51152706,"z":0.011131824}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":52.407623,"y":121.035515,"z":46.930626},"xAxis":{"x":-0.9215359,"y":-0.38822025,"z":0.007526746},"yAxis":{"x":0.38823062,"y":-0.92086625,"z":0.0358097}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":47.771683,"y":132.21146,"z":46.930626},"xAxis":{"x":0.90018296,"y":0.43544686,"z":0.007526746},"yAxis":{"x":-0.4354225,"y":0.8995137,"z":0.035809703}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":52.08825,"y":121.681145,"z":52.152893},"xAxis":{"x":-0.9516222,"y":-0.30725643,"z":0.0029570565},"yAxis":{"x":0.30705306,"y":-0.9505421,"z":0.046777576}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":49.15633,"y":131.12148,"z":52.117836},"xAxis":{"x":0.3558916,"y":-0.9333558,"z":-0.046777584},"yAxis":{"x":0.93442386,"y":0.35615063,"z":0.0029570565}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.46367,"y":130.88194,"z":57.366703},"xAxis":{"x":0.96165776,"y":0.27424046,"z":-0.0025425532},"yAxis":{"x":-0.2736506,"y":0.9601206,"z":0.057304475}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":59.16143,"y":119.59288,"z":10.131856},"xAxis":{"x":-0.5366819,"y":-0.8436079,"z":0.017270565},"yAxis":{"x":0.8434475,"y":-0.5369336,"z":-0.017279446}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":40.95219,"y":133.30223,"z":10.131856},"xAxis":{"x":0.4922506,"y":0.8702822,"z":0.017270565},"yAxis":{"x":-0.87013507,"y":0.4925103,"z":-0.017279448}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":58.976357,"y":119.32908,"z":15.42598},"xAxis":{"x":-0.6075755,"y":-0.7940161,"z":0.01975928},"yAxis":{"x":0.79409057,"y":-0.6077731,"z":-0.0056536384}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.23546,"y":133.78215,"z":15.44631},"xAxis":{"x":0.82451487,"y":-0.56581205,"z":0.005653639},"yAxis":{"x":0.5656185,"y":0.8244303,"z":0.01975928}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":44.892857,"y":132.7247,"z":62.95916},"xAxis":{"x":0.9818423,"y":0.1896719,"z":-0.003206821},"yAxis":{"x":-0.1884944,"y":0.97737014,"z":0.09600742}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":58.728344,"y":119.13009,"z":20.720362},"xAxis":{"x":-0.67394364,"y":-0.7384776,"z":0.021233534},"yAxis":{"x":0.7387181,"y":-0.6739865,"z":0.0061440826}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.486656,"y":133.89691,"z":20.732433},"xAxis":{"x":0.77264756,"y":-0.6348055,"z":-0.006144083},"yAxis":{"x":0.63477516,"y":0.7724051,"z":0.021233534}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":58.423218,"y":119.00109,"z":26.013927},"xAxis":{"x":-0.73528254,"y":-0.6774138,"z":0.021682136},"yAxis":{"x":0.67775047,"y":-0.735071,"z":0.01802415}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.79005,"y":133.94397,"z":26.016853},"xAxis":{"x":0.7149268,"y":-0.6989669,"z":-0.01802415},"yAxis":{"x":0.6991956,"y":0.7146016,"z":0.021682136}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":58.067234,"y":118.94674,"z":31.305609},"xAxis":{"x":-0.7911265,"y":-0.6112885,"z":0.021101676},"yAxis":{"x":0.6116505,"y":-0.790563,"z":0.029896377}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":42.011444,"y":134.0042,"z":31.305609},"xAxis":{"x":0.7583907,"y":0.6514585,"z":0.021101678},"yAxis":{"x":-0.65179086,"y":0.7578092,"z":0.029896377}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":57.66704,"y":118.971115,"z":36.594357},"xAxis":{"x":-0.8410515,"y":-0.54060364,"z":0.019496566},"yAxis":{"x":0.5409201,"y":-0.84004104,"z":0.041670628}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":42.41236,"y":134.00058,"z":36.594357},"xAxis":{"x":0.81191117,"y":0.5834553,"z":0.019496566},"yAxis":{"x":-0.5837191,"y":0.81088567,"z":0.041670628}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":57.22962,"y":119.07772,"z":41.879135},"xAxis":{"x":-0.8846786,"y":-0.46589574,"z":0.016878989},"yAxis":{"x":0.46609613,"y":-0.88312966,"z":0.053257514}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":43.951183,"y":133.63943,"z":41.85003},"xAxis":{"x":0.51122814,"y":-0.85779333,"z":-0.05325752},"yAxis":{"x":0.85935056,"y":0.5111083,"z":0.016878989}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":56.762234,"y":119.2694,"z":47.158943},"xAxis":{"x":-0.9216766,"y":-0.3877321,"z":0.013268817},"yAxis":{"x":0.38774672,"y":-0.91950166,"z":0.06456908}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":43.33141,"y":133.74957,"z":47.158943},"xAxis":{"x":0.9003488,"y":0.43496665,"z":0.013268817},"yAxis":{"x":-0.43486854,"y":0.898176,"z":0.06456908}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":56.272373,"y":119.54838,"z":52.43282},"xAxis":{"x":-0.9517646,"y":-0.30670607,"z":0.008693458},"yAxis":{"x":0.3064666,"y":-0.9488809,"z":0.075519435}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":44.86692,"y":133.03545,"z":52.37936},"xAxis":{"x":0.35521987,"y":-0.93172723,"z":-0.07551945},"yAxis":{"x":0.93459463,"y":0.3556084,"z":0.008693458}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":44.358124,"y":133.15515,"z":57.69985},"xAxis":{"x":0.96182805,"y":0.27363604,"z":0.0031876455},"yAxis":{"x":-0.2728868,"y":0.9581923,"z":0.086025484}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":60.709457,"y":123.46501,"z":11.032606},"xAxis":{"x":0.8434475,"y":-0.5369336,"z":-0.017279446},"yAxis":{"x":0.5366819,"y":0.8436079,"z":-0.017270565}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.606873,"y":129.35509,"z":11.032606},"xAxis":{"x":-0.87013507,"y":0.4925103,"z":-0.017279448},"yAxis":{"x":-0.4922506,"y":-0.8702822,"z":-0.017270565}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":60.99487,"y":121.93992,"z":16.318768},"xAxis":{"x":-0.6075755,"y":-0.7940161,"z":0.01975928},"yAxis":{"x":0.79409057,"y":-0.6077731,"z":-0.0056536384}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.449947,"y":129.75114,"z":16.307484},"xAxis":{"x":-0.82451487,"y":0.56581205,"z":-0.005653639},"yAxis":{"x":-0.5656185,"y":-0.8244303,"z":-0.01975928}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":41.054333,"y":131.08968,"z":63.84997},"xAxis":{"x":-0.1884944,"y":0.97737014,"z":0.09600742},"yAxis":{"x":-0.9818423,"y":-0.1896719,"z":0.003206821}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":60.95761,"y":121.56518,"z":21.608408},"xAxis":{"x":-0.67394364,"y":-0.7384776,"z":0.021233534},"yAxis":{"x":0.7387181,"y":-0.6739865,"z":0.0061440826}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.37092,"y":130.11372,"z":21.586506},"xAxis":{"x":-0.77264756,"y":0.6348055,"z":0.006144083},"yAxis":{"x":-0.63477516,"y":-0.7724051,"z":-0.021233534}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":60.893345,"y":122.37288,"z":26.868721},"xAxis":{"x":0.67775047,"y":-0.735071,"z":0.01802415},"yAxis":{"x":0.73528254,"y":0.6774138,"z":-0.021682136}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.366646,"y":130.43622,"z":26.868721},"xAxis":{"x":-0.7149268,"y":0.6989669,"z":0.01802415},"yAxis":{"x":-0.6991956,"y":-0.7146016,"z":-0.021682136}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":60.668777,"y":120.979164,"z":32.193943},"xAxis":{"x":-0.7911265,"y":-0.6112885,"z":0.021101676},"yAxis":{"x":0.6116505,"y":-0.790563,"z":0.029896377}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.43342,"y":130.71228,"z":32.153145},"xAxis":{"x":-0.65179086,"y":0.7578092,"z":0.029896377},"yAxis":{"x":-0.7583907,"y":-0.6514585,"z":-0.021101678}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":60.427284,"y":120.77968,"z":37.487717},"xAxis":{"x":-0.8410515,"y":-0.54060364,"z":0.019496566},"yAxis":{"x":0.5409201,"y":-0.84004104,"z":0.041670628}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.56698,"y":130.93596,"z":37.43878},"xAxis":{"x":-0.5837191,"y":0.81088567,"z":0.041670628},"yAxis":{"x":-0.81191117,"y":-0.5834553,"z":-0.019496566}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":60.46348,"y":121.72884,"z":42.72462},"xAxis":{"x":0.46609613,"y":-0.88312966,"z":0.053257514},"yAxis":{"x":0.8846786,"y":0.46589574,"z":-0.016878989}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":39.762566,"y":131.10167,"z":42.72462},"xAxis":{"x":-0.51122814,"y":0.85779333,"z":0.05325752},"yAxis":{"x":-0.85935056,"y":-0.5111083,"z":-0.016878989}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":60.206123,"y":121.639435,"z":48.009655},"xAxis":{"x":0.38774672,"y":-0.91950166,"z":0.06456908},"yAxis":{"x":0.9216766,"y":0.3877321,"z":-0.013268817}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":40.014946,"y":131.20428,"z":48.009655},"xAxis":{"x":-0.43486854,"y":0.898176,"z":0.06456908},"yAxis":{"x":-0.9003488,"y":-0.43496665,"z":-0.013268817}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":59.384975,"y":120.61586,"z":53.360252},"xAxis":{"x":-0.9517646,"y":-0.30670607,"z":0.008693458},"yAxis":{"x":0.3064666,"y":-0.9488809,"z":0.075519435}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":40.31846,"y":131.23915,"z":53.29288},"xAxis":{"x":-0.35521987,"y":0.93172723,"z":0.07551945},"yAxis":{"x":-0.93459463,"y":-0.3556084,"z":-0.008693458}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":40.667053,"y":131.20215,"z":58.573307},"xAxis":{"x":-0.2728868,"y":0.9581923,"z":0.086025484},"yAxis":{"x":-0.96182805,"y":-0.27363604,"z":-0.0031876455}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":59.692253,"y":128.05644,"z":11.166971},"xAxis":{"x":0.8434106,"y":-0.53714603,"z":-0.011518981},"yAxis":{"x":0.53725797,"y":0.8433393,"z":0.011518218}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":40.86061,"y":124.82253,"z":11.166971},"xAxis":{"x":-0.8701092,"y":0.49272436,"z":-0.011518982},"yAxis":{"x":-0.4928398,"y":-0.8700438,"z":0.011518218}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":60.3762,"y":126.60288,"z":16.38778},"xAxis":{"x":-0.6079039,"y":-0.7939592,"z":-0.009034589},"yAxis":{"x":0.79399097,"y":-0.6079295,"z":0.00010787936}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":40.309048,"y":125.126396,"z":16.39492},"xAxis":{"x":-0.8244235,"y":0.5659734,"z":0.00010787926},"yAxis":{"x":-0.5659495,"y":-0.8243904,"z":0.009034589}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":38.419304,"y":127.19609,"z":63.675102},"xAxis":{"x":-0.1880753,"y":0.9768714,"z":0.10173499},"yAxis":{"x":-0.9808457,"y":-0.19216031,"z":0.031877585}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":60.743004,"y":126.26455,"z":21.63328},"xAxis":{"x":-0.6740436,"y":-0.7386528,"z":-0.007561558},"yAxis":{"x":0.7385609,"y":-0.6740816,"z":0.011905654}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":39.828533,"y":125.431564,"z":21.629805},"xAxis":{"x":-0.77249545,"y":0.6349087,"z":0.011905654},"yAxis":{"x":-0.63486594,"y":-0.77258533,"z":0.0075615575}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":61.084846,"y":127.07365,"z":26.870998},"xAxis":{"x":0.6775412,"y":-0.73510015,"z":0.023784777},"yAxis":{"x":0.7351749,"y":0.6778402,"z":0.0071103075}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":39.41897,"y":125.73184,"z":26.870998},"xAxis":{"x":-0.7147193,"y":0.69900686,"z":0.023784777},"yAxis":{"x":-0.69906604,"y":-0.7150217,"z":0.0071103065}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":61.265102,"y":125.64523,"z":32.14021},"xAxis":{"x":-0.7908337,"y":-0.6119828,"z":-0.007684263},"yAxis":{"x":0.611395,"y":-0.79052186,"z":0.035655063}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":39.07972,"y":126.021065,"z":32.117836},"xAxis":{"x":-0.6515336,"y":0.75778145,"z":0.035655063},"yAxis":{"x":-0.7580624,"y":-0.65213674,"z":0.007684262}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":61.6643,"y":126.481514,"z":37.3696},"xAxis":{"x":0.5406247,"y":-0.839926,"z":0.0474264},"yAxis":{"x":0.8405975,"y":0.5415808,"z":0.009279067}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":38.809616,"y":126.29316,"z":37.3696},"xAxis":{"x":-0.5834181,"y":0.8107861,"z":0.047426403},"yAxis":{"x":-0.81140715,"y":-0.5844077,"z":0.009279067}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":61.853783,"y":126.222305,"z":42.62554},"xAxis":{"x":0.46576726,"y":-0.88293755,"z":0.059009418},"yAxis":{"x":0.88408846,"y":0.46716854,"z":0.011882613}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":38.606956,"y":126.542206,"z":42.62554},"xAxis":{"x":-0.51088977,"y":0.8576185,"z":0.059009425},"yAxis":{"x":-0.8586952,"y":-0.51234883,"z":0.0118826125}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":61.97961,"y":125.99525,"z":47.88488},"xAxis":{"x":0.38739124,"y":-0.9192299,"z":0.07031619},"yAxis":{"x":0.92097634,"y":0.38931102,"z":0.015475135}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":38.469532,"y":126.76243,"z":47.88488},"xAxis":{"x":-0.43449947,"y":0.89792305,"z":0.07031619},"yAxis":{"x":-0.89956766,"y":-0.43650717,"z":0.015475135}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":61.52886,"y":124.80005,"z":53.195793},"xAxis":{"x":-0.95098126,"y":-0.30859926,"z":-0.02002936},"yAxis":{"x":0.30609155,"y":-0.94852763,"z":0.08126086}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":38.394646,"y":126.94829,"z":53.146805},"xAxis":{"x":-0.354827,"y":0.93139386,"z":0.08126087},"yAxis":{"x":-0.9337142,"y":-0.35745847,"z":0.02002936}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":38.379112,"y":127.094505,"z":58.410492},"xAxis":{"x":-0.2724772,"y":0.9577767,"z":0.091760375},"yAxis":{"x":-0.96087563,"y":-0.27580288,"z":0.025510713}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":55.149784,"y":124.10224,"z":9.15},"xAxis":{"x":0.5371817,"y":0.8434666,"z":0.0},"yAxis":{"x":-0.8431169,"y":0.53695893,"z":0.028793845}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":45.192097,"y":129.00677,"z":9.15},"xAxis":{"x":-0.49275705,"y":-0.87016696,"z":0.0},"yAxis":{"x":0.8698061,"y":-0.49255273,"z":0.028793845}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":55.376385,"y":124.158394,"z":14.372591},"xAxis":{"x":0.60792786,"y":0.7939884,"z":-0.0024845223},"yAxis":{"x":-0.79384786,"y":0.607874,"z":0.017169813}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.96871,"y":128.93895,"z":14.372591},"xAxis":{"x":-0.56597185,"y":-0.8244208,"z":-0.0024845225},"yAxis":{"x":0.8242777,"y":-0.5659253,"z":0.017169813}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":44.323532,"y":126.85007,"z":61.36033},"xAxis":{"x":-0.9813645,"y":-0.19106719,"z":0.020422136},"yAxis":{"x":0.18872777,"y":-0.9783842,"z":-0.08453534}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":55.566654,"y":124.24202,"z":19.596264},"xAxis":{"x":0.67415893,"y":0.73857576,"z":-0.0039567803},"yAxis":{"x":-0.7385565,"y":0.67417014,"z":0.0053724926}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.78303,"y":128.84558,"z":19.596264},"xAxis":{"x":-0.6349851,"y":-0.7725143,"z":-0.003956781},"yAxis":{"x":0.7724957,"y":-0.6349973,"z":0.0053724926}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":55.723087,"y":124.356155,"z":24.820482},"xAxis":{"x":0.73537207,"y":0.67764926,"z":-0.0044055968},"yAxis":{"x":-0.6776626,"y":0.7353442,"z":-0.0065085525}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.63272,"y":128.7235,"z":24.820482},"xAxis":{"x":-0.6992728,"y":-0.7148413,"z":-0.004405597},"yAxis":{"x":0.71485317,"y":-0.6992443,"z":-0.006508553}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":55.848442,"y":124.50361,"z":30.044704},"xAxis":{"x":0.7911026,"y":0.6116715,"z":-0.0038275647},"yAxis":{"x":-0.6116283,"y":0.79093164,"z":-0.018383125}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.515175,"y":128.56975,"z":30.044704},"xAxis":{"x":-0.75834703,"y":-0.6518398,"z":-0.0038275653},"yAxis":{"x":0.6517878,"y":-0.75817853,"z":-0.018383125}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":55.94571,"y":124.686935,"z":35.26839},"xAxis":{"x":0.84092736,"y":0.5411434,"z":-0.0022270724},"yAxis":{"x":-0.54095507,"y":0.84051055,"z":-0.030161077}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.42754,"y":128.38162,"z":35.26839},"xAxis":{"x":-0.81175923,"y":-0.583988,"z":-0.0022270728},"yAxis":{"x":0.5837783,"y":-0.81135267,"z":-0.030161077}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":56.018093,"y":124.90842,"z":40.491},"xAxis":{"x":0.8844682,"y":0.46660036,"z":0.00038372987},"yAxis":{"x":-0.46617934,"y":0.8837044,"z":-0.04175299}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.36673,"y":128.1567,"z":40.491},"xAxis":{"x":-0.8591039,"y":-0.51180106,"z":0.00038372952},"yAxis":{"x":0.51134104,"y":-0.858363,"z":-0.041752994}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":56.068985,"y":125.17004,"z":45.71201},"xAxis":{"x":0.92139447,"y":0.38860828,"z":0.0039850213},"yAxis":{"x":-0.38786882,"y":0.92018545,"z":-0.053070866}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.32946,"y":127.892784,"z":45.71201},"xAxis":{"x":-0.9000216,"y":-0.43582702,"z":0.0039850213},"yAxis":{"x":0.43502593,"y":-0.8988526,"z":-0.05307087}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":56.101944,"y":125.47349,"z":50.930897},"xAxis":{"x":0.95142585,"y":0.30775926,"z":0.008549462},"yAxis":{"x":-0.30661806,"y":0.94967663,"z":-0.06402878}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.31227,"y":127.58803,"z":50.930897},"xAxis":{"x":-0.9342018,"y":-0.35664263,"z":0.008549462},"yAxis":{"x":0.35541233,"y":-0.932514,"z":-0.064028785}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":44.311543,"y":127.24087,"z":56.147163},"xAxis":{"x":-0.96138483,"y":-0.27484903,"z":0.014042401},"yAxis":{"x":0.27310467,"y":-0.9590918,"z":-0.07454355}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":101.2,"y":119.075,"z":0.0},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":91.99491,"y":126.74579,"z":26.682161},"xAxis":{"x":0.12590496,"y":-0.9919688,"z":-0.012075071},"yAxis":{"x":0.99193007,"y":0.12606451,"z":-0.0135107115}},"center":{"x":-0.12357646,"y":10.494074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":96.52992,"y":126.21855,"z":49.31322},"xAxis":{"x":-0.38740072,"y":-0.91957605,"z":0.06557865},"yAxis":{"x":0.92076,"y":-0.3894908,"z":-0.022314297}},"center":{"x":-0.12357646,"y":22.374077},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":101.05683,"y":125.0312,"z":71.92088},"xAxis":{"x":-0.7923719,"y":-0.594497,"z":0.13682096},"yAxis":{"x":0.6011221,"y":-0.7991053,"z":0.009110642}},"center":{"x":-0.12357646,"y":34.254074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":84.026794,"y":125.22138,"z":96.103264},"xAxis":{"x":-0.9771284,"y":-0.14635797,"z":-0.15427057},"yAxis":{"x":0.1611262,"y":-0.98300594,"z":-0.08796381}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":94.54741,"y":120.86131,"z":80.787476},"xAxis":{"x":-0.86661094,"y":-0.48056614,"z":0.13431926},"yAxis":{"x":0.48804355,"y":-0.87238306,"z":0.027591923}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":98.18389,"y":122.92312,"z":11.227978},"xAxis":{"x":0.4587785,"y":-0.8882858,"z":-0.021692503},"yAxis":{"x":0.8882468,"y":0.45784643,"z":0.037340768}},"center":{"x":-0.93696856,"y":0.7832468},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":82.433914,"y":124.785225,"z":11.227978},"xAxis":{"x":-0.54955333,"y":0.83517694,"z":-0.021692501},"yAxis":{"x":-0.835236,"y":-0.5486223,"z":0.037340768}},"center":{"x":1.124723,"y":3.1688933},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":98.78062,"y":121.416695,"z":18.855726},"xAxis":{"x":0.2970282,"y":-0.95486856,"z":-0.0005512466},"yAxis":{"x":0.9546484,"y":0.2969472,"z":0.02165308}},"center":{"x":-0.93696856,"y":4.743247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.682236,"y":126.22063,"z":18.855726},"xAxis":{"x":-0.3956924,"y":0.91838294,"z":-0.0005512457},"yAxis":{"x":-0.9181725,"y":-0.39558873,"z":0.02165308}},"center":{"x":1.124723,"y":7.1288934},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.29862,"y":131.82632,"z":88.61575},"xAxis":{"x":0.9048665,"y":0.3729544,"z":0.20523554},"yAxis":{"x":-0.3938915,"y":0.91638064,"z":0.07138653}},"center":{"x":1.124723,"y":42.76889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":99.17258,"y":120.0194,"z":26.51744},"xAxis":{"x":0.12635095,"y":-0.9917189,"z":0.023000693},"yAxis":{"x":0.9919043,"y":0.12660348,"z":0.009869877}},"center":{"x":-0.93696856,"y":8.703246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.14566,"y":127.569016,"z":26.51744},"xAxis":{"x":-0.22983058,"y":0.9729588,"z":0.023000695},"yAxis":{"x":-0.97311664,"y":-0.23010118,"z":0.00986988}},"center":{"x":1.124723,"y":11.088894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":99.38218,"y":118.766045,"z":34.211143},"xAxis":{"x":-0.047922853,"y":-0.9976861,"z":0.048227765},"yAxis":{"x":0.99885106,"y":-0.04786477,"z":0.0023591632}},"center":{"x":-0.93696856,"y":12.663246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.80555,"y":128.79343,"z":34.211143},"xAxis":{"x":-0.05714786,"y":0.9972002,"z":0.04822777},"yAxis":{"x":-0.9983526,"y":-0.057328,"z":0.0023591653}},"center":{"x":1.124723,"y":15.048893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":99.43754,"y":117.68691,"z":41.93386},"xAxis":{"x":-0.22035046,"y":-0.97258365,"z":0.07434211},"yAxis":{"x":0.97527164,"y":-0.22100872,"z":-0.0006444971}},"center":{"x":-0.93696856,"y":16.623247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.637146,"y":129.86076,"z":41.93386},"xAxis":{"x":0.116962686,"y":0.99034995,"z":0.07434211},"yAxis":{"x":-0.9930922,"y":0.11733493,"z":-0.0006444952}},"center":{"x":1.124723,"y":19.008894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":99.37157,"y":116.80688,"z":49.681705},"xAxis":{"x":-0.38554677,"y":-0.9171956,"z":0.100528136},"yAxis":{"x":0.9219025,"y":-0.38742092,"z":0.000952705}},"center":{"x":-0.93696856,"y":20.583248},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.610306,"y":130.74286,"z":49.681705},"xAxis":{"x":0.28706345,"y":0.952622,"z":0.100528136},"yAxis":{"x":-0.9574997,"y":0.28843275,"z":0.0009527056}},"center":{"x":1.124723,"y":22.968895},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":99.220985,"y":116.1446,"z":57.450016},"xAxis":{"x":-0.5383526,"y":-0.8332518,"z":0.12596804},"yAxis":{"x":0.8404103,"y":-0.54190415,"z":0.0071008853}},"center":{"x":-0.93696856,"y":24.543247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.69048,"y":131.41728,"z":57.450016},"xAxis":{"x":0.44784194,"y":0.8851947,"z":0.12596804},"yAxis":{"x":-0.89268667,"y":0.45062184,"z":0.0071008857}},"center":{"x":1.124723,"y":26.928894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":99.02515,"y":115.711914,"z":65.23348},"xAxis":{"x":-0.6739956,"y":-0.72337383,"z":0.14986731},"yAxis":{"x":0.73334026,"y":-0.67963374,"z":0.01760803}},"center":{"x":-0.93696856,"y":28.503246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.839775,"y":131.86815,"z":65.23348},"xAxis":{"x":0.594277,"y":0.7901738,"z":0.14986731},"yAxis":{"x":-0.80067736,"y":0.59883696,"z":0.017608032}},"center":{"x":1.124723,"y":30.888893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":98.82483,"y":115.513504,"z":73.02633},"xAxis":{"x":-0.7882396,"y":-0.59099334,"z":0.17147955},"yAxis":{"x":0.6040362,"y":-0.7963083,"z":0.032145992}},"center":{"x":-0.93696856,"y":32.463245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.01814,"y":132.0865,"z":73.02633},"xAxis":{"x":0.72179526,"y":0.6705269,"z":0.17147955},"yAxis":{"x":-0.68434525,"y":0.72844917,"z":0.032145992}},"center":{"x":1.124723,"y":34.848892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":81.18462,"y":132.07068,"z":80.82247},"xAxis":{"x":0.8264142,"y":0.5299908,"z":0.19012979},"yAxis":{"x":-0.5473235,"y":0.83541054,"z":0.05026074}},"center":{"x":1.124723,"y":38.80889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":93.86146,"y":125.64213,"z":11.500563},"xAxis":{"x":-0.0057597873,"y":-0.9967727,"z":-0.0800684},"yAxis":{"x":0.99975044,"y":-0.00746834,"z":0.021055596}},"center":{"x":-0.4242164,"y":1.8345448},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":87.01806,"y":122.535324,"z":11.500563},"xAxis":{"x":-0.098981686,"y":0.9918627,"z":-0.0800684},"yAxis":{"x":-0.9950034,"y":-0.097595386,"z":0.021055596}},"center":{"x":0.45382434,"y":2.2107508},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":94.99971,"y":124.85283,"z":19.075933},"xAxis":{"x":-0.17979074,"y":-0.9822154,"z":-0.054112572},"yAxis":{"x":0.98334837,"y":-0.18093425,"z":0.016991828}},"center":{"x":-0.4242164,"y":5.7945447},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":85.803185,"y":123.20068,"z":19.075933},"xAxis":{"x":0.0756156,"y":0.9956677,"z":-0.05411257},"yAxis":{"x":-0.9969145,"y":0.07663376,"z":0.016991828}},"center":{"x":0.45382434,"y":6.170751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":78.28713,"y":127.77571,"z":87.79463},"xAxis":{"x":0.99035496,"y":-0.0894147,"z":0.10583974},"yAxis":{"x":0.07218154,"y":0.98500043,"z":0.15672913}},"center":{"x":0.45382434,"y":41.81075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":96.049225,"y":124.065865,"z":26.664352},"xAxis":{"x":-0.34840196,"y":-0.93693274,"z":-0.027804134},"yAxis":{"x":0.9369816,"y":-0.3489397,"z":0.01750714}},"center":{"x":-0.4242164,"y":9.754545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":97.01189,"y":123.29698,"z":34.266125},"xAxis":{"x":-0.50632757,"y":-0.862339,"z":-0.001964731},"yAxis":{"x":0.8620982,"y":-0.5062376,"z":0.022585439}},"center":{"x":-0.4242164,"y":13.714545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":83.6387,"y":124.53655,"z":34.266125},"xAxis":{"x":0.41293857,"y":0.91075677,"z":-0.001964731},"yAxis":{"x":-0.91050786,"y":0.41287443,"z":0.022585442}},"center":{"x":0.45382434,"y":14.090751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":97.892265,"y":122.56135,"z":41.881153},"xAxis":{"x":-0.6486353,"y":-0.76076376,"z":0.022598648},"yAxis":{"x":0.7610368,"y":-0.64791554,"z":0.032068126}},"center":{"x":-0.4242164,"y":17.674545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":82.68592,"y":125.17563,"z":41.881153},"xAxis":{"x":0.5651293,"y":0.8246928,"z":0.022598648},"yAxis":{"x":-0.8248887,"y":0.5643848,"z":0.03206813}},"center":{"x":0.45382434,"y":18.050749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":98.69753,"y":121.87309,"z":49.50891},"xAxis":{"x":-0.77088094,"y":-0.6353793,"z":0.04511886},"yAxis":{"x":0.6369537,"y":-0.7695487,"z":0.045659047}},"center":{"x":-0.4242164,"y":21.634546},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":99.43718,"y":121.2449,"z":57.14849},"xAxis":{"x":-0.8692464,"y":-0.4901016,"z":0.06489259},"yAxis":{"x":0.49372405,"y":-0.8673384,"z":0.06293374}},"center":{"x":-0.4242164,"y":25.594545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":81.01125,"y":126.322495,"z":57.14849},"xAxis":{"x":0.81295246,"y":0.5787031,"z":0.06489259},"yAxis":{"x":-0.58210504,"y":0.8106744,"z":0.06293374}},"center":{"x":0.45382434,"y":25.970749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":100.12278,"y":120.68753,"z":64.7986},"xAxis":{"x":-0.9406598,"y":-0.32946777,"z":0.08130227},"yAxis":{"x":0.33582115,"y":-0.9382305,"z":0.08335271}},"center":{"x":-0.4242164,"y":29.554544},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":80.2709,"y":126.804756,"z":64.7986},"xAxis":{"x":0.9008451,"y":0.42645988,"z":0.08130228},"yAxis":{"x":-0.43252292,"y":0.8977618,"z":0.08335271}},"center":{"x":0.45382434,"y":29.930748},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":100.76757,"y":120.20957,"z":72.45763},"xAxis":{"x":-0.98289084,"y":-0.1584945,"z":0.09383543},"yAxis":{"x":0.16817638,"y":-0.98001105,"z":0.10627823}},"center":{"x":-0.4242164,"y":33.51454},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":78.92319,"y":127.53766,"z":80.12367},"xAxis":{"x":0.99095345,"y":0.08710174,"z":0.102100626},"yAxis":{"x":-0.10019008,"y":0.98630744,"z":0.13099435}},"center":{"x":0.45382434,"y":37.85075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":88.59746,"y":124.38115,"z":11.453598},"xAxis":{"x":-0.45886725,"y":0.88489187,"z":0.08004549},"yAxis":{"x":-0.88847876,"y":-0.45629728,"z":-0.048972722}},"center":{"x":-0.7832468,"y":2.8772452},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":92.12047,"y":124.3423,"z":11.453598},"xAxis":{"x":0.54928505,"y":-0.8317924,"z":0.08004549},"yAxis":{"x":0.83562946,"y":0.5471061,"z":-0.048972722}},"center":{"x":0.6453203,"y":1.124723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":89.5964,"y":124.52707,"z":19.084135},"xAxis":{"x":-0.2971978,"y":0.95299304,"z":0.05897258},"yAxis":{"x":-0.9547086,"y":-0.2956709,"z":-0.03332027}},"center":{"x":-0.7832468,"y":6.837245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":91.14238,"y":124.092255,"z":19.084135},"xAxis":{"x":0.395664,"y":-0.9165,"z":0.05897258},"yAxis":{"x":0.91836643,"y":0.3943258,"z":-0.03332027}},"center":{"x":0.6453203,"y":5.0847235},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":79.16659,"y":122.46009,"z":87.272354},"xAxis":{"x":-0.91296846,"y":-0.38031372,"z":-0.1478178},"yAxis":{"x":0.39463568,"y":-0.91507876,"z":-0.083027296}},"center":{"x":0.6453203,"y":40.72472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":90.08954,"y":123.820854,"z":26.703989},"xAxis":{"x":0.2297767,"y":-0.97259754,"z":0.03544984},"yAxis":{"x":0.9731585,"y":0.22912318,"z":-0.021565938}},"center":{"x":0.6453203,"y":9.044723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":91.825096,"y":124.845245,"z":34.312485},"xAxis":{"x":0.048383906,"y":0.9987766,"z":0.010211917},"yAxis":{"x":-0.99872273,"y":0.048525225,"z":-0.014076815}},"center":{"x":-0.7832468,"y":14.757245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":88.959435,"y":123.54172,"z":34.312485},"xAxis":{"x":0.056803916,"y":-0.99833316,"z":0.010211916},"yAxis":{"x":0.9982944,"y":0.056657724,"z":-0.014076817}},"center":{"x":0.6453203,"y":13.004723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":93.05456,"y":124.98989,"z":41.909313},"xAxis":{"x":0.22150326,"y":0.9750291,"z":-0.015952991},"yAxis":{"x":-0.97513247,"y":0.22134534,"z":-0.0110868}},"center":{"x":-0.7832468,"y":18.717243},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":87.75197,"y":123.268715,"z":41.909313},"xAxis":{"x":-0.117852226,"y":-0.992903,"z":-0.01595299},"yAxis":{"x":0.9929892,"y":-0.11768432,"z":-0.011086802}},"center":{"x":0.6453203,"y":16.964722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":86.46947,"y":123.015526,"z":49.49452},"xAxis":{"x":-0.28873706,"y":-0.95647675,"z":-0.042227723},"yAxis":{"x":0.9574084,"y":-0.28845808,"z":-0.012689275}},"center":{"x":0.6453203,"y":20.924723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":95.725105,"y":125.183945,"z":57.06852},"xAxis":{"x":0.5415345,"y":0.83794075,"z":-0.06779169},"yAxis":{"x":-0.84041786,"y":0.5416116,"z":-0.018834187}},"center":{"x":-0.7832468,"y":26.637245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.116585,"y":122.79519,"z":57.06852},"xAxis":{"x":-0.45051363,"y":-0.890192,"z":-0.06779169},"yAxis":{"x":0.8926635,"y":-0.4503301,"z":-0.018834187}},"center":{"x":0.6453203,"y":24.884722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":97.15209,"y":125.20962,"z":64.63207},"xAxis":{"x":0.67845136,"y":0.7288813,"z":-0.09184652},"yAxis":{"x":-0.73350084,"y":0.67905545,"z":-0.029329628}},"center":{"x":-0.7832468,"y":30.597244},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":83.700195,"y":122.61976,"z":64.63207},"xAxis":{"x":-0.5981296,"y":-0.79611886,"z":-0.09184652},"yAxis":{"x":0.80077624,"y":-0.598245,"z":-0.02932963}},"center":{"x":0.6453203,"y":28.84472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":82.22913,"y":122.49983,"z":72.186264},"xAxis":{"x":-0.72697467,"y":-0.67719537,"z":-0.11364095},"yAxis":{"x":0.6846166,"y":-0.7275833,"z":-0.043847814}},"center":{"x":0.6453203,"y":32.80472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":80.71395,"y":122.44432,"z":79.73248},"xAxis":{"x":-0.833025,"y":-0.53713554,"z":-0.13249432},"yAxis":{"x":0.5478122,"y":-0.8343056,"z":-0.061935335}},"center":{"x":0.6453203,"y":36.76472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":85.98369,"y":119.9893,"z":11.288734},"xAxis":{"x":0.0067373263,"y":0.995762,"z":0.09172082},"yAxis":{"x":-0.99930054,"y":0.003330339,"z":0.037247688}},"center":{"x":-1.8345448,"y":3.3899975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":94.258415,"y":128.98442,"z":11.288734},"xAxis":{"x":0.09790338,"y":-0.99096024,"z":0.09172082},"yAxis":{"x":0.9941213,"y":0.10166323,"z":0.037247688}},"center":{"x":1.603463,"y":0.45382434},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.25705,"y":120.65479,"z":19.044575},"xAxis":{"x":0.18067898,"y":0.98133975,"z":0.06578305},"yAxis":{"x":-0.98311746,"y":0.17823128,"z":0.04139686}},"center":{"x":-1.8345448,"y":7.3499975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":94.05647,"y":128.2939,"z":19.044575},"xAxis":{"x":-0.07659091,"y":-0.99489015,"z":0.06578305},"yAxis":{"x":0.9964009,"y":-0.07397001,"z":0.04139686}},"center":{"x":1.603463,"y":4.4138246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":83.314766,"y":119.48522,"z":87.57249},"xAxis":{"x":-0.99157834,"y":0.08889774,"z":-0.09417817},"yAxis":{"x":-0.07950876,"y":-0.991891,"z":-0.09914936}},"center":{"x":1.603463,"y":40.05382},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.70958,"y":121.45505,"z":26.77927},"xAxis":{"x":0.34922594,"y":0.9362061,"z":0.039489552},"yAxis":{"x":-0.93671584,"y":0.34768963,"z":0.04093056}},"center":{"x":-1.8345448,"y":11.309998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":93.69051,"y":127.45054,"z":26.77927},"xAxis":{"x":-0.24894653,"y":-0.96771187,"z":0.039489552},"yAxis":{"x":0.9680574,"y":-0.24736518,"z":0.04093056}},"center":{"x":1.603463,"y":8.373823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":87.3618,"y":122.356224,"z":34.48856},"xAxis":{"x":0.5071143,"y":0.8617706,"z":0.01366148},"yAxis":{"x":-0.86154497,"y":0.506413,"z":0.035863355}},"center":{"x":-1.8345448,"y":15.269998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":93.136566,"y":126.48583,"z":34.48856},"xAxis":{"x":-0.41378066,"y":-0.9102741,"z":0.01366148},"yAxis":{"x":0.90997607,"y":-0.41310695,"z":0.03586335}},"center":{"x":1.603463,"y":12.333823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":88.22799,"y":123.321335,"z":42.168987},"xAxis":{"x":0.64941305,"y":0.76035786,"z":-0.010894529},"yAxis":{"x":-0.75995237,"y":0.64944434,"z":0.02635349}},"center":{"x":-1.8345448,"y":19.229996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":92.37656,"y":125.43506,"z":42.168987},"xAxis":{"x":-0.5659453,"y":-0.8243708,"z":-0.010894528},"yAxis":{"x":0.82397085,"y":-0.56601906,"z":0.026353488}},"center":{"x":1.603463,"y":16.293823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":89.31576,"y":124.31142,"z":49.817986},"xAxis":{"x":0.77167803,"y":0.6351352,"z":-0.03341156},"yAxis":{"x":-0.6351109,"y":0.7723166,"z":0.012697972}},"center":{"x":-1.8345448,"y":23.189997},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":91.39882,"y":124.33619,"z":49.817986},"xAxis":{"x":-0.70068836,"y":-0.71268475,"z":-0.03341156},"yAxis":{"x":0.7127277,"y":-0.7013259,"z":0.0126979705}},"center":{"x":1.603463,"y":20.253824},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":90.62578,"y":125.286705,"z":57.43398},"xAxis":{"x":0.8700909,"y":0.49001333,"z":-0.053186387},"yAxis":{"x":-0.49091953,"y":0.87119234,"z":-0.004676723}},"center":{"x":-1.8345448,"y":27.149996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":90.1985,"y":123.22868,"z":57.43398},"xAxis":{"x":-0.81380147,"y":-0.578704,"z":-0.05318639},"yAxis":{"x":0.5797209,"y":-0.8148017,"z":-0.0046767252}},"center":{"x":1.603463,"y":24.213823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":92.151794,"y":126.2079,"z":65.01642},"xAxis":{"x":0.941578,"y":0.32952473,"z":-0.069601424},"yAxis":{"x":-0.33188152,"y":0.9429837,"z":-0.025227968}},"center":{"x":-1.8345448,"y":31.109995},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":88.777695,"y":122.152275,"z":65.01642},"xAxis":{"x":-0.9017522,"y":-0.42661297,"z":-0.06960143},"yAxis":{"x":0.4291044,"y":-0.90290254,"z":-0.02522797}},"center":{"x":1.603463,"y":28.173822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":93.8808,"y":127.03741,"z":72.565796},"xAxis":{"x":0.9839068,"y":0.15868144,"z":-0.08214402},"yAxis":{"x":-0.16296369,"y":0.9854484,"z":-0.048313927}},"center":{"x":-1.8345448,"y":35.069996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":87.14539,"y":121.14573,"z":72.565796},"xAxis":{"x":-0.96179366,"y":-0.26116154,"z":-0.08214403},"yAxis":{"x":0.26558205,"y":-0.9628769,"z":-0.048313927}},"center":{"x":1.603463,"y":32.133823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":85.317184,"y":120.24563,"z":80.08364},"xAxis":{"x":-0.9920507,"y":-0.08751695,"z":-0.09042245},"yAxis":{"x":0.09426082,"y":-0.9928518,"z":-0.07321361}},"center":{"x":1.603463,"y":36.093822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":87.05583,"y":114.48703,"z":11.829715},"xAxis":{"x":-0.8876095,"y":-0.46050245,"z":0.009321013},"yAxis":{"x":0.45782214,"y":-0.8842998,"z":-0.09172082}},"center":{"x":-2.8772452,"y":3.030967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":92.614204,"y":134.34363,"z":11.829715},"xAxis":{"x":0.8343233,"y":0.5511967,"z":0.009321013},"yAxis":{"x":-0.54818356,"y":0.8313135,"z":-0.09172082}},"center":{"x":2.6894908,"y":0.6453203},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":86.36021,"y":115.06506,"z":19.723799},"xAxis":{"x":-0.95407647,"y":-0.2985132,"z":0.025058834},"yAxis":{"x":0.29616997,"y":-0.9525184,"z":-0.0706548}},"center":{"x":-2.8772452,"y":6.990967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.10429,"y":133.94568,"z":19.704657},"xAxis":{"x":0.39459202,"y":-0.9161359,"z":0.0706548},"yAxis":{"x":0.9174393,"y":0.39708596,"z":0.025058834}},"center":{"x":2.6894908,"y":4.6053205},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":88.77093,"y":120.22615,"z":89.29478},"xAxis":{"x":-0.9146013,"y":-0.38072744,"z":-0.13620235},"yAxis":{"x":0.38740495,"y":-0.92156,"z":-0.025387825}},"center":{"x":2.6894908,"y":40.245316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.84456,"y":115.95139,"z":27.603083},"xAxis":{"x":-0.9912067,"y":-0.12708382,"z":0.036864102},"yAxis":{"x":0.12530403,"y":-0.990998,"z":-0.047135975}},"center":{"x":-2.8772452,"y":10.950967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.732376,"y":133.16298,"z":27.586283},"xAxis":{"x":0.22871372,"y":-0.9723519,"z":0.047135975},"yAxis":{"x":0.9723725,"y":0.23050559,"z":0.036864102}},"center":{"x":2.6894908,"y":8.565319},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.55964,"y":117.109505,"z":35.458794},"xAxis":{"x":-0.9978406,"y":0.048431788,"z":0.04436813},"yAxis":{"x":-0.049439307,"y":-0.998537,"z":-0.021898864}},"center":{"x":-2.8772452,"y":14.910967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.16697,"y":132.08115,"z":35.445538},"xAxis":{"x":0.055729188,"y":-0.9982057,"z":0.021898864},"yAxis":{"x":0.9974073,"y":0.05665797,"z":0.044368125}},"center":{"x":2.6894908,"y":12.52532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.548996,"y":118.4944,"z":43.282894},"xAxis":{"x":-0.9737709,"y":0.2225521,"z":0.047336552},"yAxis":{"x":-0.22260265,"y":-0.9748999,"z":0.0042683566}},"center":{"x":-2.8772452,"y":18.870966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":94.53366,"y":130.51672,"z":43.282894},"xAxis":{"x":0.9917619,"y":-0.11902744,"z":0.047336552},"yAxis":{"x":0.1189591,"y":0.99289,"z":0.004268356}},"center":{"x":2.6894908,"y":16.48532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.847626,"y":120.05397,"z":51.068336},"xAxis":{"x":-0.91974944,"y":0.3898392,"z":0.04567667},"yAxis":{"x":-0.38877794,"y":-0.9208249,"z":0.030548453}},"center":{"x":-2.8772452,"y":22.830967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":94.40053,"y":128.9344,"z":51.068336},"xAxis":{"x":0.9556126,"y":-0.29106385,"z":0.04567667},"yAxis":{"x":0.28989547,"y":0.9565706,"z":0.030548455}},"center":{"x":2.6894908,"y":20.44532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":86.480835,"y":121.7307,"z":58.80928},"xAxis":{"x":-0.83746326,"y":0.54506856,"z":0.039440323},"yAxis":{"x":-0.5427754,"y":-0.8380008,"z":0.05612068}},"center":{"x":-2.8772452,"y":26.790966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":93.85928,"y":127.46932,"z":58.812614},"xAxis":{"x":-0.4517414,"y":-0.89038205,"z":-0.056120683},"yAxis":{"x":0.8900884,"y":-0.45407832,"z":0.039440323}},"center":{"x":2.6894908,"y":24.40532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":87.463524,"y":123.46336,"z":66.501274},"xAxis":{"x":-0.72948235,"y":0.6833921,"z":0.028822273},"yAxis":{"x":-0.67978543,"y":-0.72901434,"z":0.08018639}},"center":{"x":-2.8772452,"y":30.750965},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":93.15171,"y":125.37412,"z":66.501274},"xAxis":{"x":0.7972356,"y":-0.60297984,"z":0.028822271},"yAxis":{"x":0.5994423,"y":0.7963913,"z":0.0801864}},"center":{"x":2.6894908,"y":28.365318},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":88.79965,"y":125.189026,"z":74.141396},"xAxis":{"x":-0.5991789,"y":0.80049,"z":0.014154137},"yAxis":{"x":-0.79552925,"y":-0.5972692,"z":0.10199399}},"center":{"x":-2.8772452,"y":34.710964},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":92.01395,"y":123.79978,"z":74.15896},"xAxis":{"x":-0.7283853,"y":-0.6775338,"z":-0.10199399},"yAxis":{"x":0.6799541,"y":-0.73311806,"z":0.014154137}},"center":{"x":2.6894908,"y":32.325317},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":90.50504,"y":121.694145,"z":81.72833},"xAxis":{"x":0.5419068,"y":-0.8404286,"z":-0.004105992},"yAxis":{"x":0.83454347,"y":0.5375216,"z":0.12086241}},"center":{"x":2.6894908,"y":36.285316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":91.45021,"y":111.877174,"z":11.670573},"xAxis":{"x":-0.998794,"y":0.0034823334,"z":0.048972722},"yAxis":{"x":-0.0051225345,"y":-0.9994287,"z":-0.03340662}},"center":{"x":-3.3899975,"y":1.979669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":87.96997,"y":136.47742,"z":11.670573},"xAxis":{"x":0.9936336,"y":0.10145888,"z":0.048972722},"yAxis":{"x":-0.09989442,"y":0.9944371,"z":-0.03340662}},"center":{"x":3.3603892,"y":1.603463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":90.23194,"y":111.72667,"z":19.613853},"xAxis":{"x":-0.9824901,"y":0.17858408,"z":0.053111725},"yAxis":{"x":-0.17921886,"y":-0.9837814,"z":-0.007400656}},"center":{"x":-3.3899975,"y":5.939669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":88.9815,"y":136.96938,"z":19.601751},"xAxis":{"x":-0.07488237,"y":-0.9971649,"z":0.0074006557},"yAxis":{"x":0.99581414,"y":-0.07438675,"z":0.053111725}},"center":{"x":3.3603892,"y":5.5634627},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":91.55297,"y":124.084114,"z":90.18351},"xAxis":{"x":-0.08191633,"y":-0.9927735,"z":-0.08769594},"yAxis":{"x":0.9838684,"y":-0.0945941,"z":0.15183844}},"center":{"x":3.3603892,"y":41.203457},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":89.07532,"y":111.98807,"z":27.56347},"xAxis":{"x":-0.9359347,"y":0.3482188,"z":0.05262953},"yAxis":{"x":-0.34770438,"y":-0.9374131,"z":0.018929847}},"center":{"x":-3.3899975,"y":9.899668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":90.19936,"y":136.85995,"z":27.55673},"xAxis":{"x":-0.24730659,"y":-0.9687523,"z":-0.018929847},"yAxis":{"x":0.9673362,"y":-0.24797347,"z":0.052629527}},"center":{"x":3.3603892,"y":9.523462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":88.0511,"y":112.64437,"z":35.508453},"xAxis":{"x":-0.86058176,"y":0.5070886,"z":0.04754119},"yAxis":{"x":-0.5053171,"y":-0.861772,"z":0.04476256}},"center":{"x":-3.3899975,"y":13.859668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":91.33144,"y":136.33633,"z":35.507896},"xAxis":{"x":-0.41199327,"y":-0.91008675,"z":-0.04476256},"yAxis":{"x":0.9090892,"y":-0.41388,"z":0.04754119}},"center":{"x":3.3603892,"y":13.483462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":87.225945,"y":113.666245,"z":43.43798},"xAxis":{"x":-0.75878465,"y":0.65023184,"z":0.038005624},"yAxis":{"x":-0.64713466,"y":-0.75922036,"z":0.069290705}},"center":{"x":-3.3899975,"y":17.819668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":92.3588,"y":135.142,"z":43.43798},"xAxis":{"x":0.8228923,"y":-0.56692487,"z":0.038005624},"yAxis":{"x":0.563799,"y":0.82300025,"z":0.069290705}},"center":{"x":3.3603892,"y":17.443464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.66026,"y":115.012924,"z":51.341713},"xAxis":{"x":-0.63372254,"y":0.77317804,"z":0.024320636},"yAxis":{"x":-0.7687279,"y":-0.63296103,"z":0.09174824}},"center":{"x":-3.3899975,"y":21.779669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":93.06283,"y":133.86218,"z":51.341713},"xAxis":{"x":0.71143746,"y":-0.70232844,"z":0.024320634},"yAxis":{"x":0.6979829,"y":0.7102127,"z":0.09174824}},"center":{"x":3.3603892,"y":21.403465},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.40637,"y":116.63354,"z":59.21011},"xAxis":{"x":-0.48930126,"y":0.8720874,"z":0.0069136205},"yAxis":{"x":-0.8662994,"y":-0.4869372,"z":0.1114338}},"center":{"x":-3.3899975,"y":25.739668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":93.53198,"y":132.55544,"z":59.231014},"xAxis":{"x":-0.8103541,"y":-0.57524663,"z":-0.1114338},"yAxis":{"x":0.57820565,"y":-0.81586176,"z":0.006913618}},"center":{"x":3.3603892,"y":25.363464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.506874,"y":118.46861,"z":67.034744},"xAxis":{"x":-0.3300313,"y":0.94387096,"z":-0.013671784},"yAxis":{"x":-0.9368019,"y":-0.32570934,"z":0.12773257}},"center":{"x":-3.3899975,"y":29.699667},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":93.57838,"y":130.44173,"z":67.034744},"xAxis":{"x":0.4273576,"y":-0.9039793,"z":-0.0136717865},"yAxis":{"x":0.89740336,"y":0.422317,"z":0.12773257}},"center":{"x":3.3603892,"y":29.323463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.99327,"y":120.45203,"z":74.80855},"xAxis":{"x":-0.1608867,"y":0.9862869,"z":-0.036792677},"yAxis":{"x":-0.97803354,"y":-0.15431274,"z":0.14013556}},"center":{"x":-3.3899975,"y":33.659668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":93.44159,"y":128.66223,"z":74.84393},"xAxis":{"x":-0.95641184,"y":-0.25620005,"z":-0.14013556},"yAxis":{"x":0.26360464,"y":-0.9639289,"z":-0.036792677}},"center":{"x":3.3603892,"y":33.28346},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":92.63271,"y":126.27497,"z":82.52604},"xAxis":{"x":0.09206083,"y":-0.9938383,"z":-0.061726972},"yAxis":{"x":0.9855367,"y":0.08208374,"z":0.14825538}},"center":{"x":3.3603892,"y":37.243458},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":96.924164,"y":112.89082,"z":12.522325},"xAxis":{"x":0.45950451,"y":-0.88754785,"z":-0.03338371},"yAxis":{"x":0.88752234,"y":0.4602833,"z":-0.021055596}},"center":{"x":-3.030967,"y":0.93696856},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":82.63279,"y":134.89435,"z":12.522325},"xAxis":{"x":-0.5501978,"y":0.8343668,"z":-0.03338371},"yAxis":{"x":-0.8342596,"y":-0.5509696,"z":-0.021055596}},"center":{"x":3.1688933,"y":2.6894908},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":95.937195,"y":112.04291,"z":20.41079},"xAxis":{"x":-0.9538503,"y":-0.29802105,"z":0.03678328},"yAxis":{"x":0.29776967,"y":-0.954559,"z":-0.012260664}},"center":{"x":-3.030967,"y":4.896969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":83.629395,"y":136.10416,"z":20.415693},"xAxis":{"x":-0.39639723,"y":0.91799724,"z":-0.012260663},"yAxis":{"x":-0.9172661,"y":-0.3965728,"z":-0.03678328}},"center":{"x":3.1688933,"y":6.6494904},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":90.77251,"y":129.48822,"z":91.56328},"xAxis":{"x":0.90648186,"y":0.37513432,"z":0.1938165},"yAxis":{"x":-0.3849009,"y":0.9228518,"z":0.013994101}},"center":{"x":3.1688933,"y":42.289486},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":94.755295,"y":111.32562,"z":28.327656},"xAxis":{"x":-0.99079627,"y":-0.12634738,"z":0.048570734},"yAxis":{"x":0.12703292,"y":-0.99183434,"z":0.011284139}},"center":{"x":-3.030967,"y":8.856968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":84.77353,"y":136.91927,"z":28.339626},"xAxis":{"x":-0.23052089,"y":0.97300196,"z":0.011284141},"yAxis":{"x":-0.97204167,"y":-0.2297301,"z":-0.04857073}},"center":{"x":3.1688933,"y":10.60949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":93.32672,"y":110.83231,"z":36.283955},"xAxis":{"x":-0.04737345,"y":-0.9982096,"z":0.036515374},"yAxis":{"x":0.99720633,"y":-0.04937619,"z":-0.056049816}},"center":{"x":-3.030967,"y":12.816968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":85.99408,"y":137.31937,"z":36.283955},"xAxis":{"x":-0.057749216,"y":0.9976631,"z":0.036515377},"yAxis":{"x":-0.99687576,"y":-0.055652168,"z":-0.056049813}},"center":{"x":3.1688933,"y":14.56949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":92.35096,"y":111.132935,"z":44.213547},"xAxis":{"x":-0.97288024,"y":0.22366162,"z":0.05898695},"yAxis":{"x":-0.22000256,"y":-0.9734857,"z":0.06264505}},"center":{"x":-3.030967,"y":16.77697},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":87.21752,"y":137.29712,"z":44.237873},"xAxis":{"x":0.11652196,"y":0.99121046,"z":0.06264505},"yAxis":{"x":-0.9909928,"y":0.12022437,"z":-0.058986947}},"center":{"x":3.1688933,"y":18.529491},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.27293,"y":111.645874,"z":52.161053},"xAxis":{"x":-0.9185779,"y":0.39106584,"z":0.05729041},"yAxis":{"x":-0.38546306,"y":-0.9184349,"z":0.08885709}},"center":{"x":-3.030967,"y":20.736969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":88.37027,"y":136.85834,"z":52.19028},"xAxis":{"x":0.28685,"y":0.9538456,"z":0.0888571},"yAxis":{"x":-0.9545764,"y":0.29240674,"z":-0.057290405}},"center":{"x":3.1688933,"y":22.489492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":90.09492,"y":112.47838,"z":60.130127},"xAxis":{"x":-0.53858745,"y":-0.83477634,"z":0.1143329},"yAxis":{"x":0.8359951,"y":-0.5463606,"z":-0.05101317}},"center":{"x":-3.030967,"y":24.696968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":89.38092,"y":136.02191,"z":60.130127},"xAxis":{"x":0.44791532,"y":0.8867355,"z":0.1143329},"yAxis":{"x":-0.888764,"y":0.45551747,"z":-0.05101317}},"center":{"x":3.1688933,"y":26.449492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":89.42411,"y":113.75876,"z":68.046745},"xAxis":{"x":-0.67459345,"y":-0.72512287,"z":0.13827682},"yAxis":{"x":0.72771096,"y":-0.68469596,"z":-0.040351294}},"center":{"x":-3.030967,"y":28.656967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":90.18252,"y":134.81908,"z":68.046745},"xAxis":{"x":0.5946878,"y":0.791976,"z":0.13827683},"yAxis":{"x":-0.79561096,"y":0.6044625,"z":-0.04035129}},"center":{"x":3.1688933,"y":30.40949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":89.33255,"y":115.29096,"z":75.89307},"xAxis":{"x":-0.59710735,"y":0.8017515,"z":0.025637744},"yAxis":{"x":-0.78923357,"y":-0.592899,"z":0.15994108}},"center":{"x":-3.030967,"y":32.616966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":90.71465,"y":133.29256,"z":75.93018},"xAxis":{"x":0.72258353,"y":0.6725265,"z":0.15994108},"yAxis":{"x":-0.67802656,"y":0.7345902,"z":-0.025637744}},"center":{"x":3.1688933,"y":34.369488},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":90.92531,"y":131.49518,"z":83.77156},"xAxis":{"x":0.8276082,"y":0.53211755,"z":0.17864907},"yAxis":{"x":-0.539683,"y":0.8418364,"z":-0.007332042}},"center":{"x":3.1688933,"y":38.329487},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":99.539276,"y":117.27706,"z":12.785699},"xAxis":{"x":-0.00578096,"y":-0.999748,"z":-0.021692503},"yAxis":{"x":0.9999378,"y":-0.0059863245,"z":0.0094140945}},"center":{"x":-1.979669,"y":0.4242164},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":80.49291,"y":130.25766,"z":12.785699},"xAxis":{"x":-0.099273175,"y":0.99482375,"z":-0.021692501},"yAxis":{"x":-0.99503404,"y":-0.099088885,"z":0.0094140945}},"center":{"x":2.2107508,"y":3.3603892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":99.379234,"y":115.822136,"z":20.55407},"xAxis":{"x":-0.9836893,"y":0.17979728,"z":-0.0053150533},"yAxis":{"x":-0.17982072,"y":-0.9836899,"z":0.0043204958}},"center":{"x":-1.979669,"y":4.3842163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":80.71375,"y":131.90569,"z":20.553871},"xAxis":{"x":0.07549051,"y":0.9971372,"z":0.0043204967},"yAxis":{"x":-0.9971341,"y":0.07546726,"z":0.0053150537}},"center":{"x":2.2107508,"y":7.3203893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":86.61064,"y":132.45215,"z":91.36026},"xAxis":{"x":0.9818436,"y":-0.09667079,"z":0.16321136},"yAxis":{"x":0.073022194,"y":0.9867116,"z":0.14514807}},"center":{"x":2.2107508,"y":42.960384},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":98.80348,"y":114.45004,"z":28.35804},"xAxis":{"x":-0.93741345,"y":0.34816998,"z":-0.0058034174},"yAxis":{"x":-0.348179,"y":-0.93692696,"z":0.030647116}},"center":{"x":-1.979669,"y":8.344215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":81.17099,"y":133.29044,"z":28.363008},"xAxis":{"x":0.24782968,"y":0.96831876,"z":0.030647116},"yAxis":{"x":-0.9688016,"y":0.24776958,"z":0.00580342}},"center":{"x":2.2107508,"y":11.28039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":97.79215,"y":113.32253,"z":36.206528},"xAxis":{"x":-0.50559783,"y":-0.8609196,"z":0.056465153},"yAxis":{"x":0.8625554,"y":-0.50584596,"z":0.010863937}},"center":{"x":-1.979669,"y":12.304215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":81.81495,"y":134.37384,"z":36.206528},"xAxis":{"x":0.41236198,"y":0.90926856,"z":0.056465153},"yAxis":{"x":-0.9109214,"y":0.4124369,"z":0.01086394}},"center":{"x":2.2107508,"y":15.24039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":97.22385,"y":112.67681,"z":44.064648},"xAxis":{"x":-0.76145303,"y":0.64790094,"z":-0.020338567},"yAxis":{"x":-0.6471608,"y":-0.75804156,"z":0.08096828}},"center":{"x":-1.979669,"y":16.264217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":82.59013,"y":135.1272,"z":44.076775},"xAxis":{"x":0.5639489,"y":0.82183075,"z":0.080968276},"yAxis":{"x":-0.8253011,"y":0.5643265,"z":0.020338569}},"center":{"x":2.2107508,"y":19.20039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":96.05747,"y":112.34105,"z":51.96526},"xAxis":{"x":-0.76844686,"y":-0.63150585,"z":0.10339124},"yAxis":{"x":0.63726395,"y":-0.7698983,"z":0.033931404}},"center":{"x":-1.979669,"y":20.224218},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":83.436935,"y":135.53212,"z":51.96526},"xAxis":{"x":0.6978563,"y":0.70873606,"z":0.10339124},"yAxis":{"x":-0.71461475,"y":0.69869477,"z":0.033931404}},"center":{"x":2.2107508,"y":23.16039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":95.20047,"y":112.3823,"z":59.862923},"xAxis":{"x":-0.8656681,"y":-0.4852643,"z":0.12303375},"yAxis":{"x":0.49386656,"y":-0.868028,"z":0.05121793}},"center":{"x":-1.979669,"y":24.184217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":84.29352,"y":135.58112,"z":59.862923},"xAxis":{"x":0.8099021,"y":0.57351667,"z":0.12303375},"yAxis":{"x":-0.5823192,"y":0.8113452,"z":0.051217932}},"center":{"x":2.2107508,"y":27.12039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":94.432556,"y":112.76842,"z":67.76042},"xAxis":{"x":-0.93578815,"y":-0.32388425,"z":0.13928235},"yAxis":{"x":0.33573946,"y":-0.93922526,"z":0.07165827}},"center":{"x":-1.979669,"y":28.144217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":85.09775,"y":135.2778,"z":67.76042},"xAxis":{"x":0.8965869,"y":0.4203955,"z":0.13928235},"yAxis":{"x":-0.43254617,"y":0.89875966,"z":0.071658276}},"center":{"x":2.2107508,"y":31.080389},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":94.04124,"y":113.31273,"z":75.637},"xAxis":{"x":-0.16782099,"y":0.9812667,"z":-0.09461406},"yAxis":{"x":-0.9766171,"y":-0.15240562,"z":0.15162958}},"center":{"x":-1.979669,"y":32.104214},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":85.789116,"y":134.63681,"z":75.64841},"xAxis":{"x":0.9552036,"y":0.25415468,"z":0.15162958},"yAxis":{"x":-0.2699732,"y":0.958208,"z":0.09461406}},"center":{"x":2.2107508,"y":35.040386},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":86.31064,"y":133.68327,"z":83.517845},"xAxis":{"x":0.9839214,"y":0.07998611,"z":0.15968983},"yAxis":{"x":-0.09967756,"y":0.9878338,"z":0.11936836}},"center":{"x":2.2107508,"y":39.000385},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":92.74527,"y":118.70076,"z":10.85},"xAxis":{"x":0.9724026,"y":0.23330937,"z":0.0},"yAxis":{"x":-0.2329107,"y":0.9707409,"z":0.05843533}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":87.39889,"y":129.55554,"z":10.85},"xAxis":{"x":-0.9425135,"y":-0.33416805,"z":0.0},"yAxis":{"x":0.33359703,"y":-0.94090295,"z":0.05843533}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":92.68724,"y":118.19792,"z":18.610731},"xAxis":{"x":0.9981265,"y":0.06032806,"z":-0.010197392},"yAxis":{"x":-0.05994803,"y":0.9976162,"z":0.03417823}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.40377,"y":130.06169,"z":18.610731},"xAxis":{"x":-0.9862666,"y":-0.16484609,"z":-0.010197392},"yAxis":{"x":0.16441455,"y":-0.985799,"z":0.03417823}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":85.12774,"y":126.100464,"z":88.29603},"xAxis":{"x":-0.1611262,"y":0.98300594,"z":0.08796381},"yAxis":{"x":-0.9771284,"y":-0.14635797,"z":-0.15427057}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":92.61022,"y":117.90589,"z":26.382086},"xAxis":{"x":0.9932725,"y":-0.11468894,"z":-0.016005274},"yAxis":{"x":0.11483459,"y":0.9933483,"z":0.008495756}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.449684,"y":130.3602,"z":26.382086},"xAxis":{"x":-0.99982476,"y":0.009712463,"z":-0.016005272},"yAxis":{"x":-0.009849345,"y":-0.9999154,"z":0.0084957555}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":92.55127,"y":117.82495,"z":34.15866},"xAxis":{"x":0.95799214,"y":-0.28627568,"z":-0.017242258},"yAxis":{"x":0.28597856,"y":0.9580705,"z":-0.01781001}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.49981,"y":130.44688,"z":34.15866},"xAxis":{"x":-0.98276454,"y":0.18405598,"z":-0.017242257},"yAxis":{"x":-0.18375225,"y":-0.9828112,"z":-0.01781001}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":92.546875,"y":117.94879,"z":41.934895},"xAxis":{"x":0.89338726,"y":-0.44907334,"z":-0.013869714},"yAxis":{"x":0.44813883,"y":0.89288455,"z":-0.04391751}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.51719,"y":130.32419,"z":41.934895},"xAxis":{"x":-0.93561876,"y":0.35273954,"z":-0.013869712},"yAxis":{"x":-0.35186303,"y":-0.9350207,"z":-0.04391751}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":92.631836,"y":118.2647,"z":49.70523},"xAxis":{"x":0.8014755,"y":-0.5979976,"z":-0.0059929686},"yAxis":{"x":0.5962511,"y":0.7998263,"z":-0.06901138}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.46589,"y":130.0011,"z":49.70523},"xAxis":{"x":-0.8598598,"y":0.510495,"z":-0.005992967},"yAxis":{"x":-0.5089314,"y":-0.8580363,"z":-0.06901138}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":92.83814,"y":118.75399,"z":57.464302},"xAxis":{"x":0.6851274,"y":-0.72839737,"z":0.006141979},"yAxis":{"x":0.7256895,"y":0.68180203,"z":-0.09230792}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.31212,"y":129.49284,"z":57.464302},"xAxis":{"x":-0.7578538,"y":0.6523955,"z":0.00614198},"yAxis":{"x":-0.65005195,"y":-0.7542624,"z":-0.092307925}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":93.194016,"y":119.39253,"z":65.20709},"xAxis":{"x":0.5479766,"y":-0.8362002,"z":0.022156142},"yAxis":{"x":0.8324117,"y":0.54249775,"z":-0.113079555}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":87.02529,"y":128.82045,"z":65.20709},"xAxis":{"x":-0.6327864,"y":0.77400935,"z":0.022156144},"yAxis":{"x":-0.77081734,"y":-0.6269399,"z":-0.113079555}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":93.72299,"y":120.15156,"z":72.929085},"xAxis":{"x":0.39430648,"y":-0.91803926,"z":0.041549385},"yAxis":{"x":0.91308457,"y":0.3862641,"z":-0.13067757}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":86.57898,"y":128.01006,"z":72.929085},"xAxis":{"x":-0.4885636,"y":0.87153846,"z":0.041549385},"yAxis":{"x":-0.867456,"y":-0.4800452,"z":-0.13067757}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":85.95173,"y":127.092125,"z":80.62643},"xAxis":{"x":-0.3296896,"y":0.94193685,"z":0.06371604},"yAxis":{"x":-0.93694985,"y":-0.31816602,"z":-0.14455235}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":119.075,"y":36.3,"z":0.0},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":129.57396,"y":49.13143,"z":19.849815},"xAxis":{"x":-0.9279951,"y":-0.37254122,"z":-0.0061748414},"yAxis":{"x":0.372569,"y":-0.9279951,"z":-0.004176444}},"center":{"x":0.018135905,"y":10.147437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":130.10919,"y":46.348312,"z":35.20459},"xAxis":{"x":-0.99939984,"y":-0.017566908,"z":0.029856544},"yAxis":{"x":0.017268762,"y":-0.9997987,"z":-0.0102146445}},"center":{"x":0.018135905,"y":22.027437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":130.17262,"y":43.47406,"z":50.551777},"xAxis":{"x":-0.9383632,"y":0.33936155,"z":0.06563715},"yAxis":{"x":-0.34027952,"y":-0.94031954,"z":-0.003008777}},"center":{"x":0.018135905,"y":33.907433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":129.66327,"y":50.315296,"z":67.56342},"xAxis":{"x":-0.7077361,"y":0.7016579,"z":-0.08237634},"yAxis":{"x":-0.7020273,"y":-0.71154743,"z":-0.029289836}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":122.404465,"y":46.795784,"z":57.154465},"xAxis":{"x":-0.8574576,"y":0.51042897,"z":0.06502872},"yAxis":{"x":-0.51096195,"y":-0.8595518,"z":0.009410263}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":124.33364,"y":43.1704,"z":9.385871},"xAxis":{"x":-0.7158154,"y":-0.6982454,"z":-0.007847478},"yAxis":{"x":0.6980192,"y":-0.7158058,"z":0.019777037}},"center":{"x":-1.4286158,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.52017,"y":53.761414,"z":9.385871},"xAxis":{"x":0.6786757,"y":0.73439616,"z":-0.007847479},"yAxis":{"x":-0.7341698,"y":0.67867786,"z":0.019777037}},"center":{"x":1.4286158,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.75082,"y":42.945297,"z":14.577543},"xAxis":{"x":-0.79514647,"y":-0.60641515,"z":0.0016794568},"yAxis":{"x":0.6063878,"y":-0.7950771,"z":0.012094411}},"center":{"x":-1.4286158,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.09056,"y":54.01641,"z":14.577543},"xAxis":{"x":0.7626582,"y":0.64679956,"z":0.0016794568},"yAxis":{"x":-0.6467687,"y":0.76259035,"z":0.012094411}},"center":{"x":1.4286158,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.70204,"y":53.833473,"z":61.52997},"xAxis":{"x":0.9197393,"y":-0.377938,"z":0.106030375},"yAxis":{"x":0.37962434,"y":0.92512935,"z":0.00458469}},"center":{"x":1.4286158,"y":42.912548},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.20857,"y":42.790703,"z":19.776188},"xAxis":{"x":-0.86265045,"y":-0.5056566,"z":0.012066586},"yAxis":{"x":0.5057439,"y":-0.86266536,"z":0.0056201825}},"center":{"x":-1.4286158,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.62405,"y":54.198887,"z":19.776188},"xAxis":{"x":0.8352921,"y":0.549674,"z":0.012066586},"yAxis":{"x":-0.54976195,"y":0.8353025,"z":0.0056201825}},"center":{"x":1.4286158,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.71525,"y":42.70119,"z":24.981228},"xAxis":{"x":-0.9173237,"y":-0.39746806,"z":0.023159452},"yAxis":{"x":0.39758423,"y":-0.9175656,"z":0.00045062578}},"center":{"x":-1.4286158,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.11208,"y":54.31384,"z":24.981228},"xAxis":{"x":0.8954975,"y":0.44446355,"z":0.023159452},"yAxis":{"x":-0.44459212,"y":0.895733,"z":0.00045062593}},"center":{"x":1.4286158,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.27844,"y":42.67035,"z":30.191992},"xAxis":{"x":-0.95835316,"y":-0.28345835,"z":0.0347931},"yAxis":{"x":0.2835171,"y":-0.95896137,"z":-0.0033373872}},"center":{"x":-1.4286158,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.54669,"y":54.367275,"z":30.191992},"xAxis":{"x":0.94237906,"y":0.33273286,"z":0.0347931},"yAxis":{"x":-0.332823,"y":0.9429834,"z":-0.0033373865}},"center":{"x":1.4286158,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":121.9049,"y":42.6909,"z":35.407726},"xAxis":{"x":-0.98512876,"y":-0.16532283,"z":0.04679454},"yAxis":{"x":0.1652387,"y":-0.9862372,"z":-0.0056875274}},"center":{"x":-1.4286158,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.9208,"y":54.366104,"z":35.407726},"xAxis":{"x":0.97523963,"y":0.21614332,"z":0.04679454},"yAxis":{"x":-0.21611673,"y":0.97635096,"z":-0.005687528}},"center":{"x":1.4286158,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":121.60043,"y":42.7548,"z":40.627594},"xAxis":{"x":-0.9972523,"y":-0.04481816,"z":0.058985304},"yAxis":{"x":0.044507846,"y":-0.99898744,"z":-0.006564848}},"center":{"x":-1.4286158,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.22818,"y":54.318066,"z":40.627594},"xAxis":{"x":0.9935906,"y":0.09642868,"z":0.058985304},"yAxis":{"x":-0.096208684,"y":0.9953395,"z":-0.0065648477}},"center":{"x":1.4286158,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":121.369835,"y":42.853367,"z":45.850708},"xAxis":{"x":-0.99454343,"y":0.07626372,"z":0.07118411},"yAxis":{"x":-0.07688014,"y":-0.99702257,"z":-0.005956304}},"center":{"x":-1.4286158,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.46358,"y":54.23158,"z":45.850708},"xAxis":{"x":0.99715906,"y":-0.02463091,"z":0.07118411},"yAxis":{"x":0.025118057,"y":0.99966675,"z":-0.005956304}},"center":{"x":1.4286158,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":121.2168,"y":42.9774,"z":51.07613},"xAxis":{"x":-0.97704256,"y":0.1961223,"z":0.08320957},"yAxis":{"x":-0.19712022,"y":-0.98037165,"z":-0.0038709426}},"center":{"x":-1.4286158,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.62285,"y":54.115646,"z":51.07613},"xAxis":{"x":0.98589194,"y":-0.14523526,"z":0.08320957},"yAxis":{"x":0.14605933,"y":0.98926824,"z":-0.0038709422}},"center":{"x":1.4286158,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.70296,"y":53.9797,"z":56.30288},"xAxis":{"x":0.9599568,"y":-0.26359093,"z":0.09488285},"yAxis":{"x":0.26481673,"y":0.9642987,"z":-0.0003397745}},"center":{"x":1.4286158,"y":38.95255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":125.56948,"y":46.078873,"z":9.464581},"xAxis":{"x":-0.006671767,"y":-0.9999679,"z":0.004440975},"yAxis":{"x":0.9991555,"y":-0.0064861565,"z":0.040573336}},"center":{"x":-0.5593769,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":127.4367,"y":50.792812,"z":9.464581},"xAxis":{"x":-0.045148615,"y":0.9989704,"z":0.0044409744},"yAxis":{"x":-0.9981495,"y":-0.045291886,"z":0.040573336}},"center":{"x":0.5593769,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":125.33064,"y":45.682674,"z":14.637838},"xAxis":{"x":-0.12766331,"y":-0.9918013,"z":0.0056734527},"yAxis":{"x":0.99143773,"y":-0.12745403,"z":0.028402956}},"center":{"x":-0.5593769,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":127.654686,"y":51.200855,"z":14.637838},"xAxis":{"x":0.076103546,"y":0.9970838,"z":0.0056734527},"yAxis":{"x":-0.9967098,"y":0.075913385,"z":0.028402956}},"center":{"x":0.5593769,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":128.54976,"y":53.811913,"z":61.294666},"xAxis":{"x":0.9169477,"y":0.39213982,"z":0.07371026},"yAxis":{"x":-0.38921267,"y":0.91972464,"z":-0.051186565}},"center":{"x":0.5593769,"y":42.129883},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":125.10889,"y":45.31659,"z":19.814075},"xAxis":{"x":-0.24675125,"y":-0.9690427,"z":0.008370728},"yAxis":{"x":0.96897924,"y":-0.24659285,"z":0.016466834}},"center":{"x":-0.5593769,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":124.90778,"y":44.978336,"z":24.993048},"xAxis":{"x":-0.36216468,"y":-0.9320304,"z":0.012492691},"yAxis":{"x":0.9321141,"y":-0.36213097,"z":0.0049424577}},"center":{"x":-0.5593769,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":128.04047,"y":51.92615,"z":24.993048},"xAxis":{"x":0.31338686,"y":0.94954336,"z":0.012492691},"yAxis":{"x":-0.94962525,"y":0.31334883,"z":0.0049424577}},"center":{"x":0.5593769,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":124.730576,"y":44.665203,"z":30.174473},"xAxis":{"x":-0.47218743,"y":-0.8813148,"z":0.017978048},"yAxis":{"x":0.88139045,"y":-0.47235033,"z":-0.0059988024}},"center":{"x":-0.5593769,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":128.20122,"y":52.248047,"z":30.174473},"xAxis":{"x":0.42588955,"y":0.9045965,"z":0.017978048},"yAxis":{"x":-0.90468055,"y":0.4260483,"z":-0.005998802}},"center":{"x":0.5593769,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":124.58017,"y":44.37411,"z":35.358032},"xAxis":{"x":-0.57518345,"y":-0.81765014,"z":0.024745231},"yAxis":{"x":0.8175626,"y":-0.57561195,"z":-0.016194247}},"center":{"x":-0.5593769,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":124.45904,"y":44.101654,"z":40.54337},"xAxis":{"x":-0.6696211,"y":-0.741983,"z":0.03269361},"yAxis":{"x":0.74157965,"y":-0.67038035,"z":-0.025492268}},"center":{"x":-0.5593769,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":128.4432,"y":52.824905,"z":40.54337},"xAxis":{"x":0.6302772,"y":0.7756815,"z":0.03269361},"yAxis":{"x":-0.775318,"y":0.63105637,"z":-0.025492268}},"center":{"x":0.5593769,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":124.36926,"y":43.84415,"z":45.730106},"xAxis":{"x":-0.7540961,"y":-0.6554386,"z":0.04170499},"yAxis":{"x":0.6545715,"y":-0.7552462,"z":-0.033754602}},"center":{"x":-0.5593769,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":128.51952,"y":53.08672,"z":45.730106},"xAxis":{"x":0.7191229,"y":0.6936303,"z":0.041704994},"yAxis":{"x":-0.6928239,"y":0.7203164,"z":-0.033754602}},"center":{"x":0.5593769,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":124.31242,"y":43.597687,"z":50.917847},"xAxis":{"x":-0.82735234,"y":-0.5593039,"z":0.051645372},"yAxis":{"x":0.5578319,"y":-0.82894766,"z":-0.040858384}},"center":{"x":-0.5593769,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":128.57387,"y":53.57615,"z":56.106174},"xAxis":{"x":0.8635318,"y":0.5004229,"z":0.062366944},"yAxis":{"x":-0.49832508,"y":0.8657317,"z":-0.046697985}},"center":{"x":0.5593769,"y":38.169884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":124.43094,"y":48.903374,"z":9.4502325},"xAxis":{"x":0.6975386,"y":-0.7159306,"z":0.029720347},"yAxis":{"x":0.7150601,"y":0.6981628,"z":0.03546512}},"center":{"x":-0.5016618,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":128.72005,"y":48.031094,"z":9.4502325},"xAxis":{"x":-0.7336963,"y":0.6788273,"z":0.029720347},"yAxis":{"x":-0.67792565,"y":-0.7342745,"z":0.03546512}},"center":{"x":0.5016618,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":124.542435,"y":48.62427,"z":14.634112},"xAxis":{"x":0.6060173,"y":-0.795146,"z":0.022042975},"yAxis":{"x":0.7947246,"y":0.6064154,"z":0.025945418}},"center":{"x":-0.5016618,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":128.59424,"y":48.304047,"z":14.634112},"xAxis":{"x":-0.64640224,"y":0.7626783,"z":0.022042975},"yAxis":{"x":-0.7622369,"y":-0.646778,"z":0.025945418}},"center":{"x":0.5016618,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.41298,"y":51.64448,"z":61.19117},"xAxis":{"x":0.37893707,"y":0.9253086,"z":0.014515022},"yAxis":{"x":-0.92211634,"y":0.3788615,"z":-0.07852022}},"center":{"x":0.5016618,"y":41.028614},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":128.439,"y":48.58866,"z":19.816566},"xAxis":{"x":-0.54950935,"y":0.8353424,"z":0.015572595},"yAxis":{"x":-0.83520937,"y":-0.5497119,"z":0.015561358}},"center":{"x":0.5016618,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":124.84998,"y":48.023155,"z":24.99726},"xAxis":{"x":0.3974503,"y":-0.9175647,"z":0.010405423},"yAxis":{"x":0.91758674,"y":0.3975105,"z":0.0044673574}},"center":{"x":-0.5016618,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":128.25595,"y":48.888416,"z":24.99726},"xAxis":{"x":-0.4444583,"y":0.89573914,"z":0.010405423},"yAxis":{"x":-0.895758,"y":-0.44451958,"z":0.004467357}},"center":{"x":0.5016618,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":125.041985,"y":47.694614,"z":30.175882},"xAxis":{"x":0.28350604,"y":-0.9589476,"z":0.006618296},"yAxis":{"x":0.95895743,"y":0.28345945,"z":-0.007171616}},"center":{"x":-0.5016618,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":128.0472,"y":49.206573,"z":30.175882},"xAxis":{"x":-0.33281127,"y":0.9429702,"z":0.0066182967},"yAxis":{"x":-0.94298244,"y":-0.33276525,"z":-0.0071716155}},"center":{"x":0.5016618,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":127.81515,"y":49.546104,"z":35.352158},"xAxis":{"x":-0.21622849,"y":0.97633344,"z":0.004267528},"yAxis":{"x":-0.9761804,"y":-0.21611074,"z":-0.019182488}},"center":{"x":0.5016618,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":125.4895,"y":46.96734,"z":40.525837},"xAxis":{"x":0.044742733,"y":-0.9989928,"z":0.0033880777},"yAxis":{"x":0.9985111,"y":0.04461471,"z":-0.03138665}},"center":{"x":-0.5016618,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":127.56261,"y":49.909683,"z":40.525837},"xAxis":{"x":-0.096443534,"y":0.9953327,"z":0.0033880784},"yAxis":{"x":-0.99485826,"y":-0.09629072,"z":-0.03138665}},"center":{"x":0.5016618,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":125.73888,"y":46.563953,"z":45.69672},"xAxis":{"x":-0.076525874,"y":-0.9970596,"z":0.003993021},"yAxis":{"x":0.99610597,"y":-0.0766273,"z":-0.043602634}},"center":{"x":-0.5016618,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":127.29266,"y":50.299606,"z":45.69672},"xAxis":{"x":0.024762345,"y":0.9996854,"z":0.003993021},"yAxis":{"x":-0.9987383,"y":0.024913047,"z":-0.043602634}},"center":{"x":0.5016618,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":127.008675,"y":50.717793,"z":50.864643},"xAxis":{"x":0.14558679,"y":0.98932683,"z":0.006073363},"yAxis":{"x":-0.98776275,"y":0.14569825,"z":-0.055648774}},"center":{"x":0.5016618,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":126.71421,"y":51.165733,"z":56.029484},"xAxis":{"x":0.2642331,"y":0.9644111,"z":0.009598169},"yAxis":{"x":-0.96209484,"y":0.2642688,"z":-0.067345954}},"center":{"x":0.5016618,"y":37.068615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":121.52244,"y":50.140648,"z":9.40022},"xAxis":{"x":0.9990946,"y":-0.00671609,"z":0.04201085},"yAxis":{"x":0.005674167,"y":0.99967456,"z":0.024871536}},"center":{"x":-1.284328,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":131.68875,"y":46.94618,"z":9.40022},"xAxis":{"x":-0.9981006,"y":-0.045059104,"z":0.04201085},"yAxis":{"x":0.046129677,"y":-0.9986258,"z":0.024871536}},"center":{"x":1.284328,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":121.80478,"y":50.20469,"z":14.618119},"xAxis":{"x":0.991367,"y":-0.12767537,"z":0.02984137},"yAxis":{"x":0.12699623,"y":0.99162126,"z":0.023649355}},"center":{"x":-1.284328,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":131.41011,"y":46.8676,"z":14.618119},"xAxis":{"x":-0.99665064,"y":0.076138094,"z":0.02984137},"yAxis":{"x":-0.0754467,"y":-0.9968693,"z":0.023649355}},"center":{"x":1.284328,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":126.42459,"y":48.48617,"z":61.324127},"xAxis":{"x":-0.38912153,"y":0.9198427,"z":-0.04973716},"yAxis":{"x":-0.91920584,"y":-0.39125717,"z":-0.044479694}},"center":{"x":1.284328,"y":40.15937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":122.15662,"y":50.232327,"z":19.832113},"xAxis":{"x":0.96889985,"y":-0.24680448,"z":0.017906258},"yAxis":{"x":0.24642608,"y":0.96893495,"z":0.020958219}},"center":{"x":-1.284328,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":131.06018,"y":46.821766,"z":19.832113},"xAxis":{"x":-0.98038614,"y":0.19627127,"z":0.017906258},"yAxis":{"x":-0.19589157,"y":-0.9804016,"z":0.02095822}},"center":{"x":1.284328,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":122.572975,"y":50.215416,"z":25.041397},"xAxis":{"x":0.9320273,"y":-0.3623319,"z":0.0063829846},"yAxis":{"x":0.36218774,"y":0.9319531,"z":0.016838146}},"center":{"x":-1.284328,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":130.6435,"y":46.817078,"z":25.041397},"xAxis":{"x":-0.9495489,"y":0.313554,"z":0.0063829846},"yAxis":{"x":-0.3134139,"y":-0.94946736,"z":0.016838146}},"center":{"x":1.284328,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":123.04793,"y":50.14648,"z":30.245237},"xAxis":{"x":0.8812976,"y":-0.47253975,"z":-0.004557094},"yAxis":{"x":0.4725598,"y":0.8812255,"z":0.0113504}},"center":{"x":-1.284328,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":130.1656,"y":46.861317,"z":30.245237},"xAxis":{"x":-0.9045976,"y":0.4262423,"z":-0.004557093},"yAxis":{"x":-0.42626604,"y":-0.90452665,"z":0.0113504}},"center":{"x":1.284328,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":123.57467,"y":50.0188,"z":35.44298},"xAxis":{"x":0.81746507,"y":-0.5757892,"z":-0.0147512965},"yAxis":{"x":0.57590103,"y":0.8175066,"z":0.0045765853}},"center":{"x":-1.284328,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":129.63297,"y":46.961533,"z":35.44298},"xAxis":{"x":-0.84620047,"y":0.5326604,"z":-0.014751297},"yAxis":{"x":-0.5327699,"y":-0.84624773,"z":0.004576585}},"center":{"x":1.284328,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":124.14562,"y":49.826534,"z":40.634064},"xAxis":{"x":0.74147904,"y":-0.6705449,"z":-0.024048032},"yAxis":{"x":0.67067474,"y":0.74174386,"z":-0.003382569}},"center":{"x":-1.284328,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":129.05283,"y":47.123955,"z":40.634064},"xAxis":{"x":-0.7752261,"y":0.63122594,"z":-0.024048032},"yAxis":{"x":-0.6313418,"y":-0.77549726,"z":-0.003382569}},"center":{"x":1.284328,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":124.75256,"y":49.56482,"z":45.81802},"xAxis":{"x":0.6544693,"y":-0.7553979,"z":-0.03230906},"yAxis":{"x":0.7554716,"y":0.6550639,"z":-0.012408709}},"center":{"x":-1.284328,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":128.43314,"y":47.353874,"z":45.81802},"xAxis":{"x":-0.6927298,"y":0.7204732,"z":-0.03230906},"yAxis":{"x":-0.72051597,"y":-0.6933273,"z":-0.012408709}},"center":{"x":1.284328,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":125.38673,"y":49.2298,"z":50.994495},"xAxis":{"x":0.55772984,"y":-0.82908636,"z":-0.039411534},"yAxis":{"x":0.82903063,"y":0.55875564,"z":-0.022367613}},"center":{"x":-1.284328,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.78247,"y":47.655586,"z":50.994495},"xAxis":{"x":-0.5999382,"y":0.799075,"z":-0.039411534},"yAxis":{"x":-0.7989662,"y":-0.6009598,"z":-0.022367615}},"center":{"x":1.284328,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":127.10985,"y":48.03232,"z":56.163242},"xAxis":{"x":-0.49823135,"y":0.86586255,"z":-0.04524984},"yAxis":{"x":-0.8655261,"y":-0.49976817,"z":-0.033111196}},"center":{"x":1.284328,"y":36.19937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":118.67517,"y":48.99248,"z":10.214472},"xAxis":{"x":0.71481186,"y":0.69784075,"z":0.045412514},"yAxis":{"x":-0.6984912,"y":0.7156155,"z":-0.0021104768}},"center":{"x":-2.385598,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":134.47272,"y":48.240334,"z":10.214472},"xAxis":{"x":-0.67769444,"y":-0.73394,"z":0.045412514},"yAxis":{"x":0.73463124,"y":-0.67846334,"z":-0.0021104768}},"center":{"x":2.385598,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":118.8496,"y":49.40952,"z":15.468327},"xAxis":{"x":0.7945609,"y":0.60612243,"z":0.03589546},"yAxis":{"x":-0.60666317,"y":0.79493946,"z":0.005576797}},"center":{"x":-2.385598,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":134.32011,"y":47.81482,"z":15.468327},"xAxis":{"x":-0.7620886,"y":-0.646477,"z":0.03589546},"yAxis":{"x":0.64703655,"y":-0.7624386,"z":0.005576797}},"center":{"x":2.385598,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.50845,"y":46.38286,"z":62.47385},"xAxis":{"x":-0.9227144,"y":0.37933227,"z":-0.068593666},"yAxis":{"x":-0.3810235,"y":-0.92447364,"z":0.013021522}},"center":{"x":2.385598,"y":40.101658},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":119.13751,"y":49.80061,"z":20.719181},"xAxis":{"x":0.8624936,"y":0.50542444,"z":0.025512986},"yAxis":{"x":-0.5058177,"y":0.8625562,"z":0.012053216}},"center":{"x":-2.385598,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":134.05286,"y":47.409332,"z":20.719181},"xAxis":{"x":-0.8351475,"y":-0.54943407,"z":0.025512986},"yAxis":{"x":0.54982996,"y":-0.83518964,"z":0.012053216}},"center":{"x":2.385598,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":119.53489,"y":50.15221,"z":25.965685},"xAxis":{"x":0.9175997,"y":0.39724416,"z":0.014419484},"yAxis":{"x":-0.39745444,"y":0.91746026,"z":0.017222473}},"center":{"x":-2.385598,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":133.67422,"y":47.037613,"z":25.965685},"xAxis":{"x":-0.8957847,"y":-0.44425425,"z":0.014419484},"yAxis":{"x":0.44445702,"y":-0.8956346,"z":0.017222473}},"center":{"x":2.385598,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":120.03609,"y":50.451355,"z":31.206549},"xAxis":{"x":0.9590597,"y":0.2831902,"z":0.002779915},"yAxis":{"x":-0.2831848,"y":0.95883524,"z":0.021007702}},"center":{"x":-2.385598,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":133.1892,"y":46.712902,"z":31.206549},"xAxis":{"x":-0.9430986,"y":-0.33250165,"z":0.0027799155},"yAxis":{"x":0.33248463,"y":-0.94287467,"z":0.021007702}},"center":{"x":2.385598,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":120.6339,"y":50.68586,"z":36.440567},"xAxis":{"x":0.98625726,"y":0.16495857,"z":-0.009232638},"yAxis":{"x":-0.16470794,"y":0.9860659,"z":0.023352616}},"center":{"x":-2.385598,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":132.60434,"y":46.44774,"z":36.440567},"xAxis":{"x":-0.97638553,"y":-0.21583803,"z":-0.00923264},"yAxis":{"x":0.21557783,"y":-0.9762074,"z":0.023352616}},"center":{"x":2.385598,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":121.31971,"y":50.844494,"z":41.66664},"xAxis":{"x":0.9987879,"y":0.04430741,"z":-0.021439547},"yAxis":{"x":-0.04378566,"y":0.9987473,"z":0.024222342}},"center":{"x":-2.385598,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":131.92769,"y":46.253784,"z":41.66664},"xAxis":{"x":-0.99515057,"y":-0.095998175,"z":-0.021439547},"yAxis":{"x":0.095475025,"y":-0.9951371,"z":0.024222342}},"center":{"x":2.385598,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":122.08357,"y":50.91717,"z":46.88378},"xAxis":{"x":0.99646515,"y":-0.07696917,"z":-0.03365929},"yAxis":{"x":0.077783905,"y":0.9966908,"z":0.023603952}},"center":{"x":-2.385598,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":131.16861,"y":46.141624,"z":46.88378},"xAxis":{"x":-0.9991147,"y":0.025235841,"z":-0.03365929},"yAxis":{"x":-0.026037795,"y":-0.99938226,"z":0.023603952}},"center":{"x":2.385598,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":122.91438,"y":50.895073,"z":52.091145},"xAxis":{"x":0.9793237,"y":-0.19706777,"z":-0.04571016},"yAxis":{"x":0.198193,"y":0.97992706,"z":0.02150664}},"center":{"x":-2.385598,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.33777,"y":46.12065,"z":52.091145},"xAxis":{"x":-0.98821896,"y":0.14606126,"z":-0.04571016},"yAxis":{"x":-0.14715372,"y":-0.9888798,"z":0.021506637}},"center":{"x":2.385598,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":129.44687,"y":46.19888,"z":57.288017},"xAxis":{"x":-0.9626253,"y":0.26468137,"z":-0.05741296},"yAxis":{"x":-0.26607174,"y":-0.9637859,"z":0.01796159}},"center":{"x":2.385598,"y":36.14166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.43856,"y":46.083694,"z":10.164458},"xAxis":{"x":0.005850043,"y":0.99963653,"z":0.026317444},"yAxis":{"x":-0.9999003,"y":0.0061858282,"z":-0.012695765}},"center":{"x":-3.2548368,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":135.55695,"y":51.209282,"z":10.164458},"xAxis":{"x":0.045952067,"y":-0.9985969,"z":0.026317444},"yAxis":{"x":0.9988777,"y":0.0456304,"z":-0.012695765}},"center":{"x":3.2548368,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.269325,"y":46.671917,"z":15.436734},"xAxis":{"x":0.1271839,"y":0.9915617,"z":0.025093056},"yAxis":{"x":-0.99187225,"y":0.12723683,"z":-0.0005180546}},"center":{"x":-3.2548368,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":135.75642,"y":50.63062,"z":15.436734},"xAxis":{"x":-0.07563719,"y":-0.9968196,"z":0.025093056},"yAxis":{"x":0.9971325,"y":-0.07567397,"z":-0.0005180546}},"center":{"x":3.2548368,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":131.65846,"y":46.405483,"z":62.737747},"xAxis":{"x":-0.91938376,"y":-0.39099818,"z":-0.043056916},"yAxis":{"x":0.3870048,"y":-0.91868997,"z":0.078968905}},"center":{"x":3.2548368,"y":40.884323},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.237076,"y":47.274548,"z":20.710001},"xAxis":{"x":0.24662279,"y":0.96885264,"z":0.022399595},"yAxis":{"x":-0.9690957,"y":0.24642059,"z":0.011421525}},"center":{"x":-3.2548368,"y":10.449885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":135.81985,"y":50.030468,"z":20.710001},"xAxis":{"x":-0.19609228,"y":-0.9803296,"z":0.022399595},"yAxis":{"x":0.9805618,"y":-0.19587776,"z":0.011421525}},"center":{"x":3.2548368,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.34257,"y":47.874897,"z":25.98257},"xAxis":{"x":0.36239064,"y":0.9318471,"z":0.01827711},"yAxis":{"x":-0.9319093,"y":0.36196482,"z":0.022945428}},"center":{"x":-3.2548368,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":135.7456,"y":49.42546,"z":25.98257},"xAxis":{"x":-0.313622,"y":-0.949372,"z":0.01827711},"yAxis":{"x":0.9494121,"y":-0.31319353,"z":0.022945428}},"center":{"x":3.2548368,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.58449,"y":48.456295,"z":31.252768},"xAxis":{"x":0.47276598,"y":0.88109523,"z":0.012786906},"yAxis":{"x":-0.8808661,"y":0.4721513,"z":0.033882298}},"center":{"x":-3.2548368,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":135.53413,"y":48.832306,"z":31.252768},"xAxis":{"x":-0.42647868,"y":-0.9044072,"z":0.012786906},"yAxis":{"x":0.90414655,"y":-0.42587674,"z":0.033882294}},"center":{"x":3.2548368,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":117.9595,"y":49.002365,"z":36.518955},"xAxis":{"x":0.5761075,"y":0.8173518,"z":0.006010622},"yAxis":{"x":-0.8167251,"y":0.57534164,"z":0.04406949}},"center":{"x":-3.2548368,"y":22.329885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":135.18793,"y":48.26754,"z":36.518955},"xAxis":{"x":-0.53298414,"y":-0.8461039,"z":0.0060106213},"yAxis":{"x":0.8454383,"y":-0.5322518,"z":0.04406949}},"center":{"x":3.2548368,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":118.46228,"y":49.49725,"z":41.77955},"xAxis":{"x":0.67087847,"y":0.74156475,"z":-0.0019509771},"yAxis":{"x":-0.74044,"y":0.67000127,"z":0.05335553}},"center":{"x":-3.2548368,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":134.71147,"y":47.747272,"z":41.77955},"xAxis":{"x":-0.63155454,"y":-0.775329,"z":-0.0019509773},"yAxis":{"x":0.7741603,"y":-0.6307369,"z":0.05335553}},"center":{"x":3.2548368,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.08562,"y":49.925854,"z":47.03305},"xAxis":{"x":0.7556696,"y":0.654861,"z":-0.010979501},"yAxis":{"x":-0.6531453,"y":0.7547227,"z":0.061602328}},"center":{"x":-3.2548368,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":134.11118,"y":47.28695,"z":47.03305},"xAxis":{"x":-0.7207242,"y":-0.69313496,"z":-0.010979501},"yAxis":{"x":0.6913725,"y":-0.71986747,"z":0.061602328}},"center":{"x":3.2548368,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.820496,"y":50.274067,"z":52.278072},"xAxis":{"x":0.8292201,"y":0.55852973,"z":-0.020940691},"yAxis":{"x":-0.55613905,"y":0.828246,"z":0.06868725}},"center":{"x":-3.2548368,"y":34.209885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":133.39532,"y":46.901127,"z":52.278072},"xAxis":{"x":-0.79916716,"y":-0.600744,"z":-0.020940693},"yAxis":{"x":0.59830606,"y":-0.7983182,"z":0.06868725}},"center":{"x":3.2548368,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":132.57391,"y":46.60326,"z":57.513344},"xAxis":{"x":-0.8657169,"y":-0.49953008,"z":-0.03168643},"yAxis":{"x":0.49634472,"y":-0.8649225,"z":0.07450495}},"center":{"x":3.2548368,"y":36.924324},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":118.55339,"y":43.249634,"z":11.066397},"xAxis":{"x":-0.6985422,"y":0.71552587,"z":0.007844687},"yAxis":{"x":-0.71553206,"y":-0.6983531,"z":-0.01779856}},"center":{"x":-3.312552,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":134.29677,"y":53.981777,"z":11.066397},"xAxis":{"x":0.7346775,"y":-0.67837113,"z":0.007844687},"yAxis":{"x":0.67838717,"y":0.734489,"z":-0.01779856}},"center":{"x":3.312552,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.04369,"y":43.7234,"z":16.328285},"xAxis":{"x":-0.6066028,"y":0.7948533,"z":0.01553194},"yAxis":{"x":-0.79499996,"y":-0.606553,"z":-0.008274209}},"center":{"x":-3.312552,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":134.83032,"y":53.535053,"z":16.328285},"xAxis":{"x":0.6469718,"y":-0.7623557,"z":0.01553194},"yAxis":{"x":0.76250476,"y":0.64692974,"z":-0.008274209}},"center":{"x":3.312552,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":133.72495,"y":48.60586,"z":63.725803},"xAxis":{"x":-0.38191217,"y":-0.9239143,"z":0.02292169},"yAxis":{"x":0.9207172,"y":-0.37820575,"z":0.09612644}},"center":{"x":3.312552,"y":41.98559},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":117.65954,"y":44.25366,"z":21.595444},"xAxis":{"x":-0.5056464,"y":0.8624601,"z":0.022006977},"yAxis":{"x":-0.86264354,"y":-0.5058079,"z":0.00211204}},"center":{"x":-3.312552,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":135.24144,"y":53.025414,"z":21.595444},"xAxis":{"x":0.54965395,"y":-0.8351025,"z":0.022006977},"yAxis":{"x":0.8352774,"y":0.5498247,"z":0.00211204}},"center":{"x":3.312552,"y":10.305597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.40689,"y":44.824783,"z":26.866278},"xAxis":{"x":-0.39717433,"y":0.9173408,"z":0.027173514},"yAxis":{"x":-0.917457,"y":-0.3976158,"z":0.0132057415}},"center":{"x":-3.312552,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":135.52333,"y":52.46814,"z":26.866278},"xAxis":{"x":0.4441711,"y":-0.8955298,"z":0.027173514},"yAxis":{"x":0.8956229,"y":0.444618,"z":0.0132057415}},"center":{"x":3.312552,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":117.28978,"y":45.42055,"z":32.139137},"xAxis":{"x":-0.28279948,"y":0.95867944,"z":0.03095472},"yAxis":{"x":-0.95862514,"y":-0.28358555,"z":0.02484193}},"center":{"x":-3.312552,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":135.67116,"y":51.879246,"z":32.139137},"xAxis":{"x":0.33209175,"y":-0.942739,"z":0.03095472},"yAxis":{"x":0.94264406,"y":0.33287397,"z":0.02484193}},"center":{"x":3.312552,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":117.3102,"y":46.02436,"z":37.412346},"xAxis":{"x":-0.16422264,"y":0.98586124,"z":0.033294372},"yAxis":{"x":-0.9855358,"y":-0.16541286,"z":0.036847573}},"center":{"x":-3.312552,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":135.68205,"y":51.27519,"z":37.412346},"xAxis":{"x":0.21508259,"y":-0.97602814,"z":0.033294372},"yAxis":{"x":0.9756415,"y":0.21625432,"z":0.036847576}},"center":{"x":3.312552,"y":22.185598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.4681,"y":46.6195,"z":42.684216},"xAxis":{"x":-0.043207124,"y":0.99848205,"z":0.03415768},"yAxis":{"x":-0.9977889,"y":-0.044854913,"z":0.049044147}},"center":{"x":-3.312552,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":135.5552,"y":50.67267,"z":42.684216},"xAxis":{"x":0.094883524,"y":-0.9949022,"z":0.03415768},"yAxis":{"x":0.9941246,"y":0.096493185,"z":0.049044147}},"center":{"x":3.312552,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":117.761406,"y":47.18938,"z":47.953075},"xAxis":{"x":0.07844758,"y":0.99635416,"z":0.0335318},"yAxis":{"x":-0.9952022,"y":0.07629553,"z":0.06125028}},"center":{"x":-3.312552,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":135.29182,"y":50.088352,"z":47.953075},"xAxis":{"x":-0.026718022,"y":-0.9990805,"z":0.0335318},"yAxis":{"x":0.9978185,"y":-0.024628552,"z":0.06125028}},"center":{"x":3.312552,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.186005,"y":47.7178,"z":53.217316},"xAxis":{"x":0.19893244,"y":0.97950923,"z":0.031426042},"yAxis":{"x":-0.97781414,"y":0.19623695,"z":0.07328447}},"center":{"x":-3.312552,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":134.89519,"y":49.53865,"z":53.217316},"xAxis":{"x":-0.14791381,"y":-0.98850083,"z":0.031426042},"yAxis":{"x":0.98666835,"y":-0.14530978,"z":0.07328447}},"center":{"x":3.312552,"y":34.065594},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":134.37051,"y":49.03944,"z":58.47538},"xAxis":{"x":-0.26690164,"y":-0.9633207,"z":0.027871722},"yAxis":{"x":0.96083987,"y":-0.26375595,"z":0.08496777}},"center":{"x":3.312552,"y":38.025593},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":121.46112,"y":42.01205,"z":11.145105},"xAxis":{"x":-0.9999163,"y":0.006384726,"z":-0.011252431},"yAxis":{"x":-0.006418928,"y":-0.9999749,"z":0.0030060343}},"center":{"x":-2.5298858,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":131.32883,"y":55.06704,"z":11.145105},"xAxis":{"x":0.99890405,"y":0.045432597,"z":-0.011252431},"yAxis":{"x":-0.045401476,"y":0.9989643,"z":0.0030060343}},"center":{"x":2.5298858,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":120.7809,"y":42.14276,"z":16.372982},"xAxis":{"x":-0.9918464,"y":0.12743573,"z":0.0009251377},"yAxis":{"x":-0.12743075,"y":-0.99183846,"z":0.004235547}},"center":{"x":-2.5298858,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":132.0149,"y":54.971745,"z":16.372982},"xAxis":{"x":0.997117,"y":-0.075873934,"z":0.0009251378},"yAxis":{"x":0.07586938,"y":0.99710876,"z":0.004235547}},"center":{"x":2.5298858,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":133.71106,"y":51.765232,"z":63.621445},"xAxis":{"x":0.3866855,"y":-0.9187011,"z":0.080390505},"yAxis":{"x":0.91699797,"y":0.3922919,"z":0.072262034}},"center":{"x":2.5298858,"y":42.854836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":120.185524,"y":42.35315,"z":21.608604},"xAxis":{"x":-0.9690283,"y":0.24661441,"z":0.012864065},"yAxis":{"x":-0.2465425,"y":-0.9691072,"z":0.006930139}},"center":{"x":-2.5298858,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":132.62038,"y":54.79249,"z":21.608604},"xAxis":{"x":0.9805046,"y":-0.19607481,"z":0.012864065},"yAxis":{"x":0.1959989,"y":0.9805796,"z":0.0069301385}},"center":{"x":2.5298858,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":119.684105,"y":42.63235,"z":26.850847},"xAxis":{"x":-0.9318013,"y":0.36214858,"z":0.024386818},"yAxis":{"x":-0.36198294,"y":-0.93211925,"z":0.011049741}},"center":{"x":-2.5298858,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":133.13557,"y":54.53964,"z":26.850847},"xAxis":{"x":0.94931376,"y":-0.31338263,"z":0.024386818},"yAxis":{"x":0.31320074,"y":0.9496227,"z":0.011049741}},"center":{"x":2.5298858,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":119.28438,"y":42.96848,"z":32.098484},"xAxis":{"x":-0.880719,"y":0.47232017,"z":0.035322048},"yAxis":{"x":-0.47203544,"y":-0.88142455,"z":0.016533094}},"center":{"x":-2.5298858,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":133.55219,"y":54.224678,"z":32.098484},"xAxis":{"x":0.9040084,"y":-0.426053,"z":0.035322048},"yAxis":{"x":0.42573208,"y":0.9046982,"z":0.016533094}},"center":{"x":2.5298858,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":118.99252,"y":43.348797,"z":37.350216},"xAxis":{"x":-0.816541,"y":0.57549095,"z":0.045507148},"yAxis":{"x":-0.5750635,"y":-0.8177769,"z":0.023298658}},"center":{"x":-2.5298858,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":133.86336,"y":53.85999,"z":37.350216},"xAxis":{"x":0.8452622,"y":-0.53241044,"z":0.04550715},"yAxis":{"x":0.53191954,"y":0.8464743,"z":0.02329866}},"center":{"x":2.5298858,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":118.81315,"y":43.75991,"z":42.604668},"xAxis":{"x":-0.7402217,"y":0.67012674,"z":0.054790664},"yAxis":{"x":-0.66953516,"y":-0.7421229,"z":0.031245831}},"center":{"x":-2.5298858,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":134.0638,"y":53.45872,"z":42.604668},"xAxis":{"x":0.7739487,"y":-0.63087344,"z":0.054790664},"yAxis":{"x":0.6301841,"y":0.77581674,"z":0.031245831}},"center":{"x":2.5298858,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":118.74918,"y":44.187977,"z":47.86044},"xAxis":{"x":-0.65289587,"y":0.7548203,"z":0.06303455},"yAxis":{"x":-0.7540455,"y":-0.65558743,"z":0.040256433}},"center":{"x":-2.5298858,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":134.14986,"y":53.03455,"z":47.86044},"xAxis":{"x":0.69112843,"y":-0.71997786,"z":0.06303455},"yAxis":{"x":0.7190646,"y":0.69377625,"z":0.040256437}},"center":{"x":2.5298858,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":118.801834,"y":44.618893,"z":53.116108},"xAxis":{"x":-0.55586207,"y":0.82831216,"z":0.070116214},"yAxis":{"x":-0.8273378,"y":-0.5594573,"z":0.05019648}},"center":{"x":-2.5298858,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":134.11961,"y":52.601486,"z":53.116108},"xAxis":{"x":0.5980329,"y":-0.7983987,"z":0.070116214},"yAxis":{"x":0.7972393,"y":0.60157275,"z":0.05019648}},"center":{"x":2.5298858,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":133.97284,"y":52.17369,"z":58.370243},"xAxis":{"x":0.49604636,"y":-0.86496973,"z":0.07593035},"yAxis":{"x":0.8635458,"y":0.5005774,"z":0.060918156}},"center":{"x":2.5298858,"y":38.894836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":121.521774,"y":46.088444,"z":9.15},"xAxis":{"x":0.3739909,"y":-0.92743236,"z":-4.3368087E-19},"yAxis":{"x":0.92704785,"y":0.37383583,"z":0.028793845}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":131.47946,"y":50.992977,"z":9.15},"xAxis":{"x":-0.4215417,"y":0.90680903,"z":0.0},"yAxis":{"x":-0.90643305,"y":-0.4213669,"z":0.028793845}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.31034,"y":46.182472,"z":14.372592},"xAxis":{"x":0.2588988,"y":-0.96589816,"z":-0.0034891297},"yAxis":{"x":0.96577877,"y":0.25880516,"z":0.017065028}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.69548,"y":50.91003,"z":14.372592},"xAxis":{"x":-0.3085972,"y":0.9511864,"z":-0.0034891297},"yAxis":{"x":-0.95107204,"y":-0.30849752,"z":0.017065028}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":130.15674,"y":50.084034,"z":61.35396},"xAxis":{"x":0.7020273,"y":0.71154743,"z":0.029289836},"yAxis":{"x":-0.7077361,"y":0.7016579,"z":-0.08237634}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.17576,"y":46.299675,"z":19.597261},"xAxis":{"x":0.13996153,"y":-0.9901415,"z":-0.0055312943},"yAxis":{"x":0.9901481,"y":0.13993455,"z":0.0049976134}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.83595,"y":50.799957,"z":19.597261},"xAxis":{"x":-0.19107582,"y":0.9815597,"z":-0.0055312943},"yAxis":{"x":-0.98156774,"y":-0.19104922,"z":0.0049976134}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.12029,"y":46.430576,"z":24.823044},"xAxis":{"x":0.01894772,"y":-0.9998019,"z":-0.006096126},"yAxis":{"x":0.9997935,"y":0.01899164,"z":-0.0072289547}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.89812,"y":50.672104,"z":24.823044},"xAxis":{"x":-0.0707251,"y":0.99747723,"z":-0.006096126},"yAxis":{"x":-0.99746656,"y":-0.07076852,"z":-0.0072289547}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.145035,"y":46.565495,"z":30.04896},"xAxis":{"x":-0.10234312,"y":-0.9947357,"z":-0.0051752264},"yAxis":{"x":0.99457145,"y":-0.102225125,"z":-0.019432865}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.8804,"y":50.536087,"z":30.04896},"xAxis":{"x":0.050665323,"y":0.9987023,"z":-0.005175226},"yAxis":{"x":-0.9985322,"y":0.05055599,"z":-0.019432865}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.24987,"y":46.694683,"z":35.27403},"xAxis":{"x":-0.22210738,"y":-0.97501826,"z":-0.0027822885},"yAxis":{"x":0.97455966,"y":-0.22191322,"z":-0.031432644}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.78241,"y":50.401638,"z":35.27403},"xAxis":{"x":0.17129034,"y":0.9852167,"z":-0.0027822882},"yAxis":{"x":-0.9847486,"y":0.1711202,"z":-0.031432644}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.433495,"y":46.808487,"z":40.49728},"xAxis":{"x":-0.33856413,"y":-0.9409427,"z":0.0010471037},"yAxis":{"x":0.94005567,"y":-0.33829287,"z":-0.04304985}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.60493,"y":50.278473,"z":40.49728},"xAxis":{"x":0.28935623,"y":0.9572209,"z":0.001047104},"yAxis":{"x":-0.956321,"y":0.28913128,"z":-0.04304985}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":121.69344,"y":46.89748,"z":45.71777},"xAxis":{"x":-0.44998166,"y":-0.89301586,"z":0.006256006},"yAxis":{"x":0.8915726,"y":-0.44963348,"z":-0.054111734}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.34995,"y":50.176132,"z":45.71777},"xAxis":{"x":0.40310735,"y":0.91513133,"z":0.0062560067},"yAxis":{"x":-0.9136719,"y":0.40283442,"z":-0.054111734}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":122.02611,"y":46.952602,"z":50.9346},"xAxis":{"x":-0.5547032,"y":-0.83195037,"z":0.012766962},"yAxis":{"x":0.82983136,"y":-0.5542794,"z":-0.0644538}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":131.02058,"y":50.10385,"z":50.9346},"xAxis":{"x":0.51085216,"y":0.8595738,"z":0.012766963},"yAxis":{"x":-0.85743564,"y":0.51053876,"z":-0.0644538}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":130.6211,"y":50.070415,"z":56.146923},"xAxis":{"x":0.6109885,"y":0.79137444,"z":0.020483153},"yAxis":{"x":-0.7884484,"y":0.6106428,"z":-0.07392227}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":128.425,"y":73.7,"z":0.0},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":128.91367,"y":86.06781,"z":26.680897},"xAxis":{"x":-0.72170043,"y":-0.692105,"z":-0.011797038},"yAxis":{"x":0.6922028,"y":-0.7215448,"z":-0.015110787}},"center":{"x":-0.12357646,"y":10.494074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":131.14578,"y":82.09022,"z":49.305794},"xAxis":{"x":-0.9801896,"y":-0.18619472,"z":0.067526385},"yAxis":{"x":0.1850798,"y":-0.98246676,"z":-0.022462765}},"center":{"x":-0.12357646,"y":22.374077},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":132.64288,"y":77.70938,"z":71.91678},"xAxis":{"x":-0.9149432,"y":0.379385,"z":0.13764435},"yAxis":{"x":-0.3810946,"y":-0.92441833,"z":0.014752167}},"center":{"x":-0.12357646,"y":34.254074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":123.05865,"y":90.49553,"z":96.079475},"xAxis":{"x":-0.5968413,"y":0.7884812,"z":-0.14858644},"yAxis":{"x":-0.78467274,"y":-0.6122576,"z":-0.09710498}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":125.76346,"y":81.227875,"z":80.78643},"xAxis":{"x":-0.85476935,"y":0.5013125,"z":0.13436954},"yAxis":{"x":-0.5017206,"y":-0.8643888,"z":0.033293}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":129.73996,"y":78.808136,"z":11.223541},"xAxis":{"x":-0.40885016,"y":-0.9123437,"z":-0.021692501},"yAxis":{"x":0.91159034,"y":-0.4094004,"z":0.037340768}},"center":{"x":-0.93696856,"y":0.7832468},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":121.70974,"y":92.28305,"z":11.223541},"xAxis":{"x":0.31074712,"y":0.9502451,"z":-0.021692503},"yAxis":{"x":-0.9495537,"y":0.31137344,"z":0.037340768}},"center":{"x":1.124723,"y":3.1688933},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":128.74857,"y":77.41031,"z":18.846754},"xAxis":{"x":-0.5759059,"y":-0.81751573,"z":-0.0006092446},"yAxis":{"x":0.8173344,"y":-0.57579356,"z":0.020645274}},"center":{"x":-0.93696856,"y":4.743247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":122.54881,"y":93.77729,"z":18.846754},"xAxis":{"x":0.48684013,"y":0.87349087,"z":-0.00060924876},"yAxis":{"x":-0.87329876,"y":0.48674744,"z":0.020645274}},"center":{"x":1.124723,"y":7.1288934},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.591576,"y":96.054695,"z":88.67356},"xAxis":{"x":0.7607453,"y":-0.61684805,"z":0.20190366},"yAxis":{"x":0.6145584,"y":0.78463745,"z":0.08162164}},"center":{"x":1.124723,"y":42.76889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.70559,"y":76.285835,"z":26.508213},"xAxis":{"x":-0.7211881,"y":-0.69234806,"z":0.023277868},"yAxis":{"x":0.6926509,"y":-0.72122556,"z":0.008269554}},"center":{"x":-0.93696856,"y":8.703246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.4679,"y":95.0051,"z":26.508213},"xAxis":{"x":0.64446723,"y":0.7642775,"z":0.023277864},"yAxis":{"x":-0.76458263,"y":0.64447266,"z":0.008269553}},"center":{"x":1.124723,"y":11.088894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":126.66517,"y":75.43981,"z":34.20574},"xAxis":{"x":-0.8392408,"y":-0.5415412,"z":0.04907177},"yAxis":{"x":0.5422223,"y":-0.8402348,"z":0.0006783723}},"center":{"x":-0.93696856,"y":12.663246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":124.413704,"y":95.955734,"z":34.20574},"xAxis":{"x":0.7777088,"y":0.6267064,"z":0.049071766},"yAxis":{"x":-0.62748814,"y":0.7786258,"z":0.0006783702}},"center":{"x":1.124723,"y":15.048893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":125.68133,"y":74.86689,"z":41.93581},"xAxis":{"x":-0.9256305,"y":-0.37075868,"z":0.07580378},"yAxis":{"x":0.3716978,"y":-0.92835194,"z":-0.0018431896}},"center":{"x":-0.93696856,"y":16.623247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":125.3319,"y":96.62884,"z":41.93581},"xAxis":{"x":0.8815611,"y":0.46594396,"z":0.07580378},"yAxis":{"x":-0.4671638,"y":0.88416886,"z":-0.0018431924}},"center":{"x":1.124723,"y":19.008894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":124.806,"y":74.55145,"z":49.693672},"xAxis":{"x":-0.97711295,"y":-0.18641406,"z":0.10247},"yAxis":{"x":0.18748137,"y":-0.98226786,"z":0.0007995643}},"center":{"x":-0.93696856,"y":20.583248},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":126.16926,"y":97.034485,"z":49.693672},"xAxis":{"x":0.95212394,"y":0.28802752,"z":0.10247},"yAxis":{"x":-0.28963044,"y":0.95713824,"z":0.0007995622}},"center":{"x":1.124723,"y":22.968895},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":124.087,"y":74.46822,"z":57.473537},"xAxis":{"x":-0.9917547,"y":0.0045696166,"z":0.128069},"yAxis":{"x":-0.0035088216,"y":-0.9999577,"z":0.008507389}},"center":{"x":-0.93696856,"y":24.543247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":126.875534,"y":97.19278,"z":57.473537},"xAxis":{"x":0.98674744,"y":0.09963865,"z":0.128069},"yAxis":{"x":-0.10155529,"y":0.99479353,"z":0.008507386}},"center":{"x":1.124723,"y":26.928894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.56629,"y":74.58319,"z":65.26878},"xAxis":{"x":-0.969006,"y":0.19502012,"z":0.1516394},"yAxis":{"x":-0.19410028,"y":-0.9807571,"z":0.020990817}},"center":{"x":-0.93696856,"y":28.503246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.405426,"y":97.13314,"z":65.26878},"xAxis":{"x":0.9841312,"y":-0.092147835,"z":0.1516394},"yAxis":{"x":0.08999863,"y":0.9957207,"z":0.020990815}},"center":{"x":1.124723,"y":30.888893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":123.278404,"y":74.85493,"z":73.072205},"xAxis":{"x":-0.9097211,"y":0.37778515,"z":0.17229606},"yAxis":{"x":-0.3771354,"y":-0.9253872,"z":0.037781045}},"center":{"x":-0.93696856,"y":32.463245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.72027,"y":96.89316,"z":73.072205},"xAxis":{"x":0.9443736,"y":-0.2801295,"z":0.17229606},"yAxis":{"x":0.2778376,"y":0.9598848,"z":0.03778104}},"center":{"x":1.124723,"y":34.848892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":127.789444,"y":96.51718,"z":80.87631},"xAxis":{"x":0.8689677,"y":-0.45724675,"z":0.18926321},"yAxis":{"x":0.45490745,"y":0.88863176,"z":0.05824752}},"center":{"x":1.124723,"y":38.80889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":129.16542,"y":83.94425,"z":11.498676},"xAxis":{"x":-0.7831726,"y":-0.6166277,"z":-0.0800684},"yAxis":{"x":0.61714697,"y":-0.78656614,"z":0.021055596}},"center":{"x":-0.4242164,"y":1.8345448},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.82065,"y":87.2357,"z":11.498676},"xAxis":{"x":0.71406317,"y":0.6954875,"z":-0.0800684},"yAxis":{"x":-0.69636035,"y":0.7173834,"z":0.021055594}},"center":{"x":0.45382434,"y":2.2107508},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":129.17229,"y":82.56349,"z":19.0718},"xAxis":{"x":-0.888277,"y":-0.45615858,"z":-0.053696696},"yAxis":{"x":0.45598963,"y":-0.88983995,"z":0.016072523}},"center":{"x":-0.4242164,"y":5.7945447},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.66878,"y":88.60811,"z":19.0718},"xAxis":{"x":0.83544314,"y":0.54694736,"z":-0.053696703},"yAxis":{"x":-0.54694355,"y":0.8370152,"z":0.016072521}},"center":{"x":0.45382434,"y":6.170751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.535446,"y":96.76833,"z":87.82991},"xAxis":{"x":0.3965403,"y":-0.9127561,"z":0.098143354},"yAxis":{"x":0.8981525,"y":0.40785596,"z":0.16424263}},"center":{"x":0.45382434,"y":41.81075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":129.11086,"y":81.26459,"z":26.659145},"xAxis":{"x":-0.9601016,"y":-0.27836266,"z":-0.026816012},"yAxis":{"x":0.27800828,"y":-0.96044177,"z":0.016219052}},"center":{"x":-0.4242164,"y":9.754545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.99837,"y":80.05918,"z":34.261322},"xAxis":{"x":-0.99594915,"y":-0.089916974,"z":-0.00043583394},"yAxis":{"x":0.08988689,"y":-0.9957201,"z":0.021489682}},"center":{"x":-0.4242164,"y":13.714545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.57867,"y":91.11682,"z":34.261322},"xAxis":{"x":0.9809929,"y":0.19404308,"z":-0.000435836},"yAxis":{"x":-0.19398911,"y":0.98076826,"z":0.021489678}},"center":{"x":0.45382434,"y":14.090751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.85403,"y":78.95542,"z":41.878384},"xAxis":{"x":-0.9944734,"y":0.10210151,"z":0.024453143},"yAxis":{"x":-0.101309724,"y":-0.9943502,"z":0.031686474}},"center":{"x":-0.4242164,"y":17.674545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.60625,"y":92.22964,"z":41.878384},"xAxis":{"x":0.9996967,"y":0.0029320011,"z":0.024453145},"yAxis":{"x":-0.0037064666,"y":0.999491,"z":0.031686474}},"center":{"x":0.45382434,"y":18.050749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.69824,"y":77.957634,"z":49.509823},"xAxis":{"x":-0.9557297,"y":0.29048166,"z":0.046916228},"yAxis":{"x":-0.28840128,"y":-0.95638347,"z":0.046426497}},"center":{"x":-0.4242164,"y":21.634546},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.5518,"y":77.066154,"z":57.1546},"xAxis":{"x":-0.88117313,"y":0.46814892,"z":0.06610983},"yAxis":{"x":-0.46436167,"y":-0.88324565,"z":0.0651562}},"center":{"x":-0.4242164,"y":25.594545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.708336,"y":94.1402,"z":57.1546},"xAxis":{"x":0.92547625,"y":-0.37299216,"z":0.06610983},"yAxis":{"x":0.36900818,"y":0.9271395,"z":0.06515619}},"center":{"x":0.45382434,"y":25.970749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.43517,"y":76.27734,"z":64.81116},"xAxis":{"x":-0.77360356,"y":0.62843114,"z":0.08131315},"yAxis":{"x":-0.6225828,"y":-0.77768356,"z":0.08717219}},"center":{"x":-0.4242164,"y":29.554544},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.74146,"y":94.9369,"z":64.81116},"xAxis":{"x":0.8353394,"y":-0.54368764,"z":0.08131315},"yAxis":{"x":0.5374431,"y":0.8387824,"z":0.08717218}},"center":{"x":0.45382434,"y":29.930748},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":128.36768,"y":75.58369,"z":72.477516},"xAxis":{"x":-0.63706076,"y":0.765309,"z":0.09195524},"yAxis":{"x":-0.75712276,"y":-0.6436614,"z":0.11164767}},"center":{"x":-0.4242164,"y":33.51454},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":122.6725,"y":96.24008,"z":80.151306},"xAxis":{"x":0.56581044,"y":-0.8187342,"z":0.09763642},"yAxis":{"x":0.80707824,"y":0.57417196,"z":0.13766348}},"center":{"x":0.45382434,"y":37.85075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":125.018684,"y":87.1821,"z":11.451711},"xAxis":{"x":0.4061404,"y":0.91029817,"z":0.08004549},"yAxis":{"x":-0.9105233,"y":0.41054717,"z":-0.048972722}},"center":{"x":-0.7832468,"y":2.8772452},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":127.28458,"y":84.451385,"z":11.451711},"xAxis":{"x":-0.3082672,"y":-0.94792616,"z":0.08004549},"yAxis":{"x":0.94861305,"y":-0.31262597,"z":-0.048972722}},"center":{"x":0.6453203,"y":1.124723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":125.720055,"y":86.533775,"z":19.083675},"xAxis":{"x":0.5743619,"y":0.81647027,"z":0.05903117},"yAxis":{"x":-0.8163686,"y":0.5766266,"z":-0.03231271}},"center":{"x":-0.7832468,"y":6.837245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":126.51899,"y":85.02244,"z":19.083675},"xAxis":{"x":-0.48541453,"y":-0.872289,"z":0.059031174},"yAxis":{"x":0.87242573,"y":-0.48767737,"z":-0.032312714}},"center":{"x":0.6453203,"y":5.0847235},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":118.41555,"y":93.543816,"z":87.272896},"xAxis":{"x":-0.7713072,"y":0.6198445,"z":-0.14449228},"yAxis":{"x":-0.6130151,"y":-0.7845481,"z":-0.093256354}},"center":{"x":0.6453203,"y":40.72472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":125.687004,"y":85.650795,"z":26.704178},"xAxis":{"x":-0.6442911,"y":-0.7639711,"z":0.03517274},"yAxis":{"x":0.7638385,"y":-0.6450985,"z":-0.019966157}},"center":{"x":0.6453203,"y":9.044723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":127.2892,"y":85.03487,"z":34.312584},"xAxis":{"x":0.8404907,"y":0.54174495,"z":0.009366185},"yAxis":{"x":-0.5416295,"y":0.8405259,"z":-0.012396728}},"center":{"x":-0.7832468,"y":14.757245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":124.80107,"y":86.34822,"z":34.312584},"xAxis":{"x":-0.7789305,"y":-0.6270404,"z":0.009366188},"yAxis":{"x":0.6269292,"y":-0.7789776,"z":-0.012396726}},"center":{"x":0.6453203,"y":13.004723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":128.12798,"y":84.1663,"z":41.90871},"xAxis":{"x":0.9284036,"y":0.37116474,"z":-0.017419338},"yAxis":{"x":-0.37136286,"y":0.92843515,"z":-0.009888686}},"center":{"x":-0.7832468,"y":18.717243},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":123.87569,"y":87.12387,"z":41.90871},"xAxis":{"x":-0.8842763,"y":-0.4666391,"z":-0.017419338},"yAxis":{"x":0.46683946,"y":-0.8842868,"z":-0.009888683}},"center":{"x":0.6453203,"y":16.964722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":122.92682,"y":87.983955,"z":49.492836},"xAxis":{"x":-0.9563723,"y":-0.28879112,"z":-0.04417792},"yAxis":{"x":0.2895813,"y":-0.9570713,"z":-0.012536219}},"center":{"x":0.6453203,"y":20.924723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":129.83191,"y":82.16858,"z":57.0657},"xAxis":{"x":0.99754286,"y":-0.004641298,"z":-0.069904655},"yAxis":{"x":0.0032334044,"y":0.99978995,"z":-0.020239908}},"center":{"x":-0.7832468,"y":26.637245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.97132,"y":88.93153,"z":57.0657},"xAxis":{"x":-0.9925111,"y":-0.1001754,"z":-0.069904655},"yAxis":{"x":0.10181156,"y":-0.9945978,"z":-0.020239906}},"center":{"x":0.6453203,"y":24.884722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":130.66298,"y":81.04019,"z":64.62845},"xAxis":{"x":0.97617275,"y":-0.1957539,"z":-0.09363339},"yAxis":{"x":0.19349529,"y":0.9805558,"z":-0.032710437}},"center":{"x":-0.7832468,"y":30.597244},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.02631,"y":89.96637,"z":64.62845},"xAxis":{"x":-0.9913354,"y":0.0921247,"z":-0.09363338},"yAxis":{"x":-0.08941815,"y":-0.9954569,"z":-0.032710433}},"center":{"x":0.6453203,"y":28.84472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":120.10849,"y":91.084946,"z":72.18262},"xAxis":{"x":-0.9528894,"y":0.28088748,"z":-0.114473},"yAxis":{"x":-0.27692634,"y":-0.95961636,"z":-0.04947948}},"center":{"x":0.6453203,"y":32.80472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":119.23354,"y":92.28061,"z":79.730064},"xAxis":{"x":-0.87861687,"y":0.459024,"z":-0.13164088},"yAxis":{"x":-0.4536712,"y":-0.8884222,"z":-0.0699173}},"center":{"x":0.6453203,"y":36.76472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":119.893845,"y":86.482086,"z":11.284298},"xAxis":{"x":0.78299123,"y":0.6152333,"z":0.09172082},"yAxis":{"x":-0.62010294,"y":0.78363574,"z":0.037247688}},"center":{"x":-1.8345448,"y":3.3899975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":132.30753,"y":85.685875,"z":11.284298},"xAxis":{"x":-0.71402925,"y":-0.6940818,"z":0.09172082},"yAxis":{"x":0.6989922,"y":-0.7141586,"z":0.037247688}},"center":{"x":1.603463,"y":0.45382434},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":120.553246,"y":86.82497,"z":19.047337},"xAxis":{"x":0.88813347,"y":0.45491335,"z":0.06536652},"yAxis":{"x":-0.4579454,"y":0.8879726,"z":0.04231657}},"center":{"x":-1.8345448,"y":7.3499975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":131.6878,"y":85.275635,"z":19.047337},"xAxis":{"x":-0.8354312,"y":-0.54569393,"z":0.06536652},"yAxis":{"x":0.54869235,"y":-0.8349527,"z":0.04231657}},"center":{"x":1.603463,"y":4.4138246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":117.78767,"y":88.41295,"z":87.52185},"xAxis":{"x":-0.39762512,"y":0.91346365,"z":-0.086478084},"yAxis":{"x":-0.9079319,"y":-0.40531582,"z":-0.106670864}},"center":{"x":1.603463,"y":40.05382},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.46603,"y":87.09459,"z":26.787575},"xAxis":{"x":0.9600242,"y":0.2772567,"z":0.038500484},"yAxis":{"x":-0.27877745,"y":0.9594273,"z":0.042218756}},"center":{"x":-1.8345448,"y":11.309998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":130.8084,"y":84.91161,"z":26.787575},"xAxis":{"x":-0.9255868,"y":-0.37657237,"z":0.038500488},"yAxis":{"x":0.378022,"y":-0.9248335,"z":0.04221876}},"center":{"x":1.603463,"y":8.373823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":122.612885,"y":87.243706,"z":34.499878},"xAxis":{"x":0.9959635,"y":0.08893521,"z":0.012131643},"yAxis":{"x":-0.089327596,"y":0.9953164,"z":0.036957923}},"center":{"x":-1.8345448,"y":15.269998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":129.68355,"y":84.642845,"z":34.499878},"xAxis":{"x":-0.98111033,"y":-0.19306827,"z":0.012131645},"yAxis":{"x":0.1933905,"y":-0.98042554,"z":0.036957927}},"center":{"x":1.603463,"y":12.333823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":123.9657,"y":87.22959,"z":42.180164},"xAxis":{"x":0.99460185,"y":-0.10297883,"z":-0.012749732},"yAxis":{"x":0.10328943,"y":0.9942921,"z":0.026731636}},"center":{"x":-1.8345448,"y":19.229996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":128.33673,"y":84.51477,"z":42.180164},"xAxis":{"x":-0.99991655,"y":-0.0020730267,"z":-0.0127497325},"yAxis":{"x":0.001731606,"y":-0.9996411,"z":0.026731638}},"center":{"x":1.603463,"y":16.293823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":125.48865,"y":87.01564,"z":49.825554},"xAxis":{"x":0.95599025,"y":-0.2912782,"z":-0.03520924},"yAxis":{"x":0.29184002,"y":0.9563928,"z":0.011923938}},"center":{"x":-1.8345448,"y":23.189997},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":126.79973,"y":84.56755,"z":49.825554},"xAxis":{"x":-0.9812993,"y":0.1892406,"z":-0.03520924},"yAxis":{"x":-0.18975703,"y":-0.98175865,"z":0.01192394}},"center":{"x":1.603463,"y":20.253824},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":127.13949,"y":86.57277,"z":57.43448},"xAxis":{"x":0.88157874,"y":-0.4688914,"z":-0.054403413},"yAxis":{"x":0.46924326,"y":0.8830419,"z":-0.006909076}},"center":{"x":-1.8345448,"y":27.149996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":125.111496,"y":84.83455,"z":57.43448},"xAxis":{"x":-0.9259577,"y":0.37368795,"z":-0.054403417},"yAxis":{"x":-0.37388414,"y":-0.9274497,"z":-0.0069090733}},"center":{"x":1.603463,"y":24.213823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":128.87119,"y":85.880486,"z":65.00674},"xAxis":{"x":0.77416193,"y":-0.6291483,"z":-0.069611445},"yAxis":{"x":0.62883687,"y":0.77699405,"z":-0.029060142}},"center":{"x":-1.8345448,"y":31.109995},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":123.31666,"y":85.34109,"z":65.00674},"xAxis":{"x":-0.83597,"y":0.5443422,"z":-0.069611445},"yAxis":{"x":-0.54373497,"y":-0.8387537,"z":-0.029060138}},"center":{"x":1.603463,"y":28.173822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":130.63368,"y":84.92765,"z":72.5435},"xAxis":{"x":0.6377737,"y":-0.7660305,"z":-0.0802622},"yAxis":{"x":0.7646274,"y":0.6422317,"z":-0.053697392}},"center":{"x":-1.8345448,"y":35.069996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.46382,"y":86.1035,"z":72.5435},"xAxis":{"x":-0.7147157,"y":0.69479454,"z":-0.08026219},"yAxis":{"x":-0.6929309,"y":-0.7190017,"z":-0.05369739}},"center":{"x":1.603463,"y":32.133823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":119.603806,"y":87.1285,"z":80.04729},"xAxis":{"x":-0.5667485,"y":0.81939477,"z":-0.08595568},"yAxis":{"x":-0.8158688,"y":-0.57269084,"z":-0.079895586}},"center":{"x":1.603463,"y":36.093822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.35182,"y":82.33436,"z":11.834151},"xAxis":{"x":-0.91327053,"y":0.40724695,"z":0.009321014},"yAxis":{"x":-0.40632862,"y":-0.90911186,"z":-0.09172082}},"center":{"x":-2.8772452,"y":3.030967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":135.39424,"y":90.18275,"z":11.834151},"xAxis":{"x":0.95099837,"y":-0.3090554,"z":0.009321013},"yAxis":{"x":0.30857903,"y":0.9467662,"z":-0.09172082}},"center":{"x":2.6894908,"y":0.6453203},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.299995,"y":83.43502,"z":19.732986},"xAxis":{"x":-0.81819034,"y":0.5743563,"z":0.02606644},"yAxis":{"x":-0.57462144,"y":-0.8153588,"z":-0.07071249}},"center":{"x":-2.8772452,"y":6.990967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":135.48376,"y":89.36491,"z":19.713629},"xAxis":{"x":-0.48578933,"y":-0.87121093,"z":0.0707125},"yAxis":{"x":0.87399894,"y":-0.48522824,"z":0.026066437}},"center":{"x":2.6894908,"y":4.6053205},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":120.95953,"y":84.08458,"z":89.18917},"xAxis":{"x":-0.7724978,"y":0.62096125,"z":-0.13286941},"yAxis":{"x":-0.62238944,"y":-0.7818967,"z":-0.03562223}},"center":{"x":2.6894908,"y":40.245316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.663025,"y":84.58541,"z":27.616547},"xAxis":{"x":-0.69255996,"y":0.7203341,"z":0.03846351},"yAxis":{"x":-0.7213246,"y":-0.69101024,"z":-0.046857428}},"center":{"x":-2.8772452,"y":10.950967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":135.2973,"y":88.192764,"z":27.599483},"xAxis":{"x":-0.6447435,"y":-0.76296145,"z":0.04685743},"yAxis":{"x":0.7643985,"y":-0.6435957,"z":0.03846351}},"center":{"x":2.6894908,"y":8.565319},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":117.44225,"y":85.7052,"z":35.474323},"xAxis":{"x":-0.54109746,"y":0.8396983,"z":0.046046667},"yAxis":{"x":-0.84092885,"y":-0.5407361,"z":-0.021051481}},"center":{"x":-2.8772452,"y":14.910967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":134.6946,"y":86.996864,"z":35.460903},"xAxis":{"x":-0.7794722,"y":-0.626083,"z":0.021051483},"yAxis":{"x":0.6263132,"y":-0.77821046,"z":0.046046667}},"center":{"x":2.6894908,"y":12.52532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":118.62336,"y":86.71521,"z":43.29676},"xAxis":{"x":-0.36949092,"y":0.9279662,"z":0.048531123},"yAxis":{"x":-0.92894244,"y":-0.37017968,"z":0.005736217}},"center":{"x":-2.8772452,"y":18.870966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":133.59547,"y":85.58752,"z":43.29676},"xAxis":{"x":0.4649286,"y":-0.88401705,"z":0.048531126},"yAxis":{"x":0.8849156,"y":0.4657161,"z":0.005736217}},"center":{"x":2.6894908,"y":16.48532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":120.17698,"y":87.54037,"z":51.07565},"xAxis":{"x":-0.18418492,"y":0.98182285,"z":0.04582358},"yAxis":{"x":-0.98206013,"y":-0.18574625,"z":0.03249967}},"center":{"x":-2.8772452,"y":22.830967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":132.13713,"y":84.60371,"z":51.07565},"xAxis":{"x":0.2863055,"y":-0.957042,"z":0.045823585},"yAxis":{"x":0.9571139,"y":0.2878831,"z":0.03249967}},"center":{"x":2.6894908,"y":20.44532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":122.05971,"y":88.11258,"z":58.804405},"xAxis":{"x":0.007861485,"y":0.9992458,"z":0.03802572},"yAxis":{"x":-0.9982871,"y":0.005637889,"z":0.05823379}},"center":{"x":-2.8772452,"y":26.790966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":130.50418,"y":84.05564,"z":58.808445},"xAxis":{"x":-0.9933558,"y":-0.099262506,"z":-0.05823379},"yAxis":{"x":0.09715193,"y":-0.9945429,"z":0.03802572}},"center":{"x":2.6894908,"y":24.40532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":124.2158,"y":88.37322,"z":66.478325},"xAxis":{"x":0.19943611,"y":0.9795808,"z":0.02543038},"yAxis":{"x":-0.9770138,"y":0.19678546,"z":0.08197215}},"center":{"x":-2.8772452,"y":30.750965},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":128.20815,"y":83.35119,"z":66.478325},"xAxis":{"x":-0.09542852,"y":-0.9951114,"z":0.025430381},"yAxis":{"x":0.9922802,"y":-0.09306219,"z":0.08197215}},"center":{"x":2.6894908,"y":28.365318},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":126.57926,"y":88.275375,"z":74.094765},"xAxis":{"x":0.38334444,"y":0.9235662,"z":0.008510575},"yAxis":{"x":-0.9190394,"y":0.380518,"z":0.10282327}},"center":{"x":-2.8772452,"y":34.710964},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":126.09511,"y":83.33558,"z":74.11363},"xAxis":{"x":-0.95392746,"y":0.28186834,"z":-0.102823265},"yAxis":{"x":-0.28420362,"y":-0.95872617,"z":0.008510579}},"center":{"x":2.6894908,"y":32.325317},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":123.31281,"y":83.42498,"z":81.653244},"xAxis":{"x":-0.46208397,"y":-0.8867537,"z":-0.012098281},"yAxis":{"x":0.879738,"y":-0.46006536,"z":0.12000409}},"center":{"x":2.6894908,"y":36.285316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":117.056564,"y":77.20999,"z":11.67246},"xAxis":{"x":-0.6196685,"y":0.7833343,"z":0.048972722},"yAxis":{"x":-0.78485274,"y":-0.61878115,"z":-0.03340662}},"center":{"x":-3.3899975,"y":1.979669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":134.15508,"y":95.20473,"z":11.67246},"xAxis":{"x":0.69852847,"y":-0.7139045,"z":0.048972722},"yAxis":{"x":0.7155078,"y":0.6978056,"z":-0.033406623}},"center":{"x":3.3603892,"y":1.603463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":116.00921,"y":78.26934,"z":19.61809},"xAxis":{"x":-0.4572741,"y":0.887683,"z":0.054030728},"yAxis":{"x":-0.88913286,"y":-0.45759583,"z":-0.006984985}},"center":{"x":-3.3899975,"y":5.939669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":135.36555,"y":94.5379,"z":19.605886},"xAxis":{"x":-0.8361433,"y":-0.5484666,"z":0.0069849887},"yAxis":{"x":0.5479943,"y":-0.8347352,"z":0.054030728}},"center":{"x":3.3603892,"y":5.5634627},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":125.736275,"y":83.47908,"z":90.100464},"xAxis":{"x":-0.909905,"y":-0.4037428,"z":-0.09520838},"yAxis":{"x":0.38870928,"y":-0.91001534,"z":0.14414276}},"center":{"x":3.3603892,"y":41.203457},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":115.38867,"y":79.56983,"z":27.572704},"xAxis":{"x":-0.27787176,"y":0.95910394,"z":0.053916242},"yAxis":{"x":-0.96001065,"y":-0.2792541,"z":0.019917054}},"center":{"x":-3.3899975,"y":9.899668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.17131,"y":93.29379,"z":27.565905},"xAxis":{"x":-0.92536354,"y":-0.3785573,"z":-0.01991705},"yAxis":{"x":0.37708735,"y":-0.92460704,"z":0.053916246}},"center":{"x":3.3603892,"y":9.523462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":115.23323,"y":81.025475,"z":35.523125},"xAxis":{"x":-0.088198796,"y":0.99491495,"z":0.048633568},"yAxis":{"x":-0.99482435,"y":-0.090453476,"z":0.046289206}},"center":{"x":-3.3899975,"y":13.859668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":136.52667,"y":91.836815,"z":35.522655},"xAxis":{"x":-0.9798179,"y":-0.19445845,"z":-0.0462892},"yAxis":{"x":0.19222577,"y":-0.9801449,"z":0.04863357}},"center":{"x":3.3603892,"y":13.483462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":115.56368,"y":82.54449,"z":43.456318},"xAxis":{"x":0.1046217,"y":0.9937712,"z":0.03838109},"yAxis":{"x":-0.99226654,"y":0.10171571,"z":0.07114108}},"center":{"x":-3.3899975,"y":17.819668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":136.20009,"y":90.05657,"z":43.456318},"xAxis":{"x":0.00035198772,"y":-0.9992631,"z":0.038381092},"yAxis":{"x":0.9974615,"y":0.0030838388,"z":0.07114108}},"center":{"x":3.3603892,"y":17.443464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":116.38258,"y":84.0327,"z":51.359917},"xAxis":{"x":0.2933485,"y":0.9557156,"z":0.023543835},"yAxis":{"x":-0.9524333,"y":0.29003668,"z":0.09353937}},"center":{"x":-3.3899975,"y":21.779669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":135.54205,"y":88.49057,"z":51.359917},"xAxis":{"x":-0.19132827,"y":-0.98124367,"z":0.023543837},"yAxis":{"x":0.97763157,"y":-0.1883796,"z":0.09353937}},"center":{"x":3.3603892,"y":21.403465},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":117.67414,"y":85.39709,"z":59.22265},"xAxis":{"x":0.47089398,"y":0.8821774,"z":0.0046790075},"yAxis":{"x":-0.87682045,"y":0.4674371,"z":0.11264294}},"center":{"x":-3.3899975,"y":25.739668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":134.66031,"y":87.10886,"z":59.24424},"xAxis":{"x":-0.9210729,"y":0.37274152,"z":-0.11264294},"yAxis":{"x":-0.37561658,"y":-0.92676336,"z":0.0046790102}},"center":{"x":3.3603892,"y":25.363464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":119.40481,"y":86.54929,"z":67.03478},"xAxis":{"x":0.6305906,"y":0.7759182,"z":-0.017504932},"yAxis":{"x":-0.76826775,"y":0.62725484,"z":0.12773435}},"center":{"x":-3.3899975,"y":29.699667},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":132.80092,"y":85.67041,"z":67.03478},"xAxis":{"x":-0.54559207,"y":-0.83786803,"z":-0.01750493},"yAxis":{"x":0.8299095,"y":-0.54307836,"z":0.12773435}},"center":{"x":3.3603892,"y":29.323463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.52456,"y":87.40891,"z":74.78848},"xAxis":{"x":0.76644105,"y":0.6409285,"z":-0.042174883},"yAxis":{"x":-0.63085175,"y":0.763488,"z":0.13824685}},"center":{"x":-3.3899975,"y":33.659668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":131.06369,"y":84.59785,"z":74.82457},"xAxis":{"x":-0.707565,"y":0.6929932,"z":-0.13824685},"yAxis":{"x":-0.6948714,"y":-0.7178962,"z":-0.04217488}},"center":{"x":3.3603892,"y":33.28346},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":128.4048,"y":83.84123,"z":82.47812},"xAxis":{"x":-0.8178485,"y":-0.5713534,"z":-0.06840438},"yAxis":{"x":0.5586339,"y":-0.8168561,"z":0.14378566}},"center":{"x":3.3603892,"y":37.243458},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":121.1407,"y":73.65382,"z":12.524211},"xAxis":{"x":-0.40782055,"y":-0.9124516,"z":-0.03338371},"yAxis":{"x":0.9130448,"y":-0.40731534,"z":-0.021055596}},"center":{"x":-3.030967,"y":0.93696856},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":129.71997,"y":98.31219,"z":12.524211},"xAxis":{"x":0.30971187,"y":0.95024425,"z":-0.03338371},"yAxis":{"x":-0.9507811,"y":0.30914712,"z":-0.021055594}},"center":{"x":3.1688933,"y":2.6894908},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":119.63859,"y":74.05339,"z":20.411057},"xAxis":{"x":-0.81765306,"y":0.5744697,"z":0.037790537},"yAxis":{"x":-0.57521784,"y":-0.8179075,"z":-0.012319458}},"center":{"x":-3.030967,"y":4.896969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":131.52766,"y":98.15031,"z":20.416151},"xAxis":{"x":0.4861147,"y":0.8738082,"z":-0.012319462},"yAxis":{"x":-0.8734765,"y":0.4853974,"z":-0.037790537}},"center":{"x":3.1688933,"y":6.6494904},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":129.97806,"y":86.65058,"z":91.51495},"xAxis":{"x":0.76347613,"y":-0.61710376,"z":0.19049169},"yAxis":{"x":0.62476766,"y":0.7804349,"z":0.0242221}},"center":{"x":3.1688933,"y":42.289486},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.16579,"y":74.744064,"z":28.331043},"xAxis":{"x":-0.6917086,"y":0.720432,"z":0.050169136},"yAxis":{"x":-0.7208898,"y":-0.6929533,"z":0.011560326}},"center":{"x":-3.030967,"y":8.856968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":133.0745,"y":97.564705,"z":28.34339},"xAxis":{"x":0.644107,"y":0.76484805,"z":0.011560322},"yAxis":{"x":-0.7635622,"y":0.64378244,"z":-0.050169136}},"center":{"x":3.1688933,"y":10.60949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.780876,"y":75.82327,"z":36.29377},"xAxis":{"x":-0.8393659,"y":-0.54228145,"z":0.037358854},"yAxis":{"x":0.53994143,"y":-0.8397207,"z":-0.05772652}},"center":{"x":-3.030967,"y":12.816968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":134.28358,"y":96.61273,"z":36.29377},"xAxis":{"x":0.7777555,"y":0.6274557,"z":0.03735885},"yAxis":{"x":-0.6251659,"y":0.7783542,"z":-0.057726525}},"center":{"x":3.1688933,"y":14.56949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":116.36806,"y":77.03715,"z":44.229412},"xAxis":{"x":-0.36805087,"y":0.92785615,"z":0.06017888},"yAxis":{"x":-0.92619675,"y":-0.37155053,"z":0.06410728}},"center":{"x":-3.030967,"y":16.77697},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":135.09073,"y":95.365486,"z":44.25427},"xAxis":{"x":0.8820411,"y":0.46679094,"z":0.06410728},"yAxis":{"x":-0.46348497,"y":0.88405895,"z":-0.06017888}},"center":{"x":3.1688933,"y":18.529491},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":116.14057,"y":78.4792,"z":52.181835},"xAxis":{"x":-0.18249232,"y":0.98152834,"z":0.05743411},"yAxis":{"x":-0.9781215,"y":-0.18717213,"z":0.09080107}},"center":{"x":-3.030967,"y":20.736969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":135.44687,"y":93.90515,"z":52.211483},"xAxis":{"x":0.95304734,"y":0.28888735,"z":0.09080107},"yAxis":{"x":-0.28459132,"y":0.9569269,"z":-0.05743411}},"center":{"x":3.1688933,"y":22.489492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.2011,"y":80.19919,"z":60.152134},"xAxis":{"x":-0.9931902,"y":0.0039294795,"z":0.116437756},"yAxis":{"x":-0.009765724,"y":-0.99872166,"z":-0.049595293}},"center":{"x":-3.030967,"y":24.696968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":135.31982,"y":92.32193,"z":60.152134},"xAxis":{"x":0.98810774,"y":0.10042604,"z":0.116437756},"yAxis":{"x":-0.09520316,"y":0.9942216,"z":-0.049595296}},"center":{"x":3.1688933,"y":26.449492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":116.99114,"y":81.73601,"z":68.06357},"xAxis":{"x":-0.9708369,"y":0.1945776,"z":0.14005458},"yAxis":{"x":-0.20150313,"y":-0.9787904,"z":-0.036956817}},"center":{"x":-3.030967,"y":28.656967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":134.6956,"y":90.710625,"z":68.06357},"xAxis":{"x":0.98590547,"y":-0.09151544,"z":0.14005458},"yAxis":{"x":0.097567126,"y":0.99454254,"z":-0.03695682}},"center":{"x":3.1688933,"y":30.40949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":118.369125,"y":82.89366,"z":75.89806},"xAxis":{"x":0.38551927,"y":0.92248315,"z":0.019993303},"yAxis":{"x":-0.91190106,"y":0.37761253,"z":0.16076462}},"center":{"x":-3.030967,"y":32.616966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":133.57886,"y":89.16709,"z":75.93421},"xAxis":{"x":0.94652337,"y":-0.27972883,"z":0.16076462},"yAxis":{"x":0.2864802,"y":0.9578775,"z":-0.019993309}},"center":{"x":3.1688933,"y":34.369488},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":131.99275,"y":87.78465,"z":83.75404},"xAxis":{"x":0.87144035,"y":-0.45714587,"z":0.17779012},"yAxis":{"x":0.46444145,"y":0.8856036,"z":0.0006581861}},"center":{"x":3.1688933,"y":38.329487},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":126.261986,"y":74.34928,"z":12.790135},"xAxis":{"x":-0.78551275,"y":-0.6184651,"z":-0.021692501},"yAxis":{"x":0.6184228,"y":-0.7857892,"z":0.0094140945}},"center":{"x":-1.979669,"y":0.4242164},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":124.70007,"y":97.08259,"z":12.790135},"xAxis":{"x":0.7161973,"y":0.6975606,"z":-0.021692503},"yAxis":{"x":-0.69754755,"y":0.7164767,"z":0.009414094}},"center":{"x":2.2107508,"y":3.3603892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":124.79432,"y":73.624016,"z":20.551039},"xAxis":{"x":-0.45708954,"y":0.88940984,"z":-0.0043951427},"yAxis":{"x":-0.88941795,"y":-0.4570703,"z":0.0047367285}},"center":{"x":-1.979669,"y":4.3842163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":126.360344,"y":97.90032,"z":20.551107},"xAxis":{"x":0.836482,"y":0.54797393,"z":0.004736725},"yAxis":{"x":-0.54799217,"y":0.8364719,"z":0.0043951413}},"center":{"x":2.2107508,"y":7.3203893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":130.58942,"y":91.78723,"z":91.36311},"xAxis":{"x":0.3858726,"y":-0.90935045,"z":0.15551233},"yAxis":{"x":0.9001009,"y":0.40805653,"z":0.15267028}},"center":{"x":2.2107508,"y":42.960384},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":123.146614,"y":73.33824,"z":28.353231},"xAxis":{"x":-0.2788684,"y":0.9603187,"z":-0.004514308},"yAxis":{"x":-0.9598877,"y":-0.27859452,"z":0.03163481}},"center":{"x":-1.979669,"y":8.344215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":127.95271,"y":98.30574,"z":28.358656},"xAxis":{"x":0.9253105,"y":0.37788847,"z":0.031634808},"yAxis":{"x":-0.3782061,"y":0.9257104,"z":0.0045143054}},"center":{"x":2.2107508,"y":11.28039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":121.45957,"y":73.613304,"z":36.20512},"xAxis":{"x":-0.99427545,"y":-0.08974037,"z":0.057991605},"yAxis":{"x":0.090452425,"y":-0.9958529,"z":0.009767116}},"center":{"x":-1.979669,"y":12.304215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":129.39862,"y":98.318985,"z":36.20512},"xAxis":{"x":0.979347,"y":0.19369164,"z":0.057991605},"yAxis":{"x":-0.19456546,"y":0.9808409,"z":0.009767112}},"center":{"x":2.2107508,"y":15.24039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":120.454185,"y":73.86489,"z":44.06881},"xAxis":{"x":0.10108256,"y":0.99467784,"z":-0.019956298},"yAxis":{"x":-0.99128985,"y":0.10239983,"z":0.08281729}},"center":{"x":-1.979669,"y":16.264217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":130.62497,"y":97.97491,"z":44.08138},"xAxis":{"x":0.99656206,"y":0.0023008995,"z":0.08281729},"yAxis":{"x":-0.003966787,"y":0.999793,"z":0.019956296}},"center":{"x":2.2107508,"y":19.20039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":119.408005,"y":74.83278,"z":51.977196},"xAxis":{"x":-0.951043,"y":0.2906104,"z":0.10517957},"yAxis":{"x":-0.28854358,"y":-0.9568378,"z":0.03469921}},"center":{"x":-1.979669,"y":20.224218},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":131.56694,"y":97.32176,"z":51.977196},"xAxis":{"x":0.9763093,"y":-0.18909618,"z":0.10517957},"yAxis":{"x":0.18643208,"y":0.9818549,"z":0.034699205}},"center":{"x":2.2107508,"y":23.16039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":118.90271,"y":75.79349,"z":59.881596},"xAxis":{"x":-0.87504643,"y":0.46782312,"z":0.12423862},"yAxis":{"x":-0.4648906,"y":-0.8837537,"z":0.05344218}},"center":{"x":-1.979669,"y":24.184217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":132.17035,"y":96.41945,"z":59.881596},"xAxis":{"x":0.91934925,"y":-0.3733118,"z":0.12423862},"yAxis":{"x":0.3694808,"y":0.92770034,"z":0.05344218}},"center":{"x":2.2107508,"y":27.12039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":118.79419,"y":76.893234,"z":67.78328},"xAxis":{"x":-0.76615405,"y":0.62738293,"z":0.1392787},"yAxis":{"x":-0.623501,"y":-0.77817035,"z":0.07548134}},"center":{"x":-1.979669,"y":28.144217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":132.3938,"y":95.3372,"z":67.78328},"xAxis":{"x":0.827821,"y":-0.5434278,"z":0.1392787},"yAxis":{"x":0.5383051,"y":0.839363,"z":0.07548133}},"center":{"x":2.2107508,"y":31.080389},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":119.0755,"y":77.7721,"z":75.66111},"xAxis":{"x":0.7584183,"y":0.6440527,"z":-0.09998901},"yAxis":{"x":-0.62845534,"y":0.7632977,"z":0.14973499}},"center":{"x":-1.979669,"y":32.104214},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":132.21008,"y":94.150986,"z":75.67106},"xAxis":{"x":0.70516187,"y":-0.6930557,"z":0.14973499},"yAxis":{"x":0.68656486,"y":0.7201603,"z":0.099989004}},"center":{"x":2.2107508,"y":35.040386},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":131.60733,"y":92.940735,"z":83.53425},"xAxis":{"x":0.55597824,"y":-0.8165761,"z":0.15521479},"yAxis":{"x":0.8086923,"y":0.574569,"z":0.12604482}},"center":{"x":2.2107508,"y":39.000385},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":123.12067,"y":80.470474,"z":10.85},"xAxis":{"x":0.78841937,"y":-0.6151381,"z":0.0},"yAxis":{"x":0.614087,"y":0.7870721,"z":0.05843533}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":128.46704,"y":91.32526,"z":10.85},"xAxis":{"x":-0.8486768,"y":0.5289118,"z":-8.6736174E-19},"yAxis":{"x":-0.528008,"y":-0.84722656,"z":0.05843533}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.560905,"y":80.30429,"z":18.610735},"xAxis":{"x":0.65623444,"y":-0.7544741,"z":-0.011190038},"yAxis":{"x":0.75433487,"y":0.65560913,"z":0.033993497}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.00626,"y":91.549324,"z":18.610735},"xAxis":{"x":-0.73186034,"y":0.68136275,"z":-0.011190038},"yAxis":{"x":-0.68129,"y":-0.7312239,"z":0.0339935}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":124.38779,"y":90.03036,"z":88.27212},"xAxis":{"x":0.78467274,"y":0.6122576,"z":0.09710498},"yAxis":{"x":-0.5968413,"y":0.7884812,"z":-0.14858644}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.18013,"y":80.30727,"z":26.384085},"xAxis":{"x":0.49963906,"y":-0.86605704,"z":-0.017492516},"yAxis":{"x":0.8662315,"y":0.49958128,"z":0.007843333}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.38524,"y":91.586365,"z":26.384085},"xAxis":{"x":-0.58785313,"y":0.8087785,"z":-0.017492518},"yAxis":{"x":-0.8089581,"y":-0.587814,"z":0.007843337}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.00761,"y":80.442154,"z":34.163673},"xAxis":{"x":0.32451412,"y":-0.9456966,"z":-0.018670749},"yAxis":{"x":0.9455747,"y":0.32484806,"z":-0.019033112}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.57098,"y":91.470345,"z":34.163673},"xAxis":{"x":-0.4220632,"y":0.9063741,"z":-0.01867075},"yAxis":{"x":-0.9062178,"y":-0.4223825,"z":-0.019033108}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.06477,"y":80.66676,"z":41.94289},"xAxis":{"x":0.1374363,"y":-0.9904018,"z":-0.014680488},"yAxis":{"x":0.9893847,"y":0.13797148,"z":-0.045626506}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.53772,"y":91.240974,"z":41.94289},"xAxis":{"x":-0.24071674,"y":0.9704844,"z":-0.014680491},"yAxis":{"x":-0.9694167,"y":-0.24114211,"z":-0.045626506}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.364456,"y":80.93553,"z":49.71514},"xAxis":{"x":-0.054568768,"y":-0.9984939,"z":-0.0056715864},"yAxis":{"x":0.9960163,"y":-0.054030426,"z":-0.070938155}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":129.26793,"y":90.94221,"z":49.71514},"xAxis":{"x":-0.0506241,"y":0.9987017,"z":-0.0056715887},"yAxis":{"x":-0.99618125,"y":-0.050899193,"z":-0.070938155}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":122.910355,"y":81.20124,"z":57.474094},"xAxis":{"x":-0.24429044,"y":-0.969669,"z":0.008017633},"yAxis":{"x":0.96522045,"y":-0.2439471,"z":-0.09401748}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":128.75296,"y":90.62062,"z":57.474094},"xAxis":{"x":0.1410759,"y":0.98996633,"z":0.00801763},"yAxis":{"x":-0.98550636,"y":0.14120176,"z":-0.09401748}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":123.69693,"y":81.41679,"z":65.21391},"xAxis":{"x":-0.42460385,"y":-0.9050095,"z":0.025873078},"yAxis":{"x":0.89815366,"y":-0.42464635,"z":-0.11399777}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":127.99338,"y":90.32364,"z":65.21391},"xAxis":{"x":0.32718405,"y":0.94460636,"z":0.025873074},"yAxis":{"x":-0.93779296,"y":0.3279465,"z":-0.11399777}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":124.70961,"y":81.53694,"z":72.92948},"xAxis":{"x":-0.58873737,"y":-0.8069437,"z":0.047224198},"yAxis":{"x":0.79733455,"y":-0.5893421,"z":-0.13012867}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":126.998924,"y":90.09776,"z":72.92948},"xAxis":{"x":0.5007112,"y":0.8643253,"z":0.047224194},"yAxis":{"x":-0.8548328,"y":0.50232196,"z":-0.13012867}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":125.78816,"y":89.98683,"z":80.61659},"xAxis":{"x":0.6551406,"y":0.75213796,"z":0.07126916},"yAxis":{"x":-0.73974156,"y":0.6577796,"z":-0.14180438}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":54.725,"y":92.125,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":38.533546,"y":84.83929,"z":13.2},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":38.56624,"y":86.276855,"z":21.45},"xAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0},"yAxis":{"x":0.06905935,"y":0.99761254,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":38.673374,"y":87.7108,"z":29.7},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":35.59278,"y":81.08525,"z":39.583332},"xAxis":{"x":0.9879331,"y":-0.1548813,"z":0.0},"yAxis":{"x":0.1548813,"y":0.9879331,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":47.010635,"y":87.1004,"z":34.083332},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.325684,"y":89.34912,"z":7.7},"xAxis":{"x":0.99985075,"y":0.017277729,"z":0.0},"yAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":37.36431,"y":79.500885,"z":7.7},"xAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0},"yAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.40521,"y":89.71046,"z":10.45},"xAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0},"yAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":37.284786,"y":79.13955,"z":10.45},"xAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0},"yAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":36.292133,"y":75.964645,"z":35.2},"xAxis":{"x":-0.9879331,"y":0.1548813,"z":0.0},"yAxis":{"x":-0.1548813,"y":-0.9879331,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.490963,"y":90.07036,"z":13.2},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":37.19903,"y":78.77965,"z":13.2},"xAxis":{"x":-0.99985075,"y":0.01727773,"z":0.0},"yAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.582924,"y":90.42873,"z":15.95},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":37.10707,"y":78.42128,"z":15.95},"xAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0},"yAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.68106,"y":90.785446,"z":18.7},"xAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0},"yAxis":{"x":0.05181256,"y":0.9986568,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":37.008934,"y":78.06456,"z":18.7},"xAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0},"yAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.785347,"y":91.14043,"z":21.45},"xAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0},"yAxis":{"x":0.06905935,"y":0.99761254,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":36.904648,"y":77.70958,"z":21.45},"xAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0},"yAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":45.895756,"y":91.49354,"z":24.2},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":36.79424,"y":77.35647,"z":24.2},"xAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0},"yAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":46.01224,"y":91.844696,"z":26.95},"xAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0},"yAxis":{"x":0.103485934,"y":0.99463093,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":36.677753,"y":77.00531,"z":26.95},"xAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0},"yAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":46.13478,"y":92.19379,"z":29.7},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":36.555214,"y":76.65622,"z":29.7},"xAxis":{"x":-0.99269444,"y":0.12065545,"z":0.0},"yAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":36.42666,"y":76.309296,"z":32.45},"xAxis":{"x":-0.9904616,"y":0.13778894,"z":0.0},"yAxis":{"x":-0.13778894,"y":-0.9904616,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.705654,"y":86.63695,"z":7.7},"xAxis":{"x":0.99985075,"y":0.017277729,"z":0.0},"yAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.98434,"y":82.21306,"z":7.7},"xAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0},"yAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.73871,"y":87.04395,"z":10.45},"xAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0},"yAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.951286,"y":81.80605,"z":10.45},"xAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0},"yAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.339447,"y":78.185974,"z":35.2},"xAxis":{"x":-0.9879331,"y":0.1548813,"z":0.0},"yAxis":{"x":-0.1548813,"y":-0.9879331,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.778793,"y":87.450325,"z":13.2},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.825886,"y":87.85595,"z":15.95},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.86411,"y":80.99406,"z":15.95},"xAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0},"yAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.879986,"y":88.26069,"z":18.7},"xAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0},"yAxis":{"x":0.05181256,"y":0.9986568,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.81001,"y":80.58932,"z":18.7},"xAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0},"yAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":42.941067,"y":88.66444,"z":21.45},"xAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0},"yAxis":{"x":0.06905935,"y":0.99761254,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":43.00912,"y":89.06706,"z":24.2},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.680874,"y":79.78294,"z":24.2},"xAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0},"yAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":43.084114,"y":89.46846,"z":26.95},"xAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0},"yAxis":{"x":0.103485934,"y":0.99463093,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.60588,"y":79.381546,"z":26.95},"xAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0},"yAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":43.166035,"y":89.8685,"z":29.7},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":39.43514,"y":78.58295,"z":32.45},"xAxis":{"x":-0.9904616,"y":0.13778894,"z":0.0},"yAxis":{"x":-0.13778894,"y":-0.9904616,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":42.78458,"y":82.06963,"z":7.7},"xAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0},"yAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":39.905415,"y":86.78037,"z":7.7},"xAxis":{"x":0.99985075,"y":0.017277729,"z":0.0},"yAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":42.73871,"y":82.47596,"z":10.45},"xAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0},"yAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":39.951286,"y":86.37405,"z":10.45},"xAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0},"yAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.046947,"y":82.69885,"z":35.2},"xAxis":{"x":0.9879331,"y":-0.1548813,"z":0.0},"yAxis":{"x":0.1548813,"y":0.9879331,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":39.990128,"y":85.966995,"z":13.2},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":42.66806,"y":83.29067,"z":15.95},"xAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0},"yAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.021935,"y":85.55933,"z":15.95},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":42.643307,"y":83.69882,"z":18.7},"xAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0},"yAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.046688,"y":85.151184,"z":18.7},"xAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0},"yAxis":{"x":0.05181256,"y":0.9986568,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.06439,"y":84.74266,"z":21.45},"xAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0},"yAxis":{"x":0.06905935,"y":0.99761254,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":42.614967,"y":84.516106,"z":24.2},"xAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0},"yAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.075027,"y":84.3339,"z":24.2},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":42.61139,"y":84.92499,"z":26.95},"xAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0},"yAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.078606,"y":83.92502,"z":26.95},"xAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0},"yAxis":{"x":0.103485934,"y":0.99463093,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.075115,"y":83.516136,"z":29.7},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":40.06456,"y":83.107376,"z":32.45},"xAxis":{"x":0.9904616,"y":-0.13778894,"z":0.0},"yAxis":{"x":0.13778894,"y":0.9904616,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.49675,"y":79.4496,"z":7.7},"xAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0},"yAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.193245,"y":89.400406,"z":7.7},"xAxis":{"x":0.99985075,"y":0.017277729,"z":0.0},"yAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.40521,"y":79.809456,"z":10.45},"xAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0},"yAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.284786,"y":89.04055,"z":10.45},"xAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0},"yAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.825615,"y":85.74617,"z":35.2},"xAxis":{"x":0.9879331,"y":-0.1548813,"z":0.0},"yAxis":{"x":0.1548813,"y":0.9879331,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.319897,"y":80.17084,"z":13.2},"xAxis":{"x":-0.99985075,"y":0.01727773,"z":0.0},"yAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.3701,"y":88.67917,"z":13.2},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.24084,"y":80.53364,"z":15.95},"xAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0},"yAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.449154,"y":88.31637,"z":15.95},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.168064,"y":80.89775,"z":18.7},"xAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0},"yAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.52193,"y":87.952255,"z":18.7},"xAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0},"yAxis":{"x":0.05181256,"y":0.9986568,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.101593,"y":81.26306,"z":21.45},"xAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0},"yAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.5884,"y":87.586945,"z":21.45},"xAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0},"yAxis":{"x":0.06905935,"y":0.99761254,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":45.041443,"y":81.62947,"z":24.2},"xAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0},"yAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.648552,"y":87.220535,"z":24.2},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":44.98763,"y":81.99686,"z":26.95},"xAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0},"yAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.702366,"y":86.85315,"z":26.95},"xAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0},"yAxis":{"x":0.103485934,"y":0.99463093,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":44.94017,"y":82.36512,"z":29.7},"xAxis":{"x":-0.99269444,"y":0.12065545,"z":0.0},"yAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.749825,"y":86.484886,"z":29.7},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":37.79091,"y":86.11585,"z":32.45},"xAxis":{"x":0.9904616,"y":-0.13778894,"z":0.0},"yAxis":{"x":0.13778894,"y":0.9904616,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.250366,"y":80.31458,"z":8.616667},"xAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":0.017277729,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":33.43963,"y":88.53542,"z":8.616667},"xAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0},"yAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.17321,"y":80.60946,"z":11.366667},"xAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":34.316784,"y":89.04055,"z":11.366667},"xAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0},"yAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":34.89343,"y":86.20586,"z":36.116665},"xAxis":{"x":0.9879331,"y":-0.1548813,"z":0.0},"yAxis":{"x":0.1548813,"y":0.9879331,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.10116,"y":80.90561,"z":14.116667},"xAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":34.40254,"y":88.73045,"z":14.116667},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":49.034233,"y":81.20297,"z":16.866667},"xAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0},"yAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":34.482925,"y":88.418915,"z":16.866667},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.972454,"y":81.50144,"z":19.616667},"xAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0},"yAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":33.71754,"y":87.348564,"z":19.616667},"xAxis":{"x":0.05181256,"y":0.9986568,"z":0.0},"yAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.915844,"y":81.800934,"z":22.366667},"xAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0},"yAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":33.77415,"y":87.04907,"z":22.366667},"xAxis":{"x":0.06905935,"y":0.99761254,"z":0.0},"yAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":48.864418,"y":82.10136,"z":25.116667},"xAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0},"yAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":34.691624,"y":87.47663,"z":25.116667},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":48.818188,"y":82.402626,"z":27.866667},"xAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0},"yAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":33.871807,"y":86.44738,"z":27.866667},"xAxis":{"x":0.103485934,"y":0.99463093,"z":0.0},"yAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":48.77717,"y":82.70465,"z":30.616667},"xAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0},"yAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":34.803505,"y":86.84299,"z":30.616667},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":33.948616,"y":85.842674,"z":33.366665},"xAxis":{"x":0.13778894,"y":0.9904616,"z":0.0},"yAxis":{"x":-0.9904616,"y":0.13778894,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.8704,"y":83.02676,"z":8.616667},"xAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":0.017277729,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":30.819597,"y":85.82325,"z":8.616667},"xAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0},"yAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.83971,"y":83.275955,"z":11.366667},"xAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":31.650286,"y":86.37405,"z":11.366667},"xAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0},"yAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":30.931862,"y":83.318085,"z":36.116665},"xAxis":{"x":0.1548813,"y":0.9879331,"z":0.0},"yAxis":{"x":-0.9879331,"y":0.1548813,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.81333,"y":83.52564,"z":14.116667},"xAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":31.690367,"y":86.11042,"z":14.116667},"xAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0},"yAxis":{"x":0.01727773,"y":0.99985075,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.791267,"y":83.77576,"z":16.866667},"xAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0},"yAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":31.72589,"y":85.84614,"z":16.866667},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.773533,"y":84.02621,"z":19.616667},"xAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0},"yAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":30.916464,"y":84.8238,"z":19.616667},"xAxis":{"x":0.05181256,"y":0.9986568,"z":0.0},"yAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.760124,"y":84.276924,"z":22.366667},"xAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0},"yAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":30.92987,"y":84.57308,"z":22.366667},"xAxis":{"x":0.06905935,"y":0.99761254,"z":0.0},"yAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.751053,"y":84.52783,"z":25.116667},"xAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0},"yAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":31.804987,"y":85.050156,"z":25.116667},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.746315,"y":84.77886,"z":27.866667},"xAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0},"yAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":30.94368,"y":84.071144,"z":27.866667},"xAxis":{"x":0.103485934,"y":0.99463093,"z":0.0},"yAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":51.74592,"y":85.02994,"z":30.616667},"xAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0},"yAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":31.834759,"y":84.5177,"z":30.616667},"xAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0},"yAxis":{"x":0.12065545,"y":0.99269444,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":30.940138,"y":83.56902,"z":33.366665},"xAxis":{"x":0.13778894,"y":0.9904616,"z":0.0},"yAxis":{"x":-0.9904616,"y":0.13778894,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":51.005413,"y":86.78037,"z":9.533333},"xAxis":{"x":0.99985075,"y":0.017277729,"z":0.0},"yAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.68458,"y":82.06963,"z":9.533333},"xAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0},"yAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":51.83971,"y":86.24396,"z":12.283333},"xAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.650286,"y":81.80605,"z":12.283333},"xAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0},"yAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.138617,"y":79.47165,"z":37.033333},"xAxis":{"x":-0.9879331,"y":0.1548813,"z":0.0},"yAxis":{"x":-0.1548813,"y":-0.9879331,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":51.864613,"y":86.4932,"z":15.033333},"xAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.611443,"y":81.543106,"z":15.033333},"xAxis":{"x":-0.99985075,"y":0.01727773,"z":0.0},"yAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":51.121933,"y":87.569145,"z":17.783333},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.568064,"y":81.28086,"z":17.783333},"xAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0},"yAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":51.92731,"y":86.99022,"z":20.533333},"xAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0},"yAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.520159,"y":81.01941,"z":20.533333},"xAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0},"yAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":51.96509,"y":87.23784,"z":23.283333},"xAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0},"yAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.467745,"y":80.758835,"z":23.283333},"xAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0},"yAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":51.27916,"y":88.35081,"z":26.033333},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.410835,"y":80.4992,"z":26.033333},"xAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0},"yAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":51.340546,"y":88.60942,"z":28.783333},"xAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0},"yAxis":{"x":0.103485934,"y":0.99463093,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.34945,"y":80.240585,"z":28.783333},"xAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0},"yAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":52.104023,"y":87.97626,"z":31.533333},"xAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0},"yAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.283604,"y":79.98307,"z":31.533333},"xAxis":{"x":-0.99269444,"y":0.12065545,"z":0.0},"yAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":31.213318,"y":79.72673,"z":34.283333},"xAxis":{"x":-0.9904616,"y":0.13778894,"z":0.0},"yAxis":{"x":-0.13778894,"y":-0.9904616,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":48.293243,"y":89.400406,"z":9.533333},"xAxis":{"x":0.99985075,"y":0.017277729,"z":0.0},"yAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":34.39675,"y":79.4496,"z":9.533333},"xAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0},"yAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":49.17321,"y":88.91045,"z":12.283333},"xAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":34.316784,"y":79.13955,"z":12.283333},"xAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0},"yAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":33.359947,"y":76.42433,"z":37.033333},"xAxis":{"x":-0.9879331,"y":0.1548813,"z":0.0},"yAxis":{"x":-0.1548813,"y":-0.9879331,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":49.24458,"y":89.205376,"z":15.033333},"xAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":34.231472,"y":78.83093,"z":15.033333},"xAxis":{"x":-0.99985075,"y":0.01727773,"z":0.0},"yAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":48.549152,"y":90.32618,"z":17.783333},"xAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0},"yAxis":{"x":0.0345503,"y":0.99940294,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":34.140842,"y":78.52383,"z":17.783333},"xAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0},"yAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":49.40255,"y":89.7913,"z":20.533333},"xAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0},"yAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":34.044918,"y":78.21834,"z":20.533333},"xAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0},"yAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":48.74626,"y":90.935455,"z":23.283333},"xAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0},"yAxis":{"x":0.06905935,"y":0.99761254,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":33.943733,"y":77.91455,"z":23.283333},"xAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0},"yAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":48.852684,"y":91.23744,"z":26.033333},"xAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0},"yAxis":{"x":0.086285524,"y":0.9962705,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":33.83731,"y":77.612564,"z":26.033333},"xAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0},"yAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":48.964306,"y":91.53755,"z":28.783333},"xAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0},"yAxis":{"x":0.103485934,"y":0.99463093,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":33.72569,"y":77.312454,"z":28.783333},"xAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0},"yAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":49.77873,"y":90.94501,"z":31.533333},"xAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0},"yAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":33.608894,"y":77.01432,"z":31.533333},"xAxis":{"x":-0.99269444,"y":0.12065545,"z":0.0},"yAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":33.48697,"y":76.718254,"z":34.283333},"xAxis":{"x":-0.9904616,"y":0.13778894,"z":0.0},"yAxis":{"x":-0.13778894,"y":-0.9904616,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":46.894997,"y":84.425,"z":7.5},"xAxis":{"x":-0.017277729,"y":0.99985075,"z":0.0},"yAxis":{"x":-0.99985075,"y":-0.017277729,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":35.795,"y":84.425,"z":7.5},"xAxis":{"x":0.017277729,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":0.017277729,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.88921,"y":84.75996,"z":10.25},"xAxis":{"x":1.0103646E-09,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":1.0103646E-09,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.800785,"y":84.09005,"z":10.25},"xAxis":{"x":-1.0103646E-09,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":-1.0103646E-09,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":35.59278,"y":81.08525,"z":35.0},"xAxis":{"x":-0.1548813,"y":-0.9879331,"z":0.0},"yAxis":{"x":0.9879331,"y":-0.1548813,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.88921,"y":85.094955,"z":13.0},"xAxis":{"x":0.01727773,"y":0.99985075,"z":0.0},"yAxis":{"x":-0.99985075,"y":0.01727773,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.800785,"y":83.75505,"z":13.0},"xAxis":{"x":-0.01727773,"y":-0.99985075,"z":0.0},"yAxis":{"x":0.99985075,"y":-0.01727773,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.894997,"y":85.42991,"z":15.75},"xAxis":{"x":0.0345503,"y":0.99940294,"z":0.0},"yAxis":{"x":-0.99940294,"y":0.0345503,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.795,"y":83.4201,"z":15.75},"xAxis":{"x":-0.0345503,"y":-0.99940294,"z":0.0},"yAxis":{"x":0.99940294,"y":-0.0345503,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.90657,"y":85.76471,"z":18.5},"xAxis":{"x":0.05181256,"y":0.9986568,"z":0.0},"yAxis":{"x":-0.9986568,"y":0.05181256,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.783424,"y":83.0853,"z":18.5},"xAxis":{"x":-0.05181256,"y":-0.9986568,"z":0.0},"yAxis":{"x":0.9986568,"y":-0.05181256,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.923927,"y":86.09926,"z":21.25},"xAxis":{"x":0.06905935,"y":0.99761254,"z":0.0},"yAxis":{"x":-0.99761254,"y":0.06905935,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.766068,"y":82.75075,"z":21.25},"xAxis":{"x":-0.06905935,"y":-0.99761254,"z":0.0},"yAxis":{"x":0.99761254,"y":-0.06905935,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.947063,"y":86.43346,"z":24.0},"xAxis":{"x":0.086285524,"y":0.9962705,"z":0.0},"yAxis":{"x":-0.9962705,"y":0.086285524,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.74293,"y":82.41655,"z":24.0},"xAxis":{"x":-0.086285524,"y":-0.9962705,"z":0.0},"yAxis":{"x":0.9962705,"y":-0.086285524,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":46.975967,"y":86.767204,"z":26.75},"xAxis":{"x":0.103485934,"y":0.99463093,"z":0.0},"yAxis":{"x":-0.99463093,"y":0.103485934,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.714027,"y":82.0828,"z":26.75},"xAxis":{"x":-0.103485934,"y":-0.99463093,"z":0.0},"yAxis":{"x":0.99463093,"y":-0.103485934,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":47.010635,"y":87.1004,"z":29.5},"xAxis":{"x":0.12065545,"y":0.99269444,"z":0.0},"yAxis":{"x":-0.99269444,"y":0.12065545,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.67936,"y":81.7496,"z":29.5},"xAxis":{"x":-0.12065545,"y":-0.99269444,"z":0.0},"yAxis":{"x":0.99269444,"y":-0.12065545,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":35.63894,"y":81.41705,"z":32.25},"xAxis":{"x":-0.13778894,"y":-0.9904616,"z":0.0},"yAxis":{"x":0.9904616,"y":-0.13778894,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":82.775,"y":45.375,"z":0.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":99.71558,"y":54.06831,"z":13.2},"xAxis":{"x":-0.9788008,"y":-0.20481452,"z":0.0},"yAxis":{"x":0.20481452,"y":-0.9788008,"z":0.0}},"center":{"x":0.018135905,"y":10.147437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":99.7714,"y":52.646675,"z":21.45},"xAxis":{"x":-0.99490076,"y":-0.10085858,"z":0.0},"yAxis":{"x":0.10085858,"y":-0.99490076,"z":0.0}},"center":{"x":0.018135905,"y":22.027437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":99.67757,"y":51.227036,"z":29.7},"xAxis":{"x":-0.9999911,"y":0.004213501,"z":0.0},"yAxis":{"x":-0.004213501,"y":-0.9999911,"z":0.0}},"center":{"x":0.018135905,"y":33.907433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":102.24606,"y":54.704273,"z":39.583332},"xAxis":{"x":-0.95056945,"y":0.310512,"z":0.0},"yAxis":{"x":-0.310512,"y":-0.95056945,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":90.82975,"y":51.76432,"z":34.083332},"xAxis":{"x":-0.96999913,"y":0.2431083,"z":0.0},"yAxis":{"x":-0.2431083,"y":-0.96999913,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":92.291695,"y":50.091877,"z":7.7},"xAxis":{"x":-0.9111254,"y":-0.41212925,"z":0.0},"yAxis":{"x":0.41212925,"y":-0.9111254,"z":0.0}},"center":{"x":-1.4286158,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":100.6983,"y":56.058125,"z":7.7},"xAxis":{"x":0.9111254,"y":0.41212925,"z":0.0},"yAxis":{"x":-0.41212925,"y":0.9111254,"z":0.0}},"center":{"x":1.4286158,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":92.19203,"y":49.88158,"z":10.45},"xAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":-1.4286158,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":100.797966,"y":56.26842,"z":10.45},"xAxis":{"x":0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":1.4286158,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":102.00657,"y":57.968513,"z":35.2},"xAxis":{"x":0.997265,"y":0.07390942,"z":0.0},"yAxis":{"x":-0.07390942,"y":0.997265,"z":0.0}},"center":{"x":1.4286158,"y":42.912548},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":92.085045,"y":49.674908,"z":13.2},"xAxis":{"x":-0.937776,"y":-0.34724078,"z":0.0},"yAxis":{"x":0.34724078,"y":-0.937776,"z":0.0}},"center":{"x":-1.4286158,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":100.90495,"y":56.475094,"z":13.2},"xAxis":{"x":0.937776,"y":0.34724078,"z":0.0},"yAxis":{"x":-0.34724078,"y":0.937776,"z":0.0}},"center":{"x":1.4286158,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.97087,"y":49.472115,"z":15.95},"xAxis":{"x":-0.94937813,"y":-0.3141355,"z":0.0},"yAxis":{"x":0.3141355,"y":-0.94937813,"z":0.0}},"center":{"x":-1.4286158,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.01913,"y":56.677887,"z":15.95},"xAxis":{"x":0.94937813,"y":0.3141355,"z":0.0},"yAxis":{"x":-0.3141355,"y":0.94937813,"z":0.0}},"center":{"x":1.4286158,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.84966,"y":49.273453,"z":18.7},"xAxis":{"x":-0.95981205,"y":-0.28064364,"z":0.0},"yAxis":{"x":0.28064364,"y":-0.95981205,"z":0.0}},"center":{"x":-1.4286158,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.140335,"y":56.87655,"z":18.7},"xAxis":{"x":0.95981205,"y":0.28064364,"z":0.0},"yAxis":{"x":-0.28064364,"y":0.95981205,"z":0.0}},"center":{"x":1.4286158,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.72155,"y":49.079166,"z":21.45},"xAxis":{"x":-0.9690648,"y":-0.24680643,"z":0.0},"yAxis":{"x":0.24680643,"y":-0.9690648,"z":0.0}},"center":{"x":-1.4286158,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.26845,"y":57.070835,"z":21.45},"xAxis":{"x":0.9690648,"y":0.24680643,"z":0.0},"yAxis":{"x":-0.24680643,"y":0.9690648,"z":0.0}},"center":{"x":1.4286158,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.58671,"y":48.88949,"z":24.2},"xAxis":{"x":-0.97712505,"y":-0.2126655,"z":0.0},"yAxis":{"x":0.2126655,"y":-0.97712505,"z":0.0}},"center":{"x":-1.4286158,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.40329,"y":57.260513,"z":24.2},"xAxis":{"x":0.97712505,"y":0.2126655,"z":0.0},"yAxis":{"x":-0.2126655,"y":0.97712505,"z":0.0}},"center":{"x":1.4286158,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.4453,"y":48.70466,"z":26.95},"xAxis":{"x":-0.9839829,"y":-0.17826287,"z":0.0},"yAxis":{"x":0.17826287,"y":-0.9839829,"z":0.0}},"center":{"x":-1.4286158,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.5447,"y":57.445343,"z":26.95},"xAxis":{"x":0.9839829,"y":0.17826287,"z":0.0},"yAxis":{"x":-0.17826287,"y":0.9839829,"z":0.0}},"center":{"x":1.4286158,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.29749,"y":48.524902,"z":29.7},"xAxis":{"x":-0.98962986,"y":-0.14364088,"z":0.0},"yAxis":{"x":0.14364088,"y":-0.98962986,"z":0.0}},"center":{"x":-1.4286158,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.692505,"y":57.6251,"z":29.7},"xAxis":{"x":0.98962986,"y":0.14364088,"z":0.0},"yAxis":{"x":-0.14364088,"y":0.98962986,"z":0.0}},"center":{"x":1.4286158,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":101.84653,"y":57.799564,"z":32.45},"xAxis":{"x":0.994059,"y":0.10884212,"z":0.0},"yAxis":{"x":-0.10884212,"y":0.994059,"z":0.0}},"center":{"x":1.4286158,"y":38.95255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":94.0152,"y":51.94075,"z":7.7},"xAxis":{"x":-0.34724078,"y":-0.937776,"z":0.0},"yAxis":{"x":0.937776,"y":-0.34724078,"z":0.0}},"center":{"x":-0.5593769,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":98.9748,"y":54.20925,"z":7.7},"xAxis":{"x":0.34724078,"y":0.937776,"z":0.0},"yAxis":{"x":-0.937776,"y":0.34724078,"z":0.0}},"center":{"x":0.5593769,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.97932,"y":51.668865,"z":10.45},"xAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":-0.5593769,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.01068,"y":54.481136,"z":10.45},"xAxis":{"x":0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":0.5593769,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.75266,"y":56.82455,"z":35.2},"xAxis":{"x":0.64836895,"y":0.76132625,"z":0.0},"yAxis":{"x":-0.76132625,"y":0.64836895,"z":0.0}},"center":{"x":0.5593769,"y":42.129883},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.933914,"y":51.398403,"z":13.2},"xAxis":{"x":-0.41212925,"y":-0.9111254,"z":0.0},"yAxis":{"x":0.9111254,"y":-0.41212925,"z":0.0}},"center":{"x":-0.5593769,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.87905,"y":51.129704,"z":15.95},"xAxis":{"x":-0.44383258,"y":-0.89610976,"z":0.0},"yAxis":{"x":0.89610976,"y":-0.44383258,"z":0.0}},"center":{"x":-0.5593769,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.11095,"y":55.020298,"z":15.95},"xAxis":{"x":0.44383258,"y":0.89610976,"z":0.0},"yAxis":{"x":-0.89610976,"y":0.44383258,"z":0.0}},"center":{"x":0.5593769,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.814804,"y":50.863094,"z":18.7},"xAxis":{"x":-0.4749897,"y":-0.87999135,"z":0.0},"yAxis":{"x":0.87999135,"y":-0.4749897,"z":0.0}},"center":{"x":-0.5593769,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.17519,"y":55.286907,"z":18.7},"xAxis":{"x":0.4749897,"y":0.87999135,"z":0.0},"yAxis":{"x":-0.87999135,"y":0.4749897,"z":0.0}},"center":{"x":0.5593769,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.74125,"y":50.598904,"z":21.45},"xAxis":{"x":-0.50556237,"y":-0.86279005,"z":0.0},"yAxis":{"x":0.86279005,"y":-0.50556237,"z":0.0}},"center":{"x":-0.5593769,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.65846,"y":50.337452,"z":24.2},"xAxis":{"x":-0.53551286,"y":-0.84452707,"z":0.0},"yAxis":{"x":0.84452707,"y":-0.53551286,"z":0.0}},"center":{"x":-0.5593769,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.331535,"y":55.81255,"z":24.2},"xAxis":{"x":0.53551286,"y":0.84452707,"z":0.0},"yAxis":{"x":-0.84452707,"y":0.53551286,"z":0.0}},"center":{"x":0.5593769,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.56657,"y":50.079063,"z":26.95},"xAxis":{"x":-0.56480443,"y":-0.8252248,"z":0.0},"yAxis":{"x":0.8252248,"y":-0.56480443,"z":0.0}},"center":{"x":-0.5593769,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.42343,"y":56.07094,"z":26.95},"xAxis":{"x":0.56480443,"y":0.8252248,"z":0.0},"yAxis":{"x":-0.8252248,"y":0.56480443,"z":0.0}},"center":{"x":0.5593769,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":93.46566,"y":49.824062,"z":29.7},"xAxis":{"x":-0.5934009,"y":-0.8049071,"z":0.0},"yAxis":{"x":0.8049071,"y":-0.5934009,"z":0.0}},"center":{"x":-0.5593769,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":99.63413,"y":56.577248,"z":32.45},"xAxis":{"x":0.6212672,"y":0.7835988,"z":0.0},"yAxis":{"x":-0.7835988,"y":0.6212672,"z":0.0}},"center":{"x":0.5593769,"y":38.169884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":93.92812,"y":54.4217,"z":7.7},"xAxis":{"x":0.41212925,"y":-0.9111254,"z":0.0},"yAxis":{"x":0.9111254,"y":0.41212925,"z":0.0}},"center":{"x":-0.5016618,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":99.061874,"y":51.728302,"z":7.7},"xAxis":{"x":-0.41212925,"y":0.9111254,"z":0.0},"yAxis":{"x":-0.9111254,"y":-0.41212925,"z":0.0}},"center":{"x":0.5016618,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":93.97932,"y":54.15134,"z":10.45},"xAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":-0.5016618,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":99.01068,"y":51.99866,"z":10.45},"xAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":0.5016618,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.98182,"y":54.464783,"z":35.2},"xAxis":{"x":-0.07390942,"y":0.997265,"z":0.0},"yAxis":{"x":-0.997265,"y":-0.07390942,"z":0.0}},"center":{"x":0.5016618,"y":41.028614},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.96901,"y":52.27065,"z":13.2},"xAxis":{"x":-0.34724078,"y":0.937776,"z":0.0},"yAxis":{"x":-0.937776,"y":-0.34724078,"z":0.0}},"center":{"x":0.5016618,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":94.053085,"y":53.606075,"z":15.95},"xAxis":{"x":0.3141355,"y":-0.94937813,"z":0.0},"yAxis":{"x":0.94937813,"y":0.3141355,"z":0.0}},"center":{"x":-0.5016618,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.93691,"y":52.543926,"z":15.95},"xAxis":{"x":-0.3141355,"y":0.94937813,"z":0.0},"yAxis":{"x":-0.94937813,"y":-0.3141355,"z":0.0}},"center":{"x":0.5016618,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":94.07559,"y":53.331837,"z":18.7},"xAxis":{"x":0.28064364,"y":-0.95981205,"z":0.0},"yAxis":{"x":0.95981205,"y":0.28064364,"z":0.0}},"center":{"x":-0.5016618,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.914406,"y":52.818165,"z":18.7},"xAxis":{"x":-0.28064364,"y":0.95981205,"z":0.0},"yAxis":{"x":-0.95981205,"y":-0.28064364,"z":0.0}},"center":{"x":0.5016618,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.901535,"y":53.09302,"z":21.45},"xAxis":{"x":-0.24680643,"y":0.9690648,"z":0.0},"yAxis":{"x":-0.9690648,"y":-0.24680643,"z":0.0}},"center":{"x":0.5016618,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":94.09168,"y":52.781837,"z":24.2},"xAxis":{"x":0.2126655,"y":-0.97712505,"z":0.0},"yAxis":{"x":0.97712505,"y":0.2126655,"z":0.0}},"center":{"x":-0.5016618,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.898315,"y":53.368164,"z":24.2},"xAxis":{"x":-0.2126655,"y":0.97712505,"z":0.0},"yAxis":{"x":-0.97712505,"y":-0.2126655,"z":0.0}},"center":{"x":0.5016618,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":94.08525,"y":52.506752,"z":26.95},"xAxis":{"x":0.17826287,"y":-0.9839829,"z":0.0},"yAxis":{"x":0.9839829,"y":0.17826287,"z":0.0}},"center":{"x":-0.5016618,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.90475,"y":53.64325,"z":26.95},"xAxis":{"x":-0.17826287,"y":0.9839829,"z":0.0},"yAxis":{"x":-0.9839829,"y":-0.17826287,"z":0.0}},"center":{"x":0.5016618,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.92083,"y":53.91794,"z":29.7},"xAxis":{"x":-0.14364088,"y":0.98962986,"z":0.0},"yAxis":{"x":-0.98962986,"y":-0.14364088,"z":0.0}},"center":{"x":0.5016618,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":98.94653,"y":54.1919,"z":32.45},"xAxis":{"x":-0.10884212,"y":0.994059,"z":0.0},"yAxis":{"x":-0.994059,"y":-0.10884212,"z":0.0}},"center":{"x":0.5016618,"y":37.068615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.079254,"y":56.145195,"z":7.7},"xAxis":{"x":0.937776,"y":-0.34724078,"z":0.0},"yAxis":{"x":0.34724078,"y":0.937776,"z":0.0}},"center":{"x":-1.284328,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.91074,"y":50.004807,"z":7.7},"xAxis":{"x":-0.937776,"y":0.34724078,"z":0.0},"yAxis":{"x":-0.34724078,"y":-0.937776,"z":0.0}},"center":{"x":1.284328,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.19203,"y":55.938625,"z":10.45},"xAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":-1.284328,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.797966,"y":50.211376,"z":10.45},"xAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":1.284328,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.125786,"y":52.210873,"z":35.2},"xAxis":{"x":-0.76132625,"y":0.64836895,"z":0.0},"yAxis":{"x":-0.64836895,"y":-0.76132625,"z":0.0}},"center":{"x":1.284328,"y":40.15937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.297485,"y":55.728226,"z":13.2},"xAxis":{"x":0.9111254,"y":-0.41212925,"z":0.0},"yAxis":{"x":0.41212925,"y":0.9111254,"z":0.0}},"center":{"x":-1.284328,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.69251,"y":50.421776,"z":13.2},"xAxis":{"x":-0.9111254,"y":0.41212925,"z":0.0},"yAxis":{"x":-0.41212925,"y":-0.9111254,"z":0.0}},"center":{"x":1.284328,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.3955,"y":55.51426,"z":15.95},"xAxis":{"x":0.89610976,"y":-0.44383258,"z":0.0},"yAxis":{"x":0.44383258,"y":0.89610976,"z":0.0}},"center":{"x":-1.284328,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.5945,"y":50.635742,"z":15.95},"xAxis":{"x":-0.89610976,"y":0.44383258,"z":0.0},"yAxis":{"x":-0.44383258,"y":-0.89610976,"z":0.0}},"center":{"x":1.284328,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.48595,"y":55.296986,"z":18.7},"xAxis":{"x":0.87999135,"y":-0.4749897,"z":0.0},"yAxis":{"x":0.4749897,"y":0.87999135,"z":0.0}},"center":{"x":-1.284328,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.50405,"y":50.853016,"z":18.7},"xAxis":{"x":-0.87999135,"y":0.4749897,"z":0.0},"yAxis":{"x":-0.4749897,"y":-0.87999135,"z":0.0}},"center":{"x":1.284328,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.568726,"y":55.076675,"z":21.45},"xAxis":{"x":0.86279005,"y":-0.50556237,"z":0.0},"yAxis":{"x":0.50556237,"y":0.86279005,"z":0.0}},"center":{"x":-1.284328,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.42127,"y":51.073326,"z":21.45},"xAxis":{"x":-0.86279005,"y":0.50556237,"z":0.0},"yAxis":{"x":-0.50556237,"y":-0.86279005,"z":0.0}},"center":{"x":1.284328,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.643715,"y":54.853592,"z":24.2},"xAxis":{"x":0.84452707,"y":-0.53551286,"z":0.0},"yAxis":{"x":0.53551286,"y":0.84452707,"z":0.0}},"center":{"x":-1.284328,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.34628,"y":51.29641,"z":24.2},"xAxis":{"x":-0.84452707,"y":0.53551286,"z":0.0},"yAxis":{"x":-0.53551286,"y":-0.84452707,"z":0.0}},"center":{"x":1.284328,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.71084,"y":54.628017,"z":26.95},"xAxis":{"x":0.8252248,"y":-0.56480443,"z":0.0},"yAxis":{"x":0.56480443,"y":0.8252248,"z":0.0}},"center":{"x":-1.284328,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.27916,"y":51.521984,"z":26.95},"xAxis":{"x":-0.8252248,"y":0.56480443,"z":0.0},"yAxis":{"x":-0.56480443,"y":-0.8252248,"z":0.0}},"center":{"x":1.284328,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":92.77001,"y":54.40023,"z":29.7},"xAxis":{"x":0.8049071,"y":-0.5934009,"z":0.0},"yAxis":{"x":0.5934009,"y":0.8049071,"z":0.0}},"center":{"x":-1.284328,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.219986,"y":51.74977,"z":29.7},"xAxis":{"x":-0.8049071,"y":0.5934009,"z":0.0},"yAxis":{"x":-0.5934009,"y":-0.8049071,"z":0.0}},"center":{"x":1.284328,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":100.168846,"y":51.979496,"z":32.45},"xAxis":{"x":-0.7835988,"y":0.6212672,"z":0.0},"yAxis":{"x":-0.6212672,"y":-0.7835988,"z":0.0}},"center":{"x":1.284328,"y":36.19937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":89.598305,"y":56.058125,"z":8.616667},"xAxis":{"x":0.9111254,"y":0.41212925,"z":0.0},"yAxis":{"x":-0.41212925,"y":0.9111254,"z":0.0}},"center":{"x":-2.385598,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":103.39169,"y":50.091877,"z":8.616667},"xAxis":{"x":-0.9111254,"y":-0.41212925,"z":0.0},"yAxis":{"x":0.41212925,"y":-0.9111254,"z":0.0}},"center":{"x":2.385598,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":89.70955,"y":55.938625,"z":11.366667},"xAxis":{"x":0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":-2.385598,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":103.28045,"y":50.211376,"z":11.366667},"xAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":2.385598,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":102.48556,"y":51.440033,"z":36.116665},"xAxis":{"x":-0.997265,"y":-0.07390942,"z":0.0},"yAxis":{"x":0.07390942,"y":-0.997265,"z":0.0}},"center":{"x":2.385598,"y":40.101658},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":89.816536,"y":55.815296,"z":14.116667},"xAxis":{"x":0.937776,"y":0.34724078,"z":0.0},"yAxis":{"x":-0.34724078,"y":0.937776,"z":0.0}},"center":{"x":-2.385598,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":103.17346,"y":50.334705,"z":14.116667},"xAxis":{"x":-0.937776,"y":-0.34724078,"z":0.0},"yAxis":{"x":0.34724078,"y":-0.937776,"z":0.0}},"center":{"x":2.385598,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":89.91913,"y":55.688293,"z":16.866667},"xAxis":{"x":0.94937813,"y":0.3141355,"z":0.0},"yAxis":{"x":-0.3141355,"y":0.94937813,"z":0.0}},"center":{"x":-2.385598,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":103.07087,"y":50.461708,"z":16.866667},"xAxis":{"x":-0.94937813,"y":-0.3141355,"z":0.0},"yAxis":{"x":0.3141355,"y":-0.94937813,"z":0.0}},"center":{"x":2.385598,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":90.017204,"y":55.55777,"z":19.616667},"xAxis":{"x":0.95981205,"y":0.28064364,"z":0.0},"yAxis":{"x":-0.28064364,"y":0.95981205,"z":0.0}},"center":{"x":-2.385598,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":102.97279,"y":50.59223,"z":19.616667},"xAxis":{"x":-0.95981205,"y":-0.28064364,"z":0.0},"yAxis":{"x":0.28064364,"y":-0.95981205,"z":0.0}},"center":{"x":2.385598,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":90.11065,"y":55.423885,"z":22.366667},"xAxis":{"x":0.9690648,"y":0.24680643,"z":0.0},"yAxis":{"x":-0.24680643,"y":0.9690648,"z":0.0}},"center":{"x":-2.385598,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":102.87935,"y":50.726116,"z":22.366667},"xAxis":{"x":-0.9690648,"y":-0.24680643,"z":0.0},"yAxis":{"x":0.24680643,"y":-0.9690648,"z":0.0}},"center":{"x":2.385598,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":90.19933,"y":55.286804,"z":25.116667},"xAxis":{"x":0.97712505,"y":0.2126655,"z":0.0},"yAxis":{"x":-0.2126655,"y":0.97712505,"z":0.0}},"center":{"x":-2.385598,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":102.790665,"y":50.863197,"z":25.116667},"xAxis":{"x":-0.97712505,"y":-0.2126655,"z":0.0},"yAxis":{"x":0.2126655,"y":-0.97712505,"z":0.0}},"center":{"x":2.385598,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":90.28316,"y":55.146698,"z":27.866667},"xAxis":{"x":0.9839829,"y":0.17826287,"z":0.0},"yAxis":{"x":-0.17826287,"y":0.9839829,"z":0.0}},"center":{"x":-2.385598,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":102.70684,"y":51.003304,"z":27.866667},"xAxis":{"x":-0.9839829,"y":-0.17826287,"z":0.0},"yAxis":{"x":0.17826287,"y":-0.9839829,"z":0.0}},"center":{"x":2.385598,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":90.36201,"y":55.00374,"z":30.616667},"xAxis":{"x":0.98962986,"y":0.14364088,"z":0.0},"yAxis":{"x":-0.14364088,"y":0.98962986,"z":0.0}},"center":{"x":-2.385598,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":102.62799,"y":51.146263,"z":30.616667},"xAxis":{"x":-0.98962986,"y":-0.14364088,"z":0.0},"yAxis":{"x":0.14364088,"y":-0.98962986,"z":0.0}},"center":{"x":2.385598,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":102.5542,"y":51.291897,"z":33.366665},"xAxis":{"x":-0.994059,"y":-0.10884212,"z":0.0},"yAxis":{"x":0.10884212,"y":-0.994059,"z":0.0}},"center":{"x":2.385598,"y":36.14166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.8748,"y":54.20925,"z":8.616667},"xAxis":{"x":0.34724078,"y":0.937776,"z":0.0},"yAxis":{"x":-0.937776,"y":0.34724078,"z":0.0}},"center":{"x":-3.2548368,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":105.1152,"y":51.94075,"z":8.616667},"xAxis":{"x":-0.34724078,"y":-0.937776,"z":0.0},"yAxis":{"x":0.937776,"y":-0.34724078,"z":0.0}},"center":{"x":3.2548368,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.922264,"y":54.15134,"z":11.366667},"xAxis":{"x":0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":-3.2548368,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":105.06773,"y":51.99866,"z":11.366667},"xAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":3.2548368,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":104.73946,"y":52.583996,"z":36.116665},"xAxis":{"x":-0.64836895,"y":-0.76132625,"z":0.0},"yAxis":{"x":0.76132625,"y":-0.64836895,"z":0.0}},"center":{"x":3.2548368,"y":40.884323},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":87.96767,"y":54.0918,"z":14.116667},"xAxis":{"x":0.41212925,"y":0.9111254,"z":0.0},"yAxis":{"x":-0.9111254,"y":0.41212925,"z":0.0}},"center":{"x":-3.2548368,"y":10.449885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":105.02233,"y":52.0582,"z":14.116667},"xAxis":{"x":-0.41212925,"y":-0.9111254,"z":0.0},"yAxis":{"x":0.9111254,"y":-0.41212925,"z":0.0}},"center":{"x":3.2548368,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":88.01095,"y":54.030704,"z":16.866667},"xAxis":{"x":0.44383258,"y":0.89610976,"z":0.0},"yAxis":{"x":-0.89610976,"y":0.44383258,"z":0.0}},"center":{"x":-3.2548368,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":104.97905,"y":52.119297,"z":16.866667},"xAxis":{"x":-0.44383258,"y":-0.89610976,"z":0.0},"yAxis":{"x":0.89610976,"y":-0.44383258,"z":0.0}},"center":{"x":3.2548368,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":88.05206,"y":53.96813,"z":19.616667},"xAxis":{"x":0.4749897,"y":0.87999135,"z":0.0},"yAxis":{"x":-0.87999135,"y":0.4749897,"z":0.0}},"center":{"x":-3.2548368,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":104.937935,"y":52.181873,"z":19.616667},"xAxis":{"x":-0.4749897,"y":-0.87999135,"z":0.0},"yAxis":{"x":0.87999135,"y":-0.4749897,"z":0.0}},"center":{"x":3.2548368,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":88.09095,"y":53.90415,"z":22.366667},"xAxis":{"x":0.50556237,"y":0.86279005,"z":0.0},"yAxis":{"x":-0.86279005,"y":0.50556237,"z":0.0}},"center":{"x":-3.2548368,"y":22.329885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":104.89905,"y":52.245853,"z":22.366667},"xAxis":{"x":-0.50556237,"y":-0.86279005,"z":0.0},"yAxis":{"x":0.86279005,"y":-0.50556237,"z":0.0}},"center":{"x":3.2548368,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":88.12758,"y":53.83884,"z":25.116667},"xAxis":{"x":0.53551286,"y":0.84452707,"z":0.0},"yAxis":{"x":-0.84452707,"y":0.53551286,"z":0.0}},"center":{"x":-3.2548368,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":104.86242,"y":52.31116,"z":25.116667},"xAxis":{"x":-0.53551286,"y":-0.84452707,"z":0.0},"yAxis":{"x":0.84452707,"y":-0.53551286,"z":0.0}},"center":{"x":3.2548368,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":88.16189,"y":53.772293,"z":27.866667},"xAxis":{"x":0.56480443,"y":0.8252248,"z":0.0},"yAxis":{"x":-0.8252248,"y":0.56480443,"z":0.0}},"center":{"x":-3.2548368,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":104.82811,"y":52.37771,"z":27.866667},"xAxis":{"x":-0.56480443,"y":-0.8252248,"z":0.0},"yAxis":{"x":0.8252248,"y":-0.56480443,"z":0.0}},"center":{"x":3.2548368,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":88.19384,"y":53.70458,"z":30.616667},"xAxis":{"x":0.5934009,"y":0.8049071,"z":0.0},"yAxis":{"x":-0.8049071,"y":0.5934009,"z":0.0}},"center":{"x":-3.2548368,"y":34.209885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":104.79616,"y":52.445423,"z":30.616667},"xAxis":{"x":-0.5934009,"y":-0.8049071,"z":0.0},"yAxis":{"x":0.8049071,"y":-0.5934009,"z":0.0}},"center":{"x":3.2548368,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":104.766594,"y":52.514214,"z":33.366665},"xAxis":{"x":-0.6212672,"y":-0.7835988,"z":0.0},"yAxis":{"x":0.7835988,"y":-0.6212672,"z":0.0}},"center":{"x":3.2548368,"y":36.924324},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.961876,"y":51.728302,"z":9.533333},"xAxis":{"x":-0.41212925,"y":0.9111254,"z":0.0},"yAxis":{"x":-0.9111254,"y":-0.41212925,"z":0.0}},"center":{"x":-3.312552,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.02812,"y":54.4217,"z":9.533333},"xAxis":{"x":0.41212925,"y":-0.9111254,"z":0.0},"yAxis":{"x":0.9111254,"y":0.41212925,"z":0.0}},"center":{"x":3.312552,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.922264,"y":51.668865,"z":12.283333},"xAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":-3.312552,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.06773,"y":54.481136,"z":12.283333},"xAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":3.312552,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.51031,"y":54.943764,"z":37.033333},"xAxis":{"x":0.07390942,"y":-0.997265,"z":0.0},"yAxis":{"x":0.997265,"y":0.07390942,"z":0.0}},"center":{"x":3.312552,"y":41.98559},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.88059,"y":51.61085,"z":15.033333},"xAxis":{"x":-0.34724078,"y":0.937776,"z":0.0},"yAxis":{"x":-0.937776,"y":-0.34724078,"z":0.0}},"center":{"x":-3.312552,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.109406,"y":54.53915,"z":15.033333},"xAxis":{"x":0.34724078,"y":-0.937776,"z":0.0},"yAxis":{"x":0.937776,"y":0.34724078,"z":0.0}},"center":{"x":3.312552,"y":10.305597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.836914,"y":51.554333,"z":17.783333},"xAxis":{"x":-0.3141355,"y":0.94937813,"z":0.0},"yAxis":{"x":-0.94937813,"y":-0.3141355,"z":0.0}},"center":{"x":-3.312552,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.15308,"y":54.59567,"z":17.783333},"xAxis":{"x":0.3141355,"y":-0.94937813,"z":0.0},"yAxis":{"x":0.94937813,"y":0.3141355,"z":0.0}},"center":{"x":3.312552,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.791275,"y":51.499386,"z":20.533333},"xAxis":{"x":-0.28064364,"y":0.95981205,"z":0.0},"yAxis":{"x":-0.95981205,"y":-0.28064364,"z":0.0}},"center":{"x":-3.312552,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.19872,"y":54.650616,"z":20.533333},"xAxis":{"x":0.28064364,"y":-0.95981205,"z":0.0},"yAxis":{"x":0.95981205,"y":0.28064364,"z":0.0}},"center":{"x":3.312552,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.74374,"y":51.44607,"z":23.283333},"xAxis":{"x":-0.24680643,"y":0.9690648,"z":0.0},"yAxis":{"x":-0.9690648,"y":-0.24680643,"z":0.0}},"center":{"x":-3.312552,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.24626,"y":54.70393,"z":23.283333},"xAxis":{"x":0.24680643,"y":-0.9690648,"z":0.0},"yAxis":{"x":0.9690648,"y":0.24680643,"z":0.0}},"center":{"x":3.312552,"y":22.185598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.69436,"y":51.394455,"z":26.033333},"xAxis":{"x":-0.2126655,"y":0.97712505,"z":0.0},"yAxis":{"x":-0.97712505,"y":-0.2126655,"z":0.0}},"center":{"x":-3.312552,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.29564,"y":54.755547,"z":26.033333},"xAxis":{"x":0.2126655,"y":-0.97712505,"z":0.0},"yAxis":{"x":0.97712505,"y":0.2126655,"z":0.0}},"center":{"x":3.312552,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":87.6432,"y":51.344604,"z":28.783333},"xAxis":{"x":-0.17826287,"y":0.9839829,"z":0.0},"yAxis":{"x":-0.9839829,"y":-0.17826287,"z":0.0}},"center":{"x":-3.312552,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.346794,"y":54.805397,"z":28.783333},"xAxis":{"x":0.17826287,"y":-0.9839829,"z":0.0},"yAxis":{"x":0.9839829,"y":0.17826287,"z":0.0}},"center":{"x":3.312552,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.59033,"y":51.296577,"z":31.533333},"xAxis":{"x":-0.14364088,"y":0.98962986,"z":0.0},"yAxis":{"x":-0.98962986,"y":-0.14364088,"z":0.0}},"center":{"x":-3.312552,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.399666,"y":54.853424,"z":31.533333},"xAxis":{"x":0.14364088,"y":-0.98962986,"z":0.0},"yAxis":{"x":0.98962986,"y":0.14364088,"z":0.0}},"center":{"x":3.312552,"y":34.065594},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":105.45419,"y":54.899563,"z":34.283333},"xAxis":{"x":0.10884212,"y":-0.994059,"z":0.0},"yAxis":{"x":0.994059,"y":0.10884212,"z":0.0}},"center":{"x":3.312552,"y":38.025593},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":89.810745,"y":50.004807,"z":9.533333},"xAxis":{"x":-0.937776,"y":0.34724078,"z":0.0},"yAxis":{"x":-0.34724078,"y":-0.937776,"z":0.0}},"center":{"x":-2.5298858,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.17925,"y":56.145195,"z":9.533333},"xAxis":{"x":0.937776,"y":-0.34724078,"z":0.0},"yAxis":{"x":0.34724078,"y":0.937776,"z":0.0}},"center":{"x":2.5298858,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":89.70955,"y":49.88158,"z":12.283333},"xAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":-2.5298858,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.28045,"y":56.26842,"z":12.283333},"xAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":2.5298858,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":104.36634,"y":57.197674,"z":37.033333},"xAxis":{"x":0.76132625,"y":-0.64836895,"z":0.0},"yAxis":{"x":0.64836895,"y":0.76132625,"z":0.0}},"center":{"x":2.5298858,"y":42.854836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":89.604095,"y":49.76198,"z":15.033333},"xAxis":{"x":-0.9111254,"y":0.41212925,"z":0.0},"yAxis":{"x":-0.41212925,"y":-0.9111254,"z":0.0}},"center":{"x":-2.5298858,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.3859,"y":56.388023,"z":15.033333},"xAxis":{"x":0.9111254,"y":-0.41212925,"z":0.0},"yAxis":{"x":0.41212925,"y":0.9111254,"z":0.0}},"center":{"x":2.5298858,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":89.4945,"y":49.64615,"z":17.783333},"xAxis":{"x":-0.89610976,"y":0.44383258,"z":0.0},"yAxis":{"x":-0.44383258,"y":-0.89610976,"z":0.0}},"center":{"x":-2.5298858,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.4955,"y":56.503853,"z":17.783333},"xAxis":{"x":0.89610976,"y":-0.44383258,"z":0.0},"yAxis":{"x":0.44383258,"y":0.89610976,"z":0.0}},"center":{"x":2.5298858,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":89.38092,"y":49.534237,"z":20.533333},"xAxis":{"x":-0.87999135,"y":0.4749897,"z":0.0},"yAxis":{"x":-0.4749897,"y":-0.87999135,"z":0.0}},"center":{"x":-2.5298858,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.60908,"y":56.615765,"z":20.533333},"xAxis":{"x":0.87999135,"y":-0.4749897,"z":0.0},"yAxis":{"x":0.4749897,"y":0.87999135,"z":0.0}},"center":{"x":2.5298858,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":89.26347,"y":49.426376,"z":23.283333},"xAxis":{"x":-0.86279005,"y":0.50556237,"z":0.0},"yAxis":{"x":-0.50556237,"y":-0.86279005,"z":0.0}},"center":{"x":-2.5298858,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.726524,"y":56.723625,"z":23.283333},"xAxis":{"x":0.86279005,"y":-0.50556237,"z":0.0},"yAxis":{"x":0.50556237,"y":0.86279005,"z":0.0}},"center":{"x":2.5298858,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":89.14233,"y":49.3227,"z":26.033333},"xAxis":{"x":-0.84452707,"y":0.53551286,"z":0.0},"yAxis":{"x":-0.53551286,"y":-0.84452707,"z":0.0}},"center":{"x":-2.5298858,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.84767,"y":56.8273,"z":26.033333},"xAxis":{"x":0.84452707,"y":-0.53551286,"z":0.0},"yAxis":{"x":0.53551286,"y":0.84452707,"z":0.0}},"center":{"x":2.5298858,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":89.01762,"y":49.22334,"z":28.783333},"xAxis":{"x":-0.8252248,"y":0.56480443,"z":0.0},"yAxis":{"x":-0.56480443,"y":-0.8252248,"z":0.0}},"center":{"x":-2.5298858,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":103.97238,"y":56.926662,"z":28.783333},"xAxis":{"x":0.8252248,"y":-0.56480443,"z":0.0},"yAxis":{"x":0.56480443,"y":0.8252248,"z":0.0}},"center":{"x":2.5298858,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":88.88949,"y":49.12841,"z":31.533333},"xAxis":{"x":-0.8049071,"y":0.5934009,"z":0.0},"yAxis":{"x":-0.5934009,"y":-0.8049071,"z":0.0}},"center":{"x":-2.5298858,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":104.10051,"y":57.02159,"z":31.533333},"xAxis":{"x":0.8049071,"y":-0.5934009,"z":0.0},"yAxis":{"x":0.5934009,"y":0.8049071,"z":0.0}},"center":{"x":2.5298858,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":104.23188,"y":57.111965,"z":34.283333},"xAxis":{"x":0.7835988,"y":-0.6212672,"z":0.0},"yAxis":{"x":0.6212672,"y":0.7835988,"z":0.0}},"center":{"x":2.5298858,"y":38.894836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":90.945,"y":53.075,"z":7.5},"xAxis":{"x":0.035074092,"y":-0.9993847,"z":0.0},"yAxis":{"x":0.9993847,"y":0.035074092,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":102.045,"y":53.075,"z":7.5},"xAxis":{"x":-0.035074092,"y":0.9993847,"z":0.0},"yAxis":{"x":-0.9993847,"y":-0.035074092,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.95079,"y":52.910103,"z":10.25},"xAxis":{"x":-1.9183176E-10,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":-1.9183176E-10,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.03921,"y":53.2399,"z":10.25},"xAxis":{"x":1.9183176E-10,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":1.9183176E-10,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":102.24606,"y":54.704273,"z":35.0},"xAxis":{"x":0.310512,"y":0.95056945,"z":0.0},"yAxis":{"x":-0.95056945,"y":0.310512,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.95079,"y":52.745102,"z":13.0},"xAxis":{"x":-0.035074092,"y":-0.9993847,"z":0.0},"yAxis":{"x":0.9993847,"y":-0.035074092,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.03921,"y":53.4049,"z":13.0},"xAxis":{"x":0.035074092,"y":0.9993847,"z":0.0},"yAxis":{"x":-0.9993847,"y":0.035074092,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.945,"y":52.580204,"z":15.75},"xAxis":{"x":-0.07010502,"y":-0.99753964,"z":0.0},"yAxis":{"x":0.99753964,"y":-0.07010502,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.045,"y":53.569798,"z":15.75},"xAxis":{"x":0.07010502,"y":0.99753964,"z":0.0},"yAxis":{"x":-0.99753964,"y":0.07010502,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.93343,"y":52.41561,"z":18.5},"xAxis":{"x":-0.105049685,"y":-0.99446696,"z":0.0},"yAxis":{"x":0.99446696,"y":-0.105049685,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.056564,"y":53.73439,"z":18.5},"xAxis":{"x":0.105049685,"y":0.99446696,"z":0.0},"yAxis":{"x":-0.99446696,"y":0.105049685,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.9161,"y":52.251526,"z":21.25},"xAxis":{"x":-0.13986507,"y":-0.9901706,"z":0.0},"yAxis":{"x":0.9901706,"y":-0.13986507,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.0739,"y":53.898476,"z":21.25},"xAxis":{"x":0.13986507,"y":0.9901706,"z":0.0},"yAxis":{"x":-0.9901706,"y":0.13986507,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.89302,"y":52.088146,"z":24.0},"xAxis":{"x":-0.17450835,"y":-0.9846557,"z":0.0},"yAxis":{"x":0.9846557,"y":-0.17450835,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.09698,"y":54.061855,"z":24.0},"xAxis":{"x":0.17450835,"y":0.9846557,"z":0.0},"yAxis":{"x":-0.9846557,"y":0.17450835,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":90.86423,"y":51.92568,"z":26.75},"xAxis":{"x":-0.20893688,"y":-0.9779291,"z":0.0},"yAxis":{"x":0.9779291,"y":-0.20893688,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.12577,"y":54.224323,"z":26.75},"xAxis":{"x":0.20893688,"y":0.9779291,"z":0.0},"yAxis":{"x":-0.9779291,"y":0.20893688,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":90.82975,"y":51.76432,"z":29.5},"xAxis":{"x":-0.2431083,"y":-0.96999913,"z":0.0},"yAxis":{"x":0.96999913,"y":-0.2431083,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.16025,"y":54.38568,"z":29.5},"xAxis":{"x":0.2431083,"y":0.96999913,"z":0.0},"yAxis":{"x":-0.96999913,"y":0.2431083,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":102.20036,"y":54.54573,"z":32.25},"xAxis":{"x":0.27698058,"y":0.9608755,"z":0.0},"yAxis":{"x":-0.9608755,"y":0.27698058,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":45.375,"y":54.725,"z":0.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":51.485588,"y":40.95571,"z":19.843536},"xAxis":{"x":0.27845958,"y":0.96043295,"z":-0.005372493},"yAxis":{"x":-0.96044517,"y":0.27844098,"z":-0.0039567803}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":49.834698,"y":41.50353,"z":35.222263},"xAxis":{"x":0.5149919,"y":0.8566643,"z":0.030161077},"yAxis":{"x":-0.85701746,"y":0.5152826,"z":-0.0022270726}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":48.120445,"y":41.97389,"z":50.59662},"xAxis":{"x":0.7164653,"y":0.6946782,"z":0.064028785},"yAxis":{"x":-0.69647485,"y":0.7175303,"z":0.008549463}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":52.80656,"y":39.770363,"z":67.56667},"xAxis":{"x":0.7943083,"y":0.60160464,"z":-0.08453533},"yAxis":{"x":-0.60502017,"y":0.7959482,"z":-0.020422135}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":53.582985,"y":47.75545,"z":57.15541},"xAxis":{"x":0.6794164,"y":0.7309226,"z":0.06438576},"yAxis":{"x":-0.7326616,"y":0.6805731,"z":0.00522045}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.269337,"y":47.995308,"z":9.409954},"xAxis":{"x":0.10920695,"y":0.9939523,"z":-0.011518981},"yAxis":{"x":-0.9939378,"y":0.10933885,"z":0.011518218}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":58.827286,"y":38.95432,"z":9.409954},"xAxis":{"x":-0.057559993,"y":-0.9982756,"z":-0.011518981},"yAxis":{"x":0.99826795,"y":-0.05769246,"z":0.011518218}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.396454,"y":48.638462,"z":14.600888},"xAxis":{"x":0.19454207,"y":0.98089415,"z":0.00010787898},"yAxis":{"x":-0.98085433,"y":0.19453317,"z":0.009034589}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":58.733665,"y":38.305443,"z":14.600888},"xAxis":{"x":-0.14345708,"y":-0.9896565,"z":0.000107879794},"yAxis":{"x":0.9896163,"y":-0.14345026,"z":0.009034589}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":57.112694,"y":35.759766,"z":61.560345},"xAxis":{"x":-0.7932394,"y":-0.60035086,"z":0.10173498},"yAxis":{"x":0.60577154,"y":-0.7949998,"z":0.03187758}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.554153,"y":49.211525,"z":19.79919},"xAxis":{"x":0.2783782,"y":0.9603978,"z":0.011905654},"yAxis":{"x":-0.9604634,"y":0.27830347,"z":0.007561558}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":58.60587,"y":37.72498,"z":19.79919},"xAxis":{"x":-0.22824256,"y":-0.9735315,"z":0.011905654},"yAxis":{"x":0.97359324,"y":-0.22816455,"z":0.007561558}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.73624,"y":49.71204,"z":25.004183},"xAxis":{"x":0.36007878,"y":0.9326187,"z":0.023784777},"yAxis":{"x":-0.9329199,"y":0.36001375,"z":0.007110307}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":58.449963,"y":37.215702,"z":25.004183},"xAxis":{"x":-0.31127277,"y":-0.95002294,"z":0.023784777},"yAxis":{"x":0.9503204,"y":-0.3111922,"z":0.0071103075}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.93634,"y":50.138107,"z":30.215136},"xAxis":{"x":0.43902367,"y":0.8977677,"z":0.035655063},"yAxis":{"x":-0.89843285,"y":0.43904373,"z":0.0076842625}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":58.272205,"y":36.77984,"z":30.215136},"xAxis":{"x":-0.39191732,"y":-0.91930926,"z":0.035655063},"yAxis":{"x":0.9199745,"y":-0.3919029,"z":0.007684263}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":48.147938,"y":50.48839,"z":35.43128},"xAxis":{"x":0.5146135,"y":0.8561096,"z":0.047426403},"yAxis":{"x":-0.85726404,"y":0.5147934,"z":0.009279067}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":58.07904,"y":36.41906,"z":35.43128},"xAxis":{"x":-0.46956405,"y":-0.8816237,"z":0.0474264},"yAxis":{"x":0.8827859,"y":-0.4696839,"z":0.009279068}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":48.364437,"y":50.76213,"z":40.651794},"xAxis":{"x":0.5862744,"y":0.80796057,"z":0.05900942},"yAxis":{"x":-0.8097261,"y":0.5866876,"z":0.011882613}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":57.877014,"y":36.13447,"z":40.651794},"xAxis":{"x":-0.54362345,"y":-0.8372523,"z":0.059009418},"yAxis":{"x":0.83903694,"y":-0.5439447,"z":0.011882613}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":48.579193,"y":50.959145,"z":45.875843},"xAxis":{"x":0.6534623,"y":0.7536861,"z":0.07031619},"yAxis":{"x":-0.7561799,"y":0.65418077,"z":0.015475135}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":57.672756,"y":35.926598,"z":45.875843},"xAxis":{"x":-0.61353326,"y":-0.786532,"z":0.07031619},"yAxis":{"x":0.7890597,"y":-0.61412156,"z":0.015475135}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":48.78559,"y":51.079834,"z":51.102547},"xAxis":{"x":0.7156672,"y":0.69369817,"z":0.08126087},"yAxis":{"x":-0.697032,"y":0.7167603,"z":0.02002936}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":57.472893,"y":35.79538,"z":51.102547},"xAxis":{"x":-0.6787628,"y":-0.7298477,"z":0.08126087},"yAxis":{"x":0.7332337,"y":-0.67968166,"z":0.02002936}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":57.284035,"y":35.740173,"z":56.331017},"xAxis":{"x":-0.73881686,"y":-0.66762996,"z":0.09176037},"yAxis":{"x":0.67198265,"y":-0.7401274,"z":0.025510713}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":50.242847,"y":44.29081,"z":9.526838},"xAxis":{"x":0.10892762,"y":0.99323225,"z":-0.040304422},"yAxis":{"x":-0.99381554,"y":0.10969242,"z":0.017270565}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":55.66583,"y":42.499775,"z":9.526838},"xAxis":{"x":-0.05731835,"y":-0.9975421,"z":-0.040304422},"yAxis":{"x":0.9981642,"y":-0.058051888,"z":0.017270565}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":50.038944,"y":44.69023,"z":14.687076},"xAxis":{"x":0.19433697,"y":0.98051536,"z":-0.028684698},"yAxis":{"x":-0.98072904,"y":0.19481203,"z":0.014790977}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":55.890152,"y":42.111454,"z":14.687076},"xAxis":{"x":-0.14327188,"y":-0.9892676,"z":-0.028684696},"yAxis":{"x":0.98950565,"y":-0.14373523,"z":0.014790977}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":57.74928,"y":40.456882,"z":61.2278},"xAxis":{"x":-0.79476863,"y":-0.602499,"z":0.07306016},"yAxis":{"x":0.60588014,"y":-0.79466546,"z":0.03763135}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.845997,"y":45.04937,"z":19.850695},"xAxis":{"x":0.27827647,"y":0.9603525,"z":-0.01688993},"yAxis":{"x":-0.96034163,"y":0.27850762,"z":0.013321155}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.66046,"y":45.367397,"z":25.017279},"xAxis":{"x":0.36010888,"y":0.93289685,"z":-0.0050096633},"yAxis":{"x":-0.93280804,"y":0.36014372,"z":0.012872256}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":56.30321,"y":41.454807,"z":25.017279},"xAxis":{"x":-0.3112884,"y":-0.9503023,"z":-0.005009663},"yAxis":{"x":0.9502154,"y":-0.3113278,"z":0.012872256}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.478764,"y":45.6438,"z":30.186392},"xAxis":{"x":0.43921292,"y":0.89835674,"z":0.006865911},"yAxis":{"x":-0.89833724,"y":0.4391006,"z":0.01344769}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":56.49899,"y":41.188194,"z":30.186392},"xAxis":{"x":-0.3920758,"y":-0.9199073,"z":0.0068659107},"yAxis":{"x":0.919882,"y":-0.39196464,"z":0.01344769}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.29728,"y":45.878372,"z":35.357582},"xAxis":{"x":0.51498806,"y":0.8569945,"z":0.018646639},"yAxis":{"x":-0.857191,"y":0.51477885,"z":0.015043086}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.112404,"y":46.07123,"z":40.530376},"xAxis":{"x":0.58685905,"y":0.8091241,"z":0.030243082},"yAxis":{"x":-0.8096817,"y":0.58660394,"z":0.017646333}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":56.887,"y":40.780315,"z":40.530376},"xAxis":{"x":-0.5441471,"y":-0.8384446,"z":0.030243078},"yAxis":{"x":0.8389882,"y":-0.5438634,"z":0.017646333}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":48.920536,"y":46.222816,"z":45.704285},"xAxis":{"x":0.6542803,"y":0.7551089,"z":0.0415672},"yAxis":{"x":-0.75617,"y":0.65403056,"z":0.02123767}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":57.086468,"y":40.638874,"z":45.704285},"xAxis":{"x":-0.61427647,"y":-0.7879953,"z":0.0415672},"yAxis":{"x":0.789042,"y":-0.61397207,"z":0.02123767}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":48.71814,"y":46.333874,"z":50.878826},"xAxis":{"x":0.7167399,"y":0.69535905,"z":0.05253303},"yAxis":{"x":-0.697062,"y":0.71654683,"z":0.02578983}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":57.514145,"y":40.478188,"z":56.053493},"xAxis":{"x":-0.7400647,"y":-0.669573,"z":0.06305731},"yAxis":{"x":0.6720438,"y":-0.73985094,"z":0.031268254}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":54.844643,"y":43.78395,"z":9.483663},"xAxis":{"x":-0.10892762,"y":-0.99323225,"z":0.040304422},"yAxis":{"x":0.99381554,"y":-0.10969242,"z":-0.017270565}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":51.04395,"y":42.767517,"z":9.483663},"xAxis":{"x":0.05731835,"y":0.9975421,"z":0.040304422},"yAxis":{"x":-0.9981642,"y":0.058051888,"z":-0.017270565}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":54.580067,"y":43.788826,"z":14.655391},"xAxis":{"x":-0.19433697,"y":-0.98051536,"z":0.028684698},"yAxis":{"x":0.98072904,"y":-0.19481203,"z":-0.014790977}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":51.308426,"y":42.776356,"z":14.655391},"xAxis":{"x":0.14327188,"y":0.9892676,"z":0.028684696},"yAxis":{"x":-0.98950565,"y":0.14373523,"z":-0.014790977}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":54.945885,"y":44.138916,"z":61.09022},"xAxis":{"x":0.79476863,"y":0.602499,"z":-0.07306016},"yAxis":{"x":-0.60588014,"y":0.79466546,"z":-0.03763135}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":51.594017,"y":42.82002,"z":19.825819},"xAxis":{"x":0.22814333,"y":0.97348106,"z":0.01688993},"yAxis":{"x":-0.9734822,"y":0.22837472,"z":-0.013321155}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":53.979424,"y":43.69965,"z":24.994482},"xAxis":{"x":-0.36010888,"y":-0.93289685,"z":0.0050096633},"yAxis":{"x":0.93280804,"y":-0.36014372,"z":-0.012872256}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":51.90364,"y":42.896534,"z":24.994482},"xAxis":{"x":0.3112884,"y":0.9503023,"z":0.005009663},"yAxis":{"x":-0.9502154,"y":0.3113278,"z":-0.012872256}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":53.637928,"y":43.610077,"z":30.160927},"xAxis":{"x":-0.43921292,"y":-0.89835674,"z":-0.006865911},"yAxis":{"x":0.89833724,"y":-0.4391006,"z":-0.01344769}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":52.24004,"y":43.003685,"z":30.160927},"xAxis":{"x":0.3920758,"y":0.9199073,"z":-0.0068659107},"yAxis":{"x":-0.919882,"y":0.39196464,"z":-0.01344769}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":52.605736,"y":43.139015,"z":35.32472},"xAxis":{"x":0.4698923,"y":0.8825268,"z":-0.018646637},"yAxis":{"x":-0.8827122,"y":0.4696732,"z":-0.015043086}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":52.860596,"y":43.353817,"z":40.485443},"xAxis":{"x":-0.58685905,"y":-0.8091241,"z":-0.030243082},"yAxis":{"x":0.8096817,"y":-0.58660394,"z":-0.017646333}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":53.003044,"y":43.299873,"z":40.485443},"xAxis":{"x":0.5441471,"y":0.8384446,"z":-0.030243078},"yAxis":{"x":-0.8389882,"y":0.5438634,"z":-0.017646333}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":52.420673,"y":43.192875,"z":45.642704},"xAxis":{"x":-0.6542803,"y":-0.7551089,"z":-0.0415672},"yAxis":{"x":0.75617,"y":-0.65403056,"z":-0.02123767}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":53.43404,"y":43.48339,"z":45.642704},"xAxis":{"x":0.61427647,"y":0.7879953,"z":-0.0415672},"yAxis":{"x":-0.789042,"y":0.61397207,"z":-0.02123767}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":53.900524,"y":43.686546,"z":50.796143},"xAxis":{"x":0.679748,"y":0.73156196,"z":-0.052533027},"yAxis":{"x":-0.7332527,"y":0.679467,"z":-0.02578983}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":54.404057,"y":43.906155,"z":55.945415},"xAxis":{"x":0.7400647,"y":0.669573,"z":-0.06305731},"yAxis":{"x":-0.6720438,"y":0.73985094,"z":-0.031268254}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.551308,"y":46.757034,"z":9.425473},"xAxis":{"x":-0.109098285,"y":-0.99296325,"z":0.04606011},"yAxis":{"x":0.9940102,"y":-0.10867956,"z":0.011506757}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.49631,"y":39.606373,"z":9.425473},"xAxis":{"x":0.05750272,"y":0.99728227,"z":0.04606011},"yAxis":{"x":-0.99830616,"y":0.05703031,"z":0.011506757}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.529472,"y":46.431557,"z":14.644621},"xAxis":{"x":-0.19451085,"y":-0.9802955,"z":0.03444238},"yAxis":{"x":0.98087513,"y":-0.1941341,"z":0.01399647}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.501255,"y":39.93254,"z":14.644621},"xAxis":{"x":0.14345692,"y":0.98905706,"z":0.03444238},"yAxis":{"x":-0.9896164,"y":0.14305064,"z":0.01399647}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":50.246075,"y":44.7941,"z":61.34412},"xAxis":{"x":0.79513997,"y":0.6026788,"z":-0.067310445},"yAxis":{"x":-0.60450464,"y":0.7965515,"z":-0.008930329}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.455135,"y":46.052197,"z":19.859644},"xAxis":{"x":-0.27845782,"y":-0.96018136,"z":0.022649035},"yAxis":{"x":0.96041036,"y":-0.27815926,"z":0.015472455}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.555836,"y":40.315243,"z":19.859644},"xAxis":{"x":0.2283333,"y":0.97331953,"z":0.022649035},"yAxis":{"x":-0.97353274,"y":0.22802326,"z":0.015472455}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.323868,"y":45.62373,"z":25.069738},"xAxis":{"x":-0.36030182,"y":-0.9327736,"z":0.010769615},"yAxis":{"x":0.9327712,"y":-0.36011705,"z":0.015923508}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.664726,"y":40.74994,"z":25.069738},"xAxis":{"x":0.31148747,"y":0.95018923,"z":0.010769615},"yAxis":{"x":-0.95017725,"y":0.31130308,"z":0.015923508}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.13167,"y":45.151306,"z":30.27414},"xAxis":{"x":-0.4394216,"y":-0.89828026,"z":-0.0011056977},"yAxis":{"x":0.89816755,"y":-0.43938535,"z":0.015346202}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.832188,"y":41.231686,"z":30.27414},"xAxis":{"x":0.39228815,"y":0.9198417,"z":-0.0011056972},"yAxis":{"x":-0.9197273,"y":0.3922578,"z":0.015346201}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":57.875008,"y":44.64041,"z":35.472122},"xAxis":{"x":-0.51521647,"y":-0.8569632,"z":-0.01288675},"yAxis":{"x":0.8568621,"y":-0.5153624,"z":0.013744922}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":48.06203,"y":41.75519,"z":35.472122},"xAxis":{"x":0.47012198,"y":0.8825074,"z":-0.012886748},"yAxis":{"x":-0.882414,"y":0.47027296,"z":0.013744921}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":57.55084,"y":44.09682,"z":40.663013},"xAxis":{"x":-0.58711094,"y":-0.8091361,"z":-0.0244841},"yAxis":{"x":0.80916846,"y":-0.58747125,"z":0.011131824}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":48.3576,"y":42.314846,"z":40.663013},"xAxis":{"x":0.544398,"y":0.8384696,"z":-0.024484096},"yAxis":{"x":-0.8385206,"y":0.5447562,"z":0.011131824}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":57.15662,"y":43.52656,"z":45.846188},"xAxis":{"x":-0.6545593,"y":-0.75516206,"z":-0.035809703},"yAxis":{"x":0.75544864,"y":-0.65516466,"z":0.0075267456}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":48.72174,"y":42.90477,"z":45.846188},"xAxis":{"x":0.6145524,"y":0.7880628,"z":-0.035809703},"yAxis":{"x":-0.7883804,"y":0.61514205,"z":0.0075267456}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":56.69036,"y":42.935856,"z":51.021084},"xAxis":{"x":-0.71704954,"y":-0.69545084,"z":-0.046777584},"yAxis":{"x":0.6961105,"y":-0.7179286,"z":0.0029570558}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":49.15677,"y":43.51884,"z":51.021084},"xAxis":{"x":0.68005246,"y":0.73166966,"z":-0.046777584},"yAxis":{"x":-0.732374,"y":0.68089616,"z":0.0029570556}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":49.66447,"y":44.150764,"z":56.187206},"xAxis":{"x":0.7404011,"y":0.6697182,"z":-0.057304468},"yAxis":{"x":-0.6709266,"y":0.74151945,"z":-0.0025425535}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":58.17698,"y":50.674633,"z":10.192922},"xAxis":{"x":0.9940102,"y":-0.10867956,"z":0.011506757},"yAxis":{"x":0.109098285,"y":0.99296325,"z":-0.04606011}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":48.07312,"y":35.713432,"z":10.192922},"xAxis":{"x":-0.99830616,"y":0.05703031,"z":0.011506757},"yAxis":{"x":-0.05750272,"y":-0.99728227,"z":-0.04606011}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":58.490673,"y":50.358227,"z":15.454828},"xAxis":{"x":0.98087513,"y":-0.1941341,"z":0.01399647},"yAxis":{"x":0.19451085,"y":0.9802955,"z":-0.03444238}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.06653,"y":36.918842,"z":15.49358},"xAxis":{"x":0.14345692,"y":0.98905706,"z":0.03444238},"yAxis":{"x":-0.9896164,"y":0.14305064,"z":0.01399647}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.88899,"y":43.032024,"z":62.49795},"xAxis":{"x":0.79513997,"y":0.6026788,"z":-0.067310445},"yAxis":{"x":-0.60450464,"y":0.7965515,"z":-0.008930329}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":58.751194,"y":49.958496,"z":20.713966},"xAxis":{"x":0.96041036,"y":-0.27815926,"z":0.015472455},"yAxis":{"x":0.27845782,"y":0.96018136,"z":-0.022649035}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":46.866417,"y":37.35993,"z":20.744463},"xAxis":{"x":0.2283333,"y":0.97331953,"z":0.022649035},"yAxis":{"x":-0.97353274,"y":0.22802326,"z":0.015472455}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":58.95157,"y":49.480366,"z":25.969194},"xAxis":{"x":0.9327712,"y":-0.36011705,"z":0.015923508},"yAxis":{"x":0.36030182,"y":0.9327736,"z":-0.010769615}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":46.726746,"y":37.875153,"z":25.99055},"xAxis":{"x":0.31148747,"y":0.95018923,"z":0.010769615},"yAxis":{"x":-0.95017725,"y":0.31130308,"z":0.015923508}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":59.08528,"y":48.92937,"z":31.219404},"xAxis":{"x":0.89816755,"y":-0.43938535,"z":0.015346202},"yAxis":{"x":0.4394216,"y":0.89828026,"z":0.0011056977}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.07561,"y":37.409286,"z":31.219404},"xAxis":{"x":-0.9197273,"y":0.3922578,"z":0.015346201},"yAxis":{"x":-0.39228815,"y":-0.9198417,"z":0.0011056972}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":59.146324,"y":48.311592,"z":36.463524},"xAxis":{"x":0.8568621,"y":-0.5153624,"z":0.013744922},"yAxis":{"x":0.51521647,"y":0.8569632,"z":0.01288675}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":46.982643,"y":38.02307,"z":36.463524},"xAxis":{"x":-0.882414,"y":0.47027296,"z":0.013744921},"yAxis":{"x":-0.47012198,"y":-0.8825074,"z":0.012886748}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":59.12924,"y":47.63361,"z":41.70053},"xAxis":{"x":0.80916846,"y":-0.58747125,"z":0.011131824},"yAxis":{"x":0.58711094,"y":0.8091361,"z":0.0244841}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":46.729275,"y":39.807606,"z":41.68985},"xAxis":{"x":0.544398,"y":0.8384696,"z":-0.024484096},"yAxis":{"x":-0.8385206,"y":0.5447562,"z":0.011131824}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":59.029163,"y":46.902477,"z":46.92945},"xAxis":{"x":0.75544864,"y":-0.65516466,"z":0.0075267456},"yAxis":{"x":0.6545593,"y":0.75516206,"z":0.035809703}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.026634,"y":39.436367,"z":46.92945},"xAxis":{"x":-0.7883804,"y":0.61514205,"z":0.0075267456},"yAxis":{"x":-0.6145524,"y":-0.7880628,"z":0.035809703}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":58.841858,"y":46.125637,"z":52.149372},"xAxis":{"x":0.6961105,"y":-0.7179286,"z":0.0029570558},"yAxis":{"x":0.71704954,"y":0.69545084,"z":0.046777584}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":47.13158,"y":41.35192,"z":52.11432},"xAxis":{"x":0.68005246,"y":0.73166966,"z":-0.046777584},"yAxis":{"x":-0.732374,"y":0.68089616,"z":0.0029570556}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":47.408955,"y":41.049934,"z":57.35946},"xAxis":{"x":-0.6709266,"y":0.74151945,"z":-0.0025425535},"yAxis":{"x":-0.7404011,"y":-0.6697182,"z":0.057304468}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":55.203587,"y":54.381046,"z":10.13475},"xAxis":{"x":0.9939242,"y":-0.10870338,"z":0.017270565},"yAxis":{"x":0.10900006,"y":0.99389154,"z":-0.017279448}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":51.234562,"y":32.166058,"z":10.13475},"xAxis":{"x":-0.99822146,"y":0.057058554,"z":0.017270565},"yAxis":{"x":-0.057356525,"y":-0.99820423,"z":-0.017279448}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":55.848186,"y":54.307716,"z":15.427373},"xAxis":{"x":0.9807603,"y":-0.19421336,"z":0.01975928},"yAxis":{"x":0.19435778,"y":0.9809144,"z":-0.005653639}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.91004,"y":33.11213,"z":15.447703},"xAxis":{"x":0.14327198,"y":0.9896672,"z":0.0056536384},"yAxis":{"x":-0.9895058,"y":0.14313574,"z":0.01975928}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.103004,"y":37.219273,"z":62.95003},"xAxis":{"x":-0.6039796,"y":0.7969933,"z":-0.0032068188},"yAxis":{"x":-0.79350173,"y":-0.60094726,"z":0.096007414}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":56.45919,"y":54.12126,"z":20.721205},"xAxis":{"x":0.960262,"y":-0.27829123,"z":0.021233534},"yAxis":{"x":0.2782234,"y":0.9604967,"z":0.0061440826}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.37094,"y":33.321865,"z":20.733276},"xAxis":{"x":0.22808285,"y":0.9736223,"z":-0.006144083},"yAxis":{"x":-0.9733914,"y":0.22816275,"z":0.021233534}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":57.026962,"y":53.824993,"z":26.014841},"xAxis":{"x":0.932585,"y":-0.36029866,"z":0.021682136},"yAxis":{"x":0.3599602,"y":0.93279356,"z":0.01802415}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":48.87374,"y":33.63624,"z":26.017767},"xAxis":{"x":0.31114525,"y":0.95019144,"z":-0.01802415},"yAxis":{"x":-0.9500007,"y":0.31149408,"z":0.021682136}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":57.5422,"y":53.423058,"z":31.306883},"xAxis":{"x":0.8979393,"y":-0.4396131,"z":0.021101678},"yAxis":{"x":0.43894765,"y":0.89801514,"z":0.029896377}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":48.849457,"y":33.00159,"z":31.306883},"xAxis":{"x":-0.91951114,"y":0.3924971,"z":0.021101676},"yAxis":{"x":-0.3918286,"y":-0.9195524,"z":0.029896375}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":57.99599,"y":52.920403,"z":36.595943},"xAxis":{"x":0.85658807,"y":-0.51563245,"z":0.019496566},"yAxis":{"x":0.51458615,"y":0.8564255,"z":0.041670628}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":48.370228,"y":33.480053,"z":36.595943},"xAxis":{"x":-0.8821543,"y":0.47055686,"z":0.019496566},"yAxis":{"x":-0.4695204,"y":-0.88193774,"z":0.041670624}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.37991,"y":52.322746,"z":41.880653},"xAxis":{"x":0.8088451,"y":-0.58777946,"z":0.016878989},"yAxis":{"x":0.5863014,"y":0.8083405,"z":0.053257518}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":47.720192,"y":35.163185,"z":41.85155},"xAxis":{"x":0.5436308,"y":0.83763313,"z":-0.053257514},"yAxis":{"x":-0.8382136,"y":0.5450807,"z":0.016878989}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.686035,"y":51.636524,"z":47.15968},"xAxis":{"x":0.7550729,"y":-0.65550655,"z":0.013268816},"yAxis":{"x":0.653549,"y":0.754125,"z":0.06456908}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.61459,"y":34.726456,"z":47.15968},"xAxis":{"x":-0.7880229,"y":0.61550295,"z":0.013268816},"yAxis":{"x":-0.61359715,"y":-0.78697485,"z":0.06456908}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":58.907055,"y":50.86884,"z":52.431732},"xAxis":{"x":0.6956797,"y":-0.7182995,"z":0.008693457},"yAxis":{"x":0.7158184,"y":0.69419074,"z":0.07551945}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":47.311634,"y":36.61097,"z":52.37827},"xAxis":{"x":0.6788883,"y":0.7303475,"z":-0.07551944},"yAxis":{"x":-0.731963,"y":0.6812889,"z":0.008693457}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.181435,"y":36.315254,"z":57.695576},"xAxis":{"x":-0.67045957,"y":0.7419392,"z":0.0031876455},"yAxis":{"x":-0.73900867,"y":-0.668181,"z":0.08602548}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":51.31234,"y":54.02959,"z":11.035501},"xAxis":{"x":0.10900006,"y":0.99389154,"z":-0.017279448},"yAxis":{"x":-0.9939242,"y":0.10870338,"z":-0.017270565}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":55.10237,"y":32.718662,"z":11.035501},"xAxis":{"x":-0.057356525,"y":-0.99820423,"z":-0.017279448},"yAxis":{"x":0.99822146,"y":-0.057058554,"z":-0.017270565}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":52.877033,"y":54.912766,"z":16.320826},"xAxis":{"x":0.9807603,"y":-0.19421336,"z":0.01975928},"yAxis":{"x":0.19435778,"y":0.9809144,"z":-0.005653639}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":54.491764,"y":32.432827,"z":16.309542},"xAxis":{"x":-0.14327198,"y":-0.9896672,"z":-0.0056536384},"yAxis":{"x":0.9895058,"y":-0.14313574,"z":-0.01975928}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":50.10368,"y":34.711525,"z":63.835373},"xAxis":{"x":-0.79350173,"y":-0.60094726,"z":0.096007414},"yAxis":{"x":0.6039796,"y":-0.7969933,"z":0.0032068188}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":53.547092,"y":54.970543,"z":21.610312},"xAxis":{"x":0.960262,"y":-0.27829123,"z":0.021233534},"yAxis":{"x":0.2782234,"y":0.9604967,"z":0.0061440826}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":53.880554,"y":32.25955,"z":21.58841},"xAxis":{"x":-0.22808285,"y":-0.9736223,"z":0.006144083},"yAxis":{"x":0.9733914,"y":-0.22816275,"z":-0.021233534}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":53.160744,"y":54.45454,"z":26.870817},"xAxis":{"x":0.3599602,"y":0.93279356,"z":0.01802415},"yAxis":{"x":-0.932585,"y":0.36029866,"z":-0.021682136}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":53.278473,"y":32.19851,"z":26.870817},"xAxis":{"x":-0.31114525,"y":-0.95019144,"z":0.01802415},"yAxis":{"x":0.9500007,"y":-0.31149408,"z":-0.021682136}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":54.810177,"y":54.74108,"z":32.196243},"xAxis":{"x":0.8979393,"y":-0.4396131,"z":0.021101678},"yAxis":{"x":0.43894765,"y":0.89801514,"z":0.029896377}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":52.69517,"y":32.248535,"z":32.155445},"xAxis":{"x":-0.3918286,"y":-0.9195524,"z":0.029896375},"yAxis":{"x":0.91951114,"y":-0.3924971,"z":-0.021101676}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":55.38362,"y":54.45938,"z":37.4899},"xAxis":{"x":0.85658807,"y":-0.51563245,"z":0.019496566},"yAxis":{"x":0.51458615,"y":0.8564255,"z":0.041670628}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":52.140167,"y":32.407604,"z":37.440968},"xAxis":{"x":-0.4695204,"y":-0.88193774,"z":0.041670624},"yAxis":{"x":0.8821543,"y":-0.47055686,"z":-0.019496566}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":54.78965,"y":53.89502,"z":42.726036},"xAxis":{"x":0.5863014,"y":0.8083405,"z":0.053257518},"yAxis":{"x":-0.8088451,"y":0.58777946,"z":-0.016878989}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":51.62276,"y":32.67288,"z":42.726036},"xAxis":{"x":-0.5436308,"y":-0.83763313,"z":0.053257514},"yAxis":{"x":0.8382136,"y":-0.5450807,"z":-0.016878989}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":55.240757,"y":53.503296,"z":48.009323},"xAxis":{"x":0.653549,"y":0.754125,"z":0.06456908},"yAxis":{"x":-0.7550729,"y":0.65550655,"z":-0.013268816}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":51.151966,"y":33.040703,"z":48.009323},"xAxis":{"x":-0.61359715,"y":-0.78697485,"z":0.06456908},"yAxis":{"x":0.7880229,"y":-0.61550295,"z":-0.013268816}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":56.76078,"y":52.997154,"z":53.35687},"xAxis":{"x":0.6956797,"y":-0.7182995,"z":0.008693457},"yAxis":{"x":0.7158184,"y":0.69419074,"z":0.07551945}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":50.73644,"y":33.506657,"z":53.2895},"xAxis":{"x":-0.6788883,"y":-0.7303475,"z":0.07551944},"yAxis":{"x":0.731963,"y":-0.6812889,"z":-0.008693457}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":50.384426,"y":34.065556,"z":58.56527},"xAxis":{"x":-0.73900867,"y":-0.668181,"z":0.08602548},"yAxis":{"x":0.67045957,"y":-0.7419392,"z":-0.0031876455}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":47.60592,"y":51.05872,"z":11.170829},"xAxis":{"x":0.10920695,"y":0.9939523,"z":-0.011518981},"yAxis":{"x":-0.9939378,"y":0.10933885,"z":0.011518218}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":58.649883,"y":35.877586,"z":11.170829},"xAxis":{"x":-0.057559993,"y":-0.9982756,"z":-0.011518981},"yAxis":{"x":0.99826795,"y":-0.05769246,"z":0.011518218}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":48.92792,"y":52.2711,"z":16.39033},"xAxis":{"x":0.98085433,"y":-0.19453317,"z":-0.009034589},"yAxis":{"x":0.19454207,"y":0.98089415,"z":0.00010787898}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":58.298935,"y":35.2753,"z":16.397472},"xAxis":{"x":-0.14345708,"y":-0.9896565,"z":0.000107879794},"yAxis":{"x":0.9896163,"y":-0.14345026,"z":0.009034589}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":54.807735,"y":34.06154,"z":63.65835},"xAxis":{"x":-0.7932394,"y":-0.60035086,"z":0.10173498},"yAxis":{"x":0.60577154,"y":-0.7949998,"z":0.03187758}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":49.384663,"y":52.67876,"z":21.635231},"xAxis":{"x":0.9604634,"y":-0.27830347,"z":-0.007561558},"yAxis":{"x":0.2783782,"y":0.9603978,"z":0.011905654}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":57.91894,"y":34.76385,"z":21.631756},"xAxis":{"x":-0.22824256,"y":-0.9735315,"z":0.011905654},"yAxis":{"x":0.97359324,"y":-0.22816455,"z":0.007561558}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":48.8158,"y":52.530113,"z":26.872728},"xAxis":{"x":0.36007878,"y":0.9326187,"z":0.023784777},"yAxis":{"x":-0.9329199,"y":0.36001375,"z":0.007110307}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":57.517868,"y":34.345478,"z":26.872728},"xAxis":{"x":-0.31127277,"y":-0.95002294,"z":0.023784777},"yAxis":{"x":0.9503204,"y":-0.3111922,"z":0.0071103075}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":50.315998,"y":53.198963,"z":32.141766},"xAxis":{"x":0.89843285,"y":-0.43904373,"z":-0.0076842625},"yAxis":{"x":0.43902367,"y":0.8977677,"z":0.035655063}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":57.10385,"y":34.02172,"z":32.119392},"xAxis":{"x":-0.39191732,"y":-0.91930926,"z":0.035655063},"yAxis":{"x":0.9199745,"y":-0.3919029,"z":0.007684263}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":49.676033,"y":53.0383,"z":37.370697},"xAxis":{"x":0.5146135,"y":0.8561096,"z":0.047426403},"yAxis":{"x":-0.85726404,"y":0.5147934,"z":0.009279067}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.68512,"y":33.7934,"z":37.370697},"xAxis":{"x":-0.46956405,"y":-0.8816237,"z":0.0474264},"yAxis":{"x":0.8827859,"y":-0.4696839,"z":0.009279068}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":50.09754,"y":53.14939,"z":42.625572},"xAxis":{"x":0.5862744,"y":0.80796057,"z":0.05900942},"yAxis":{"x":-0.8097261,"y":0.5866876,"z":0.011882613}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":56.26993,"y":33.660618,"z":42.625572},"xAxis":{"x":-0.54362345,"y":-0.8372523,"z":0.059009418},"yAxis":{"x":0.83903694,"y":-0.5439447,"z":0.011882613}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":50.502357,"y":53.166313,"z":47.882904},"xAxis":{"x":0.6534623,"y":0.7536861,"z":0.07031619},"yAxis":{"x":-0.7561799,"y":0.65418077,"z":0.015475135}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":55.86654,"y":33.622746,"z":47.882904},"xAxis":{"x":-0.61353326,"y":-0.786532,"z":0.07031619},"yAxis":{"x":0.7890597,"y":-0.61412156,"z":0.015475135}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":52.01258,"y":53.072388,"z":53.19055},"xAxis":{"x":0.697032,"y":-0.7167603,"z":-0.02002936},"yAxis":{"x":0.7156672,"y":0.69369817,"z":0.08126087}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":55.483074,"y":33.67843,"z":53.141567},"xAxis":{"x":-0.6787628,"y":-0.7298477,"z":0.08126087},"yAxis":{"x":0.7332337,"y":-0.67968166,"z":0.02002936}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":55.12755,"y":33.82561,"z":58.40043},"xAxis":{"x":-0.73881686,"y":-0.66762996,"z":0.09176037},"yAxis":{"x":0.67198265,"y":-0.7401274,"z":0.025510713}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":53.075,"y":48.875,"z":9.15},"xAxis":{"x":-0.99401826,"y":0.1092142,"z":0.0},"yAxis":{"x":-0.10916892,"y":-0.9936061,"z":0.028793845}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":53.075,"y":37.774998,"z":9.15},"xAxis":{"x":0.99834186,"y":-0.057563815,"z":0.0},"yAxis":{"x":0.057539947,"y":0.9979279,"z":0.028793845}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.2575,"y":49.016884,"z":14.372591},"xAxis":{"x":-0.9808911,"y":0.19454174,"z":-0.0024845223},"yAxis":{"x":-0.1945555,"y":-0.9807412,"z":0.017169813}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.9001,"y":37.623848,"z":14.372591},"xAxis":{"x":0.98965347,"y":-0.1434569,"z":-0.0024845223},"yAxis":{"x":0.14347842,"y":0.9895045,"z":0.017169813}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":52.46373,"y":39.35044,"z":61.35696},"xAxis":{"x":0.60502017,"y":-0.7959482,"z":0.020422135},"yAxis":{"x":0.79430825,"y":0.60160464,"z":-0.08453533}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.42701,"y":49.08545,"z":19.597097},"xAxis":{"x":-0.96044517,"y":0.27844098,"z":-0.0039567803},"yAxis":{"x":-0.27845955,"y":-0.96043295,"z":0.005372493}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.73437,"y":37.546593,"z":19.597097},"xAxis":{"x":0.97358215,"y":-0.22830282,"z":-0.0039567803},"yAxis":{"x":0.228322,"y":0.9735708,"z":0.005372492}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.577248,"y":49.082073,"z":24.822641},"xAxis":{"x":-0.93283576,"y":0.36027497,"z":-0.004405597},"yAxis":{"x":-0.3602441,"y":-0.9328354,"z":-0.0065085525}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.58416,"y":37.54218,"z":24.822641},"xAxis":{"x":0.9502499,"y":-0.31145743,"z":-0.0044055968},"yAxis":{"x":0.3114266,"y":0.95024794,"z":-0.006508553}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.70208,"y":49.008682,"z":30.04834},"xAxis":{"x":-0.8982724,"y":0.43942246,"z":-0.0038275651},"yAxis":{"x":-0.4392882,"y":-0.8981581,"z":-0.018383125}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.455692,"y":37.609005,"z":30.04834},"xAxis":{"x":0.9198339,"y":-0.39228943,"z":-0.0038275647},"yAxis":{"x":0.3921613,"y":0.9197128,"z":-0.018383125}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.795563,"y":48.86773,"z":35.273308},"xAxis":{"x":-0.85701746,"y":0.5152826,"z":-0.0022270726},"yAxis":{"x":-0.5149918,"y":-0.8566643,"z":-0.030161077}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.35503,"y":37.744923,"z":35.273308},"xAxis":{"x":0.88256496,"y":-0.4701852,"z":-0.0022270721},"yAxis":{"x":0.46991315,"y":0.8821972,"z":-0.030161075}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.851997,"y":48.66218,"z":40.496666},"xAxis":{"x":-0.8093842,"y":0.5872794,"z":0.00038372976},"yAxis":{"x":-0.58678025,"y":-0.80866903,"z":-0.041752994}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.28802,"y":37.94727,"z":40.496666},"xAxis":{"x":0.8387261,"y":-0.54455334,"z":0.00038373005},"yAxis":{"x":0.54409194,"y":0.83798605,"z":-0.04175299}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":53.865955,"y":48.3955,"z":45.717545},"xAxis":{"x":-0.75573426,"y":0.65486634,"z":0.0039850217},"yAxis":{"x":-0.65410846,"y":-0.7545367,"z":-0.05307087}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.260265,"y":38.21287,"z":45.717545},"xAxis":{"x":0.78865016,"y":-0.6148293,"z":0.0039850217},"yAxis":{"x":0.6141345,"y":0.7874149,"z":-0.053070866}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":53.83234,"y":48.071606,"z":50.935097},"xAxis":{"x":-0.69647485,"y":0.7175303,"z":0.008549463},"yAxis":{"x":-0.7164653,"y":-0.6946782,"z":-0.064028785}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.277054,"y":38.538074,"z":50.935097},"xAxis":{"x":0.7327172,"y":-0.6804795,"z":0.008549463},"yAxis":{"x":0.6795091,"y":0.7308678,"z":-0.064028785}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":52.34335,"y":38.918774,"z":56.1485},"xAxis":{"x":0.6713519,"y":-0.74100566,"z":0.014042401},"yAxis":{"x":0.73971933,"y":0.6687739,"z":-0.07454354}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":92.125,"y":82.775,"z":0.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":86.94348,"y":93.82385,"z":26.683844},"xAxis":{"x":-0.3253533,"y":-0.94551545,"z":-0.01207507},"yAxis":{"x":0.94555116,"y":-0.32519305,"z":-0.01351071}},"center":{"x":-0.12357646,"y":10.494074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":90.41973,"y":91.68029,"z":49.322678},"xAxis":{"x":-0.7538475,"y":-0.65376866,"z":0.06557865},"yAxis":{"x":0.65390724,"y":-0.7562456,"z":-0.022314297}},"center":{"x":-0.12357646,"y":22.374077},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":93.81264,"y":89.08335,"z":71.92666},"xAxis":{"x":-0.97350657,"y":-0.18320735,"z":0.13682096},"yAxis":{"x":0.18617545,"y":-0.98247427,"z":0.009110643}},"center":{"x":-0.12357646,"y":34.254074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":80.32968,"y":94.737595,"z":96.091675},"xAxis":{"x":-0.9412394,"y":0.30044794,"z":-0.15427057},"yAxis":{"x":-0.28979653,"y":-0.95303744,"z":-0.08796381}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":86.13065,"y":88.21878,"z":80.79325},"xAxis":{"x":-0.9897652,"y":-0.048198693,"z":0.13431926},"yAxis":{"x":0.05235619,"y":-0.9982472,"z":0.027591925}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.07138,"y":87.49297,"z":11.223541},"xAxis":{"x":0.019076234,"y":-0.9995827,"z":-0.021692503},"yAxis":{"x":0.9991358,"y":0.018257352,"z":0.037340768}},"center":{"x":-0.93696856,"y":0.7832468},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":77.854126,"y":96.26088,"z":11.223541},"xAxis":{"x":-0.12397546,"y":0.99204814,"z":-0.021692501},"yAxis":{"x":-0.99168974,"y":-0.12311417,"z":0.037340768}},"center":{"x":1.124723,"y":3.1688933},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":90.76919,"y":85.92362,"z":18.85346},"xAxis":{"x":-0.15544775,"y":-0.987844,"z":-0.00055124576},"yAxis":{"x":0.98761064,"y":-0.15542312,"z":0.02165308}},"center":{"x":-0.93696856,"y":4.743247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":77.989784,"y":97.853294,"z":18.85346},"xAxis":{"x":0.05081604,"y":0.9987079,"z":-0.00055124564},"yAxis":{"x":-0.9984733,"y":0.05081605,"z":0.02165308}},"center":{"x":1.124723,"y":7.1288934},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.862755,"y":101.81467,"z":88.61304},"xAxis":{"x":0.9765356,"y":-0.06524187,"z":0.20523554},"yAxis":{"x":0.05154693,"y":0.9961159,"z":0.07138652}},"center":{"x":1.124723,"y":42.76889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":90.342155,"y":84.57193,"z":26.518995},"xAxis":{"x":-0.32484278,"y":-0.94548833,"z":0.023000695},"yAxis":{"x":0.9457662,"y":-0.32469815,"z":0.009869879}},"center":{"x":-0.93696856,"y":8.703246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":78.27246,"y":99.24237,"z":26.518995},"xAxis":{"x":0.22372322,"y":0.97438127,"z":0.023000695},"yAxis":{"x":-0.97464246,"y":0.2235502,"z":0.00986988}},"center":{"x":1.124723,"y":11.088894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":89.83072,"y":83.45693,"z":34.217377},"xAxis":{"x":-0.48381847,"y":-0.87383854,"z":0.048227765},"yAxis":{"x":0.8749093,"y":-0.48428112,"z":0.0023591649}},"center":{"x":-0.93696856,"y":12.663246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":78.66393,"y":100.40492,"z":34.217377},"xAxis":{"x":0.38934603,"y":0.9198281,"z":0.048227765},"yAxis":{"x":-0.92094153,"y":0.38969365,"z":0.002359165}},"center":{"x":1.124723,"y":15.048893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":89.27797,"y":82.59029,"z":41.94481},"xAxis":{"x":-0.6274099,"y":-0.7751323,"z":0.07434211},"yAxis":{"x":0.7772528,"y":-0.6291881,"z":-0.0006444965}},"center":{"x":-0.93696856,"y":16.623247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":79.12259,"y":101.32484,"z":41.94481},"xAxis":{"x":0.54251194,"y":0.8367521,"z":0.07434211},"yAxis":{"x":-0.8390477,"y":0.54405755,"z":-0.0006444955}},"center":{"x":1.124723,"y":19.008894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":88.72827,"y":81.97589,"z":49.696594},"xAxis":{"x":-0.75113255,"y":-0.65245235,"z":0.100528136},"yAxis":{"x":0.6558467,"y":-0.7548935,"z":0.00095270446}},"center":{"x":-0.93696856,"y":20.583248},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":79.604706,"y":101.99358,"z":49.696594},"xAxis":{"x":0.67843735,"y":0.7277478,"z":0.100528136},"yAxis":{"x":-0.7315185,"y":0.6818209,"z":0.0009527052}},"center":{"x":1.124723,"y":22.968895},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":88.2259,"y":81.60974,"z":57.46727},"xAxis":{"x":-0.8511224,"y":-0.50963,"z":0.12596804},"yAxis":{"x":0.5144826,"y":-0.8574714,"z":0.0071008853}},"center":{"x":-0.93696856,"y":24.543247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.065834,"y":102.41048,"z":57.46727},"xAxis":{"x":0.79287726,"y":0.5962195,"z":0.12596805},"yAxis":{"x":-0.6017122,"y":0.79868144,"z":0.0071008853}},"center":{"x":1.124723,"y":26.928894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.81364,"y":81.48011,"z":65.250786},"xAxis":{"x":-0.9242567,"y":-0.35112587,"z":0.14986731},"yAxis":{"x":0.35757545,"y":-0.93371826,"z":0.01760803}},"center":{"x":-0.93696856,"y":28.503246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.4622,"y":102.582695,"z":65.250786},"xAxis":{"x":0.8822576,"y":0.446275,"z":0.14986733},"yAxis":{"x":-0.4536828,"y":0.89098924,"z":0.017608032}},"center":{"x":1.124723,"y":30.888893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":87.53149,"y":81.56788,"z":73.04068},"xAxis":{"x":-0.9682514,"y":-0.1818901,"z":0.17147955},"yAxis":{"x":0.19002558,"y":-0.98125273,"z":0.032145992}},"center":{"x":-0.93696856,"y":32.463245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.75201,"y":102.525055,"z":73.04068},"xAxis":{"x":0.94378686,"y":0.28259718,"z":0.17147955},"yAxis":{"x":-0.29205343,"y":0.9558616,"z":0.032145996}},"center":{"x":1.124723,"y":34.848892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.89683,"y":102.25955,"z":80.830315},"xAxis":{"x":0.97554344,"y":0.11029786,"z":0.19012979},"yAxis":{"x":-0.12187186,"y":0.99127245,"z":0.05026074}},"center":{"x":1.124723,"y":38.80889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":88.362206,"y":91.89413,"z":11.498676},"xAxis":{"x":-0.44559088,"y":-0.89164895,"z":-0.0800684},"yAxis":{"x":0.89356524,"y":-0.4484393,"z":0.021055594}},"center":{"x":-0.4242164,"y":1.8345448},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":81.010635,"y":92.16867,"z":11.498676},"xAxis":{"x":0.349459,"y":0.9335242,"z":-0.0800684},"yAxis":{"x":-0.93572915,"y":0.35209033,"z":0.021055596}},"center":{"x":0.45382434,"y":2.2107508},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":88.87229,"y":90.73381,"z":19.075605},"xAxis":{"x":-0.59528,"y":-0.80169415,"z":-0.05411257},"yAxis":{"x":0.8022053,"y":-0.59680647,"z":0.016991828}},"center":{"x":-0.4242164,"y":5.7945447},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":80.38149,"y":93.26899,"z":19.075605},"xAxis":{"x":0.5077695,"y":0.8597918,"z":-0.05411257},"yAxis":{"x":-0.86046046,"y":0.50923383,"z":0.016991828}},"center":{"x":0.45382434,"y":6.170751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":76.31772,"y":99.48306,"z":87.78134},"xAxis":{"x":0.8489287,"y":-0.51780117,"z":0.10583973},"yAxis":{"x":0.4999756,"y":0.85173965,"z":0.15672913}},"center":{"x":0.45382434,"y":41.81075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":89.31514,"y":89.64232,"z":26.666975},"xAxis":{"x":-0.72653115,"y":-0.68657076,"z":-0.027804133},"yAxis":{"x":0.686377,"y":-0.72703516,"z":0.017507141}},"center":{"x":-0.4242164,"y":9.754545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":89.70403,"y":88.63056,"z":34.27233},"xAxis":{"x":-0.83524525,"y":-0.5498741,"z":-0.0019647311},"yAxis":{"x":0.5496979,"y":-0.83505815,"z":0.02258544}},"center":{"x":-0.4242164,"y":13.714545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":79.333405,"y":95.273224,"z":34.27233},"xAxis":{"x":0.7728604,"y":0.63457304,"z":-0.0019647311},"yAxis":{"x":-0.63437814,"y":0.7726929,"z":0.02258544}},"center":{"x":0.45382434,"y":14.090751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":90.05393,"y":87.70697,"z":41.890793},"xAxis":{"x":-0.918027,"y":-0.3958734,"z":0.022598648},"yAxis":{"x":0.3964364,"y":-0.9175019,"z":0.032068126}},"center":{"x":-0.4242164,"y":17.674545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":78.88842,"y":96.154945,"z":41.890793},"xAxis":{"x":0.8713617,"y":0.49012053,"z":0.022598648},"yAxis":{"x":-0.49062526,"y":0.8707804,"z":0.032068126}},"center":{"x":0.45382434,"y":18.050749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":90.38102,"y":86.87723,"z":49.521053},"xAxis":{"x":-0.97229105,"y":-0.22937822,"z":0.045118865},"yAxis":{"x":0.23137918,"y":-0.9717916,"z":0.045659047}},"center":{"x":-0.4242164,"y":21.634546},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":90.70219,"y":86.14405,"z":57.16145},"xAxis":{"x":-0.9963428,"y":-0.055588387,"z":0.06489259},"yAxis":{"x":0.059681114,"y":-0.9962317,"z":0.06293374}},"center":{"x":-0.4242164,"y":25.594545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":78.079575,"y":97.64112,"z":57.16145},"xAxis":{"x":0.9849906,"y":0.15994523,"z":0.0648926},"yAxis":{"x":-0.16400364,"y":0.98445016,"z":0.06293374}},"center":{"x":0.45382434,"y":25.970749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":91.0345,"y":85.50718,"z":64.81},"xAxis":{"x":-0.9894309,"y":0.120068505,"z":0.08130228},"yAxis":{"x":-0.11329555,"y":-0.9900588,"z":0.08335271}},"center":{"x":-0.4242164,"y":29.554544},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":77.68219,"y":98.23956,"z":64.81},"xAxis":{"x":0.9965695,"y":-0.015465842,"z":0.081302285},"yAxis":{"x":0.0086643975,"y":0.99648243,"z":0.08335271}},"center":{"x":0.45382434,"y":29.930748},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":91.3947,"y":84.963326,"z":72.46446},"xAxis":{"x":-0.9517714,"y":0.2921065,"z":0.09383542},"yAxis":{"x":-0.28214857,"y":-0.9534659,"z":0.10627823}},"center":{"x":-0.4242164,"y":33.51454},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":76.81715,"y":99.15463,"z":80.12242},"xAxis":{"x":0.92745936,"y":-0.35971466,"z":0.102100626},"yAxis":{"x":0.34592044,"y":0.9290746,"z":0.13099435}},"center":{"x":0.45382434,"y":37.85075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":83.23087,"y":93.05536,"z":11.451711},"xAxis":{"x":-0.020655476,"y":0.9965772,"z":0.08004549},"yAxis":{"x":-0.99865943,"y":-0.016765123,"z":-0.048972722}},"center":{"x":-0.7832468,"y":2.8772452},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":86.23557,"y":91.5529,"z":11.451711},"xAxis":{"x":0.12523025,"y":-0.9888934,"z":0.08004549},"yAxis":{"x":0.99137276,"y":0.12158015,"z":-0.048972722}},"center":{"x":0.6453203,"y":1.124723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":84.0211,"y":92.77028,"z":19.082258},"xAxis":{"x":0.15446693,"y":0.9862364,"z":0.05897258},"yAxis":{"x":-0.9871007,"y":0.15659471,"z":-0.03332027}},"center":{"x":-0.7832468,"y":6.837245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.41977,"y":91.753395,"z":19.082258},"xAxis":{"x":-0.050009526,"y":-0.9970062,"z":0.05897258},"yAxis":{"x":0.99808925,"y":-0.052034736,"z":-0.03332027}},"center":{"x":0.6453203,"y":5.0847235},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":74.80196,"y":94.470604,"z":87.27243},"xAxis":{"x":-0.98705554,"y":0.062219746,"z":-0.14781779},"yAxis":{"x":-0.050304122,"y":-0.9952768,"z":-0.08302729}},"center":{"x":0.6453203,"y":40.72472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":84.523544,"y":91.93788,"z":26.704182},"xAxis":{"x":-0.2236119,"y":-0.97403336,"z":0.03544984},"yAxis":{"x":0.9742479,"y":-0.22444604,"z":-0.021565938}},"center":{"x":0.6453203,"y":9.044723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.84641,"y":92.20801,"z":34.316074},"xAxis":{"x":0.48471394,"y":0.8746131,"z":0.010211916},"yAxis":{"x":-0.87450236,"y":0.4848169,"z":-0.014076816}},"center":{"x":-0.7832468,"y":14.757245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":83.54549,"y":92.12081,"z":34.316074},"xAxis":{"x":-0.39015517,"y":-0.9206925,"z":0.010211916},"yAxis":{"x":0.92059314,"y":-0.39026922,"z":-0.014076817}},"center":{"x":0.6453203,"y":13.004723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":86.8787,"y":91.90203,"z":41.916847},"xAxis":{"x":0.6295246,"y":0.7768167,"z":-0.01595299},"yAxis":{"x":-0.7769792,"y":0.6294286,"z":-0.0110868}},"center":{"x":-0.7832468,"y":18.717243},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":82.48677,"y":92.31665,"z":41.916847},"xAxis":{"x":-0.544438,"y":-0.8386494,"z":-0.01595299},"yAxis":{"x":0.83880085,"y":-0.5443254,"z":-0.011086802}},"center":{"x":0.6453203,"y":16.964722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":81.35106,"y":92.539505,"z":49.50575},"xAxis":{"x":-0.68164194,"y":-0.73046637,"z":-0.042227723},"yAxis":{"x":0.7314254,"y":-0.68180335,"z":-0.012689274}},"center":{"x":0.6453203,"y":20.924723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":89.15704,"y":91.17272,"z":57.08241},"xAxis":{"x":0.8560486,"y":0.51243055,"z":-0.06779169},"yAxis":{"x":-0.51461864,"y":0.8572123,"z":-0.018834187}},"center":{"x":-0.7832468,"y":26.637245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":80.14442,"y":92.80259,"z":57.08241},"xAxis":{"x":-0.7974821,"y":-0.59952205,"z":-0.0677917},"yAxis":{"x":0.60182023,"y":-0.79840946,"z":-0.018834187}},"center":{"x":0.6453203,"y":24.884722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":90.38615,"y":90.72583,"z":64.646835},"xAxis":{"x":0.93068737,"y":0.35409775,"z":-0.091846526},"yAxis":{"x":-0.35797498,"y":0.93327045,"z":-0.029329628}},"center":{"x":-0.7832468,"y":30.597244},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":78.87517,"y":93.1179,"z":64.646835},"xAxis":{"x":-0.8883405,"y":-0.44990596,"z":-0.091846526},"yAxis":{"x":0.45403308,"y":-0.890502,"z":-0.02932963}},"center":{"x":0.6453203,"y":28.84472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":77.553535,"y":93.49577,"z":72.19942},"xAxis":{"x":-0.9513797,"y":-0.2862908,"z":-0.11364095},"yAxis":{"x":0.2926794,"y":-0.9552048,"z":-0.043847818}},"center":{"x":0.6453203,"y":32.80472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":76.191414,"y":93.94462,"z":79.74091},"xAxis":{"x":-0.9846308,"y":-0.11378641,"z":-0.13249432},"yAxis":{"x":0.122798495,"y":-0.9904971,"z":-0.061935335}},"center":{"x":0.6453203,"y":36.76472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":78.893394,"y":90.2375,"z":11.284298},"xAxis":{"x":0.44602123,"y":0.8903102,"z":0.09172082},"yAxis":{"x":-0.89499,"y":0.44452837,"z":0.037247688}},"center":{"x":-1.8345448,"y":3.3899975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":90.25304,"y":94.810814,"z":11.284298},"xAxis":{"x":-0.35002756,"y":-0.93223816,"z":0.09172082},"yAxis":{"x":0.9367352,"y":-0.34805137,"z":0.037247688}},"center":{"x":1.603463,"y":0.45382434},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":79.25733,"y":90.74868,"z":19.04165},"xAxis":{"x":0.59568995,"y":0.8005161,"z":0.06578305},"yAxis":{"x":-0.80319244,"y":0.5942796,"z":0.04139686}},"center":{"x":-1.8345448,"y":7.3499975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":89.94481,"y":94.26424,"z":19.04165},"xAxis":{"x":-0.5083009,"y":-0.8586634,"z":0.06578305},"yAxis":{"x":0.86117667,"y":-0.50661725,"z":0.04139686}},"center":{"x":1.603463,"y":4.4138246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":77.23722,"y":89.91432,"z":87.57545},"xAxis":{"x":-0.8502546,"y":0.517878,"z":-0.09417817},"yAxis":{"x":-0.50959337,"y":-0.8546836,"z":-0.09914936}},"center":{"x":1.603463,"y":40.05382},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":79.85035,"y":91.33161,"z":26.77979},"xAxis":{"x":0.7269493,"y":0.6855548,"z":0.039489552},"yAxis":{"x":-0.6866909,"y":0.7257963,"z":0.04093056}},"center":{"x":-1.8345448,"y":11.309998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":89.41631,"y":93.62223,"z":26.77979},"xAxis":{"x":-0.6509105,"y":-0.7581267,"z":0.039489552},"yAxis":{"x":0.7591354,"y":-0.6496446,"z":0.04093056}},"center":{"x":1.603463,"y":8.373823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":80.68102,"y":91.94492,"z":34.49368},"xAxis":{"x":0.8356998,"y":0.54901654,"z":0.01366148},"yAxis":{"x":-0.54912406,"y":0.834971,"z":0.03586335}},"center":{"x":-1.8345448,"y":15.269998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":88.65466,"y":92.92506,"z":34.49368},"xAxis":{"x":-0.7734026,"y":-0.63376796,"z":0.01366148},"yAxis":{"x":0.6337983,"y":-0.7726665,"z":0.03586335}},"center":{"x":1.603463,"y":12.333823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":81.75053,"y":92.546295,"z":42.179043},"xAxis":{"x":0.9185453,"y":0.39516562,"z":-0.010894529},"yAxis":{"x":-0.39478806,"y":0.9183942,"z":0.02635349}},"center":{"x":-1.8345448,"y":19.229996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":87.65425,"y":92.21466,"z":42.179043},"xAxis":{"x":-0.87195146,"y":-0.4894711,"z":-0.010894528},"yAxis":{"x":0.48907977,"y":-0.87184083,"z":0.026353488}},"center":{"x":1.603463,"y":16.293823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":83.05256,"y":93.093765,"z":49.83249},"xAxis":{"x":0.97289824,"y":0.22880696,"z":-0.033411562},"yAxis":{"x":-0.22850308,"y":0.9734604,"z":0.012697971}},"center":{"x":-1.8345448,"y":23.189997},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.41693,"y":91.53345,"z":49.83249},"xAxis":{"x":-0.9434795,"y":-0.3297426,"z":-0.033411562},"yAxis":{"x":0.32949945,"y":-0.9440704,"z":0.01269797}},"center":{"x":1.603463,"y":20.253824},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":84.57357,"y":93.547066,"z":57.45163},"xAxis":{"x":0.9970613,"y":0.05513609,"z":-0.05318639},"yAxis":{"x":-0.055462345,"y":0.9984498,"z":-0.0046767243}},"center":{"x":-1.8345448,"y":27.149996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":84.95195,"y":90.922874,"z":57.45163},"xAxis":{"x":-0.9857527,"y":-0.15957092,"z":-0.053186394},"yAxis":{"x":0.16004123,"y":-0.98709923,"z":-0.004676726}},"center":{"x":1.603463,"y":24.213823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.29316,"y":93.86886,"z":65.03515},"xAxis":{"x":0.99027973,"y":-0.12042309,"z":-0.06960143},"yAxis":{"x":0.11892994,"y":0.9925821,"z":-0.02522797}},"center":{"x":-1.8345448,"y":31.109995},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":83.27568,"y":90.42222,"z":65.03515},"xAxis":{"x":-0.9974509,"y":0.0157293,"z":-0.06960144},"yAxis":{"x":-0.014002543,"y":-0.99958366,"z":-0.025227973}},"center":{"x":1.603463,"y":28.173822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":88.18473,"y":94.02593,"z":72.58283},"xAxis":{"x":0.95276535,"y":-0.2923877,"z":-0.08214402},"yAxis":{"x":0.2892273,"y":0.95604044,"z":-0.048313927}},"center":{"x":-1.8345448,"y":35.069996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":81.41107,"y":90.06731,"z":72.58283},"xAxis":{"x":-0.9782087,"y":0.19068328,"z":-0.08214402},"yAxis":{"x":-0.18719633,"y":-0.9811337,"z":-0.04831393}},"center":{"x":1.603463,"y":32.133823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":79.38698,"y":89.88943,"z":80.0956},"xAxis":{"x":-0.92862713,"y":0.359827,"z":-0.09042245},"yAxis":{"x":-0.3541311,"y":-0.93232554,"z":-0.07321361}},"center":{"x":1.603463,"y":36.093822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":77.45743,"y":84.9756,"z":11.834151},"xAxis":{"x":-0.9997377,"y":-0.020921579,"z":0.009321013},"yAxis":{"x":0.019979505,"y":-0.9955843,"z":-0.09172082}},"center":{"x":-2.8772452,"y":3.030967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":91.1283,"y":100.19445,"z":11.834151},"xAxis":{"x":0.99200845,"y":0.12582688,"z":0.009321013},"yAxis":{"x":-0.124453716,"y":0.987977,"z":-0.09172082}},"center":{"x":2.6894908,"y":0.6453203},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":76.93882,"y":85.828514,"z":19.726065},"xAxis":{"x":-0.9877896,"y":0.1537656,"z":0.025058834},"yAxis":{"x":-0.15517926,"y":-0.98535645,"z":-0.0706548}},"center":{"x":-2.8772452,"y":6.990967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.544106,"y":99.6098,"z":19.706923},"xAxis":{"x":-0.050810352,"y":-0.9962059,"z":0.0706548},"yAxis":{"x":0.99847704,"y":-0.04914892,"z":0.025058834}},"center":{"x":2.6894908,"y":4.6053205},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":82.31635,"y":88.21381,"z":89.274315},"xAxis":{"x":-0.98870313,"y":0.06257007,"z":-0.13620235},"yAxis":{"x":-0.059654467,"y":-0.9978962,"z":-0.025387824}},"center":{"x":2.6894908,"y":40.245316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":76.724846,"y":86.90416,"z":27.604893},"xAxis":{"x":-0.9453526,"y":0.32395902,"z":0.036864102},"yAxis":{"x":-0.32546344,"y":-0.94437903,"z":-0.047135975}},"center":{"x":-2.8772452,"y":10.950967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.90949,"y":98.592766,"z":27.588093},"xAxis":{"x":-0.22445697,"y":-0.9733434,"z":0.047135975},"yAxis":{"x":0.9741535,"y":-0.2228586,"z":0.036864102}},"center":{"x":2.6894908,"y":8.565319},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":76.84929,"y":88.14576,"z":35.461205},"xAxis":{"x":-0.8737523,"y":0.48434332,"z":0.044368125},"yAxis":{"x":-0.48555487,"y":-0.8739319,"z":-0.021898864}},"center":{"x":-2.8772452,"y":14.910967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":91.96034,"y":97.367714,"z":35.447952},"xAxis":{"x":-0.39106303,"y":-0.9201033,"z":0.021898864},"yAxis":{"x":0.9197975,"y":-0.38987702,"z":0.044368125}},"center":{"x":2.6894908,"y":12.52532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":77.335396,"y":89.49137,"z":43.286278},"xAxis":{"x":-0.77522457,"y":0.6299096,"z":0.047336552},"yAxis":{"x":-0.63045377,"y":-0.7762151,"z":0.004268356}},"center":{"x":-2.8772452,"y":18.870966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":91.72404,"y":95.716484,"z":43.286278},"xAxis":{"x":0.83710647,"y":-0.5449881,"z":0.047336552},"yAxis":{"x":0.5454252,"y":0.83814865,"z":0.0042683557}},"center":{"x":2.6894908,"y":16.48532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":78.19506,"y":90.8758,"z":51.07236},"xAxis":{"x":-0.65284675,"y":0.7561116,"z":0.04567667},"yAxis":{"x":-0.7556348,"y":-0.6542804,"z":0.030548457}},"center":{"x":-2.8772452,"y":22.830967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":91.01456,"y":94.24941,"z":51.07236},"xAxis":{"x":0.7286631,"y":-0.68334746,"z":0.04567667},"yAxis":{"x":0.6827226,"y":0.73003876,"z":0.030548457}},"center":{"x":2.6894908,"y":20.44532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":79.428566,"y":92.232635,"z":58.812916},"xAxis":{"x":-0.5104407,"y":0.859008,"z":0.039440323},"yAxis":{"x":-0.85718834,"y":-0.5119361,"z":0.056120683}},"center":{"x":-2.8772452,"y":26.790966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":89.97058,"y":93.05046,"z":58.81625},"xAxis":{"x":-0.79866743,"y":-0.59915006,"z":-0.056120686},"yAxis":{"x":0.597854,"y":-0.80063415,"z":0.039440323}},"center":{"x":2.6894908,"y":24.40532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":81.024475,"y":93.49632,"z":66.50284},"xAxis":{"x":-0.3524539,"y":0.9353852,"z":0.028822273},"yAxis":{"x":-0.93194294,"y":-0.35362762,"z":0.0801864}},"center":{"x":-2.8772452,"y":30.750965},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":88.47608,"y":91.34616,"z":66.50284},"xAxis":{"x":0.4487647,"y":-0.893185,"z":0.028822273},"yAxis":{"x":0.8896385,"y":0.44957036,"z":0.080186404}},"center":{"x":2.6894908,"y":28.365318},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":82.96006,"y":94.60423,"z":74.13859},"xAxis":{"x":-0.18382046,"y":0.98285794,"z":0.014154135},"yAxis":{"x":-0.97756386,"y":-0.18429913,"z":0.101993985}},"center":{"x":-2.8772452,"y":34.710964},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":86.80093,"y":90.28987,"z":74.15616},"xAxis":{"x":-0.9527947,"y":-0.28597113,"z":-0.10199399},"yAxis":{"x":0.28605124,"y":-0.9581098,"z":0.014154133}},"center":{"x":2.6894908,"y":32.325317},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":84.53201,"y":88.916145,"z":81.718346},"xAxis":{"x":0.11479535,"y":-0.99338067,"z":-0.004105992},"yAxis":{"x":0.9861636,"y":0.11346178,"z":0.12086241}},"center":{"x":2.6894908,"y":36.285316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":80.27937,"y":80.64057,"z":11.67246},"xAxis":{"x":-0.89446855,"y":0.44444093,"z":0.048972722},"yAxis":{"x":-0.44619277,"y":-0.89431316,"z":-0.033406623}},"center":{"x":-3.3899975,"y":1.979669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":87.866585,"y":104.209045,"z":11.67246},"xAxis":{"x":0.9362074,"y":-0.3480192,"z":0.048972722},"yAxis":{"x":0.34977767,"y":0.9362369,"z":-0.03340662}},"center":{"x":3.3603892,"y":1.603463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":78.96039,"y":81.06587,"z":19.614182},"xAxis":{"x":-0.8024738,"y":0.5943189,"z":0.053111725},"yAxis":{"x":-0.5954589,"y":-0.8033517,"z":-0.0074006557}},"center":{"x":-3.3899975,"y":5.939669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":89.15241,"y":104.198296,"z":19.60208},"xAxis":{"x":-0.50777334,"y":-0.86145896,"z":0.007400655},"yAxis":{"x":0.8604661,"y":-0.50673187,"z":0.053111725}},"center":{"x":3.3603892,"y":5.5634627},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.57044,"y":90.47398,"z":90.173615},"xAxis":{"x":-0.5121431,"y":-0.8544114,"z":-0.08769594},"yAxis":{"x":0.84082115,"y":-0.51958144,"z":0.15183844}},"center":{"x":3.3603892,"y":41.203457},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":77.88495,"y":81.86089,"z":27.56421},"xAxis":{"x":-0.6857564,"y":0.72592586,"z":0.052629527},"yAxis":{"x":-0.7261176,"y":-0.6873099,"z":0.018929847}},"center":{"x":-3.3899975,"y":9.899668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":90.354294,"y":103.528946,"z":27.557472},"xAxis":{"x":-0.6498991,"y":-0.7597847,"z":-0.018929847},"yAxis":{"x":0.75821966,"y":-0.6498716,"z":0.052629527}},"center":{"x":3.3603892,"y":9.523462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":77.113754,"y":82.97762,"z":35.51089},"xAxis":{"x":-0.5479615,"y":0.83515155,"z":0.04754119},"yAxis":{"x":-0.8340882,"y":-0.5498119,"z":0.04476256}},"center":{"x":-3.3899975,"y":13.859668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":91.288,"y":102.49895,"z":35.510334},"xAxis":{"x":-0.7717163,"y":-0.63438964,"z":-0.04476256},"yAxis":{"x":0.63266116,"y":-0.7729681,"z":0.04754119}},"center":{"x":3.3603892,"y":13.483462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":76.698,"y":84.358025,"z":43.44268},"xAxis":{"x":-0.39339253,"y":0.9185847,"z":0.038005624},"yAxis":{"x":-0.91599876,"y":-0.3951519,"z":0.069290705}},"center":{"x":-3.3899975,"y":17.819668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":91.81866,"y":100.88839,"z":43.44268},"xAxis":{"x":0.48771197,"y":-0.87217695,"z":0.038005624},"yAxis":{"x":0.86942047,"y":0.48918998,"z":0.069290705}},"center":{"x":3.3603892,"y":17.443464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":76.67777,"y":85.93581,"z":51.348484},"xAxis":{"x":-0.22687694,"y":0.9736197,"z":0.024320634},"yAxis":{"x":-0.9692911,"y":-0.2281601,"z":0.09174824}},"center":{"x":-3.3899975,"y":21.779669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":92.00452,"y":99.321465,"z":51.348484},"xAxis":{"x":0.32789907,"y":-0.94439965,"z":0.024320634},"yAxis":{"x":0.9399602,"y":0.3287204,"z":0.091748245}},"center":{"x":3.3603892,"y":21.403465},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":77.08081,"y":87.63851,"z":59.21804},"xAxis":{"x":-0.053615123,"y":0.9985377,"z":0.0069136187},"yAxis":{"x":-0.9923008,"y":-0.05405178,"z":0.1114338}},"center":{"x":-3.3899975,"y":25.739668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":91.94716,"y":97.81491,"z":59.238945},"xAxis":{"x":-0.98113245,"y":-0.15799253,"z":-0.111433804},"yAxis":{"x":0.15821347,"y":-0.98738074,"z":0.0069136173}},"center":{"x":3.3603892,"y":25.363464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":77.92163,"y":89.38981,"z":67.042206},"xAxis":{"x":0.120981805,"y":0.99256057,"z":-0.0136717865},"yAxis":{"x":-0.9843093,"y":0.1217355,"z":0.12773257}},"center":{"x":-3.3899975,"y":29.699667},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":91.13037,"y":95.755905,"z":67.042206},"xAxis":{"x":-0.016045323,"y":-0.9997778,"z":-0.01367179},"yAxis":{"x":0.99165136,"y":-0.017661624,"z":0.12773259}},"center":{"x":3.3603892,"y":29.323463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":79.20109,"y":91.11182,"z":74.813255},"xAxis":{"x":0.291461,"y":0.95587486,"z":-0.036792677},"yAxis":{"x":-0.94556624,"y":0.2937117,"z":0.14013556}},"center":{"x":-3.3899975,"y":33.659668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":90.27101,"y":94.0667,"z":74.84864},"xAxis":{"x":-0.9711885,"y":0.19275622,"z":-0.14013556},"yAxis":{"x":-0.18943505,"y":-0.9812037,"z":-0.03679268}},"center":{"x":3.3603892,"y":33.28346},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":88.51282,"y":92.123055,"z":82.52513},"xAxis":{"x":-0.3565406,"y":-0.93223846,"z":-0.061726972},"yAxis":{"x":0.92038286,"y":-0.36182287,"z":0.14825538}},"center":{"x":3.3603892,"y":37.243458},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":85.48978,"y":79.1647,"z":12.524211},"xAxis":{"x":0.020053603,"y":-0.9992414,"z":-0.03338371},"yAxis":{"x":0.9995627,"y":0.020763498,"z":-0.021055594}},"center":{"x":-3.030967,"y":0.93696856},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":82.52997,"y":105.12941,"z":12.524211},"xAxis":{"x":-0.12491158,"y":0.99160606,"z":-0.03338371},"yAxis":{"x":-0.99185103,"y":-0.12565129,"z":-0.021055596}},"center":{"x":3.1688933,"y":2.6894908},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":84.07823,"y":78.88745,"z":20.412666},"xAxis":{"x":-0.98736924,"y":0.15410718,"z":0.03678328},"yAxis":{"x":-0.15464583,"y":-0.9878939,"z":-0.012260663}},"center":{"x":-3.030967,"y":4.896969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":84.114204,"y":105.74323,"z":20.417572},"xAxis":{"x":0.050013315,"y":0.9986733,"z":-0.012260663},"yAxis":{"x":-0.9980949,"y":0.049532764,"z":-0.03678328}},"center":{"x":3.1688933,"y":6.6494904},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":88.214096,"y":95.52208,"z":91.54003},"xAxis":{"x":0.978948,"y":-0.06400004,"z":0.1938165},"yAxis":{"x":0.062471617,"y":0.99794865,"z":0.0139941}},"center":{"x":3.1688933,"y":42.289486},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":82.56009,"y":78.83918,"z":28.330826},"xAxis":{"x":-0.944659,"y":0.3244383,"z":0.04857073},"yAxis":{"x":-0.324282,"y":-0.94589317,"z":0.011284141}},"center":{"x":-3.030967,"y":8.856968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":85.64858,"y":105.91116,"z":28.342798},"xAxis":{"x":0.22312298,"y":0.974725,"z":0.011284141},"yAxis":{"x":-0.9735141,"y":0.2234081,"z":-0.04857073}},"center":{"x":3.1688933,"y":10.60949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":80.93451,"y":79.124275,"z":36.28901},"xAxis":{"x":-0.48355693,"y":-0.87455094,"z":0.036515374},"yAxis":{"x":0.87276596,"y":-0.48491025,"z":-0.056049813}},"center":{"x":-3.030967,"y":12.816968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":87.055786,"y":105.64814,"z":36.28901},"xAxis":{"x":0.3890111,"y":0.9205091,"z":0.036515377},"yAxis":{"x":-0.9188762,"y":0.39054447,"z":-0.056049813}},"center":{"x":3.1688933,"y":14.56949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":80.084694,"y":79.94203,"z":44.22035},"xAxis":{"x":-0.7739354,"y":0.6305114,"z":0.05898695},"yAxis":{"x":-0.6274964,"y":-0.7760953,"z":0.06264505}},"center":{"x":-3.030967,"y":16.77697},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":88.26248,"y":104.98258,"z":44.244675},"xAxis":{"x":0.5424968,"y":0.83771884,"z":0.06264505},"yAxis":{"x":-0.8358876,"y":0.54572195,"z":-0.05898695}},"center":{"x":3.1688933,"y":18.529491},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":79.25896,"y":81.01238,"z":52.168736},"xAxis":{"x":-0.65125376,"y":0.7566944,"z":0.05729041},"yAxis":{"x":-0.751605,"y":-0.65360105,"z":0.0888571}},"center":{"x":-3.030967,"y":20.736969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":89.2016,"y":103.95547,"z":52.197964},"xAxis":{"x":0.6787865,"y":0.72893983,"z":0.0888571},"yAxis":{"x":-0.7271401,"y":0.6840943,"z":-0.05729041}},"center":{"x":3.1688933,"y":22.489492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":78.50935,"y":82.42636,"z":60.137123},"xAxis":{"x":-0.8520067,"y":-0.51089394,"z":0.1143329},"yAxis":{"x":0.5085527,"y":-0.8595184,"z":-0.05101317}},"center":{"x":-3.030967,"y":24.696968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":89.8144,"y":102.61908,"z":60.137123},"xAxis":{"x":0.7936239,"y":0.59756935,"z":0.11433291},"yAxis":{"x":-0.59603006,"y":0.80134,"z":-0.05101317}},"center":{"x":3.1688933,"y":26.449492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":78.439064,"y":84.02633,"z":68.050835},"xAxis":{"x":-0.92556584,"y":-0.35243076,"z":0.13827683},"yAxis":{"x":0.35028872,"y":-0.9357722,"z":-0.04035129}},"center":{"x":-3.030967,"y":28.656967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":90.052376,"y":101.03535,"z":68.050835},"xAxis":{"x":0.8834224,"y":0.4477102,"z":0.13827683},"yAxis":{"x":-0.44665214,"y":0.8937973,"z":-0.04035129}},"center":{"x":3.1688933,"y":30.40949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":79.0271,"y":85.59978,"z":75.89147},"xAxis":{"x":-0.18140468,"y":0.9830743,"z":0.025637742},"yAxis":{"x":-0.9699851,"y":-0.18316048,"z":0.15994108}},"center":{"x":-3.030967,"y":32.616966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":89.878685,"y":99.27393,"z":75.92859},"xAxis":{"x":0.9453775,"y":0.28404266,"z":0.15994108},"yAxis":{"x":-0.28367156,"y":0.9585787,"z":-0.02563774}},"center":{"x":3.1688933,"y":34.369488},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":89.26938,"y":97.41004,"z":83.76098},"xAxis":{"x":0.9775543,"y":0.1116782,"z":0.17864907},"yAxis":{"x":-0.11217833,"y":0.99366105,"z":-0.007332042}},"center":{"x":3.1688933,"y":38.329487},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":89.82597,"y":81.97693,"z":12.790135},"xAxis":{"x":-0.4469245,"y":-0.8943086,"z":-0.021692503},"yAxis":{"x":0.89438814,"y":-0.44719258,"z":0.0094140945}},"center":{"x":-1.979669,"y":0.4242164},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":78.51318,"y":101.87723,"z":12.790135},"xAxis":{"x":0.35050583,"y":0.9363093,"z":-0.021692501},"yAxis":{"x":-0.93641657,"y":0.35076407,"z":0.0094140945}},"center":{"x":2.2107508,"y":3.3603892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":88.89301,"y":80.78021,"z":20.556993},"xAxis":{"x":-0.8030135,"y":0.59593713,"z":-0.0053150537},"yAxis":{"x":-0.5959584,"y":-0.80300367,"z":0.0043204967}},"center":{"x":-1.979669,"y":4.3842163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":79.589165,"y":103.23591,"z":20.556795},"xAxis":{"x":0.5083066,"y":0.86116534,"z":0.004320497},"yAxis":{"x":-0.86117285,"y":0.5082844,"z":0.0053150533}},"center":{"x":2.2107508,"y":7.3203893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":85.76172,"y":100.0746,"z":91.33412},"xAxis":{"x":0.8380871,"y":-0.5205498,"z":0.16321136},"yAxis":{"x":0.5014858,"y":0.8529033,"z":0.14514807}},"center":{"x":2.2107508,"y":42.960384},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":87.63251,"y":79.86641,"z":28.360884},"xAxis":{"x":-0.68710446,"y":0.72653544,"z":-0.0058034197},"yAxis":{"x":-0.7263286,"y":-0.68666404,"z":0.030647116}},"center":{"x":-1.979669,"y":8.344215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":80.754776,"y":104.228264,"z":28.365852},"xAxis":{"x":0.65017676,"y":0.75916463,"z":0.030647116},"yAxis":{"x":-0.75962436,"y":0.6503362,"z":0.0058034197}},"center":{"x":2.2107508,"y":11.28039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":86.10234,"y":79.38749,"z":36.210052},"xAxis":{"x":-0.83396345,"y":-0.5489232,"z":0.05646515},"yAxis":{"x":0.55028105,"y":-0.83490884,"z":0.010863939}},"center":{"x":-1.979669,"y":12.304215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":81.9442,"y":104.843506,"z":36.210052},"xAxis":{"x":0.7716856,"y":0.63349277,"z":0.05646515},"yAxis":{"x":-0.63494235,"y":0.7724831,"z":0.010863939}},"center":{"x":2.2107508,"y":15.24039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":85.199326,"y":79.16545,"z":44.06893},"xAxis":{"x":-0.39681625,"y":0.9176727,"z":-0.020338567},"yAxis":{"x":-0.9155014,"y":-0.39408284,"z":0.080968276}},"center":{"x":-1.979669,"y":16.264217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":83.090904,"y":105.08261,"z":44.081055},"xAxis":{"x":0.86903816,"y":0.48807457,"z":0.080968276},"yAxis":{"x":-0.49102095,"y":0.8709103,"z":0.020338569}},"center":{"x":2.2107508,"y":19.20039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":83.916885,"y":79.502914,"z":51.96967},"xAxis":{"x":-0.968396,"y":-0.22697884,"z":0.103391245},"yAxis":{"x":0.23150304,"y":-0.97224224,"z":0.033931404}},"center":{"x":-1.979669,"y":20.224218},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":84.12969,"y":104.958305,"z":51.96967},"xAxis":{"x":0.93919414,"y":0.32745165,"z":0.103391245},"yAxis":{"x":-0.33235487,"y":0.94254386,"z":0.033931404}},"center":{"x":2.2107508,"y":23.16039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":83.10136,"y":80.05527,"z":59.86616},"xAxis":{"x":-0.9909953,"y":-0.052830003,"z":0.12303375},"yAxis":{"x":0.059504278,"y":-0.9969132,"z":0.051217932}},"center":{"x":-1.979669,"y":24.184217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":84.998726,"y":104.49467,"z":59.86616},"xAxis":{"x":0.97996247,"y":0.15664037,"z":0.123033755},"yAxis":{"x":-0.16389938,"y":0.9851465,"z":0.051217932}},"center":{"x":2.2107508,"y":27.12039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":82.54287,"y":80.88682,"z":67.76055},"xAxis":{"x":-0.9825935,"y":0.12292486,"z":0.13928235},"yAxis":{"x":-0.11380837,"y":-0.9909151,"z":0.071658276}},"center":{"x":-1.979669,"y":28.144217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":85.64148,"y":103.726395,"z":67.76055},"xAxis":{"x":0.9900699,"y":-0.01902465,"z":0.13928236},"yAxis":{"x":0.0090844305,"y":0.9973879,"z":0.071658276}},"center":{"x":2.2107508,"y":31.080389},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":82.418045,"y":81.69858,"z":75.631516},"xAxis":{"x":0.28302217,"y":0.9544352,"z":-0.09461406},"yAxis":{"x":-0.9434529,"y":0.2947967,"z":0.15162958}},"center":{"x":-1.979669,"y":32.104214},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":86.00848,"y":102.697655,"z":75.64292},"xAxis":{"x":0.96920085,"y":-0.19405723,"z":0.15162958},"yAxis":{"x":0.18119416,"y":0.97888553,"z":0.09461406}},"center":{"x":2.2107508,"y":35.040386},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":86.058876,"y":101.460785,"z":83.50373},"xAxis":{"x":0.91800696,"y":-0.36299092,"z":0.15968983},"yAxis":{"x":0.3470546,"y":0.9302173,"z":0.11936836}},"center":{"x":2.2107508,"y":39.000385},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":84.375,"y":86.175,"z":10.85},"xAxis":{"x":0.9754194,"y":-0.22035663,"z":0.0},"yAxis":{"x":0.21998009,"y":0.97375256,"z":0.05843533}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":84.375,"y":98.275,"z":10.85},"xAxis":{"x":-0.9931706,"y":0.11667095,"z":0.0},"yAxis":{"x":-0.11647158,"y":-0.9914735,"z":0.05843533}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.93983,"y":85.78591,"z":18.610731},"xAxis":{"x":0.9220643,"y":-0.3869024,"z":-0.010197392},"yAxis":{"x":0.38701782,"y":0.9214386,"z":0.03417823}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.76689,"y":98.70766,"z":18.610731},"xAxis":{"x":-0.95760614,"y":0.28790012,"z":-0.010197392},"yAxis":{"x":-0.28808063,"y":-0.956996,"z":0.03417823}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":81.70575,"y":95.03976,"z":88.28444},"xAxis":{"x":0.28979653,"y":0.95303744,"z":0.08796381},"yAxis":{"x":-0.9412394,"y":0.30044797,"z":-0.15427057}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.58956,"y":85.6218,"z":26.383768},"xAxis":{"x":0.8403786,"y":-0.5417635,"z":-0.016005272},"yAxis":{"x":0.54192764,"y":0.8403822,"z":0.0084957555}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":85.097984,"y":98.90765,"z":26.383768},"xAxis":{"x":-0.89264035,"y":0.45048535,"z":-0.016005272},"yAxis":{"x":-0.45064822,"y":-0.8926612,"z":0.0084957555}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.36224,"y":85.66463,"z":34.162983},"xAxis":{"x":0.7329134,"y":-0.6801034,"z":-0.017242257},"yAxis":{"x":0.6798715,"y":0.73311496,"z":-0.01781001}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":85.32854,"y":98.88895,"z":34.162983},"xAxis":{"x":-0.80030215,"y":0.59934896,"z":-0.017242257},"yAxis":{"x":-0.59909713,"y":-0.8004783,"z":-0.01781001}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.29209,"y":85.88988,"z":41.942062},"xAxis":{"x":0.6030249,"y":-0.79760176,"z":-0.013869713},"yAxis":{"x":0.79654133,"y":0.6029869,"z":-0.04391751}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":85.42197,"y":98.67231,"z":41.942062},"xAxis":{"x":-0.6834754,"y":0.72984177,"z":-0.013869712},"yAxis":{"x":-0.72879124,"y":-0.6833261,"z":-0.04391751}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.408394,"y":86.26735,"z":49.714687},"xAxis":{"x":0.45476973,"y":-0.8905889,"z":-0.005992968},"yAxis":{"x":0.8882934,"y":0.45406196,"z":-0.06901138}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":85.34596,"y":98.28471,"z":49.714687},"xAxis":{"x":-0.5458087,"y":0.8378884,"z":-0.005992967},"yAxis":{"x":-0.83567995,"y":-0.54486364,"z":-0.06901138}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.73463,"y":86.76207,"z":57.474747},"xAxis":{"x":0.29277802,"y":-0.9561607,"z":0.0061419797},"yAxis":{"x":0.9522622,"y":0.29099134,"z":-0.092307925}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":85.0735,"y":97.75845,"z":57.474747},"xAxis":{"x":-0.39160144,"y":0.92011446,"z":0.0061419806},"yAxis":{"x":-0.91642517,"y":-0.38941512,"z":-0.092307925}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.287704,"y":87.33543,"z":65.21652},"xAxis":{"x":0.12210888,"y":-0.9922694,"z":0.022156144},"yAxis":{"x":0.9864499,"y":0.11886781,"z":-0.113079555}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":84.58371,"y":97.13017,"z":65.21652},"xAxis":{"x":-0.22566977,"y":0.9739519,"z":0.022156145},"yAxis":{"x":-0.9685051,"y":-0.2218353,"z":-0.11307956}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":85.07747,"y":87.946335,"z":72.93486},"xAxis":{"x":-0.0519075,"y":-0.9977872,"z":0.041549385},"yAxis":{"x":0.9897889,"y":-0.05693302,"z":-0.13067757}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":83.86249,"y":96.43968,"z":72.93486},"xAxis":{"x":-0.05319585,"y":0.99771935,"z":0.04154939},"yAxis":{"x":-0.9902932,"y":-0.047357924,"z":-0.13067757}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","unit":"","definition":""}]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":82.90298,"y":95.728745,"z":80.62535},"xAxis":{"x":0.12043379,"y":0.9906745,"z":0.06371604},"yAxis":{"x":-0.981109,"y":0.12856795,"z":-0.14455235}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","unit":"","definition":""}]}],"connections":[],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"36876.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"21.297397","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"3.2905e+8","unit":"€","definition":""},{"name":"return","value":"4.1202e+7","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"2.3816e+7","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"4.6906e+6","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"785382.405556","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"4.5893e+7","unit":"€","definition":""},{"name":"maintenance expenses","value":"4.0299e+6","unit":"€/a","definition":""},{"name":"specific energy demand","value":"94.343562","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"660707.555556","unit":"€/a","definition":""},{"name":"heating energy demand","value":"1.2139e+6","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"925684","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"1.1017e+6","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Capsule Dream", + "description": "A wild dream of capsule towers.", + "icon": "icons/capsule-dream.svg", + "image": "images/capsule-dream.png", + "variant": "", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "Nakagin Capsule Tower,,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 27.5, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.099999, + "y": 11.65, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.099999, + "y": 11.65, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.099999, + "y": 11.65, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 39.583332 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 34.083332 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 35.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 18.65, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 10.25, + "z": 32.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 35.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 15.95, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 12.95, + "z": 32.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 15.95, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 15.95, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 35.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 15.95, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 15.95, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 15.95, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 15.95, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 12.95, + "z": 32.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 7.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 10.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 35.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 13.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 15.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 18.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 21.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 24.2 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 26.95 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 18.65, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 29.7 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 10.25, + "z": 32.45 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 8.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 6.7499995, + "z": 8.616667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 7.5499997, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 7.5499997, + "z": 36.116665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 7.5499997, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 7.5499997, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 19.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 6.7499995, + "z": 19.616667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 22.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 6.7499995, + "z": 22.366667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 7.5499997, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 27.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 6.7499995, + "z": 27.866667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 11.75, + "y": 22.15, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 7.5499997, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 6.7499995, + "z": 33.366665 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 8.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 4.0499997, + "z": 8.616667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 4.8499994, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 4.0499997, + "z": 36.116665 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 4.8499994, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 4.8499994, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 19.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 4.0499997, + "z": 19.616667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 22.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 4.0499997, + "z": 22.366667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 4.8499994, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 27.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 4.0499997, + "z": 27.866667 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 9.05, + "y": 24.85, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 4.8499994, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 4.0499997, + "z": 33.366665 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 24.05, + "z": 9.533333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 9.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 24.85, + "z": 12.283333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 37.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 24.85, + "z": 15.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 24.05, + "z": 17.783333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 17.783333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 24.85, + "z": 20.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 24.85, + "z": 23.283333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 23.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 24.05, + "z": 26.033333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 26.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.5499997, + "y": 24.05, + "z": 28.783333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 28.783333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.35, + "y": 24.85, + "z": 31.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.849999, + "y": 4.8499994, + "z": 34.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 21.35, + "z": 9.533333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 9.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 22.15, + "z": 12.283333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 37.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 22.15, + "z": 15.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 21.35, + "z": 17.783333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 17.783333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 22.15, + "z": 20.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 21.35, + "z": 23.283333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 23.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 21.35, + "z": 26.033333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 26.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.85, + "y": 21.35, + "z": 28.783333 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 28.783333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 3.6499999, + "y": 22.15, + "z": 31.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.549999, + "y": 7.5499997, + "z": 34.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 7.5 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 7.5 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 10.25 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 10.25 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 35.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 13.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 13.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 15.75 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 15.75 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 18.5 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 18.5 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 21.25 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 21.25 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 24.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 24.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 26.75 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 26.75 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 20.0, + "z": 29.5 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 29.5 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.7, + "y": 8.9, + "z": 32.25 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 27.5, + "y": 137.5, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.65, + "y": 130.40001, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.65, + "y": 131.90001, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.65, + "y": 133.40001, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 124.8, + "z": 39.583332 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 133.8, + "z": 34.083332 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 134.8, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 124.8, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 135.3, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 124.3, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 119.8, + "z": 35.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 135.8, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 123.8, + "z": 13.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 136.3, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 123.3, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 136.8, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 122.8, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 137.3, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 122.3, + "z": 21.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 137.8, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 121.8, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 138.3, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 121.3, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 138.8, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 120.8, + "z": 29.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 120.3, + "z": 32.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 132.15001, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 127.450005, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 132.65001, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 126.950005, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 122.450005, + "z": 35.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 133.15001, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 133.65001, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 125.950005, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 134.15001, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 125.450005, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 134.65001, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 135.15001, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 124.450005, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 135.65001, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 123.950005, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 136.15001, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 122.950005, + "z": 32.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 127.450005, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 132.15001, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 127.950005, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 131.65001, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 127.15, + "z": 35.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 131.15001, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 128.95, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 130.65001, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 129.45, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 130.15001, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 129.65001, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 130.45, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 129.15001, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 15.8, + "y": 130.95, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 128.65001, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 128.15001, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 13.099999, + "y": 127.65, + "z": 32.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 124.8, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 134.8, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 125.3, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 134.3, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 129.8, + "z": 35.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 125.8, + "z": 13.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 133.8, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 126.3, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 133.3, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 126.8, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 132.8, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 127.3, + "z": 21.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 132.3, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 127.8, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 131.8, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 128.3, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 131.3, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 18.45, + "y": 128.8, + "z": 29.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 130.8, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 10.45, + "y": 130.3, + "z": 32.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 125.600006, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 6.5499997, + "y": 134.0, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 126.100006, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 134.3, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 129.8, + "z": 36.116665 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 126.600006, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 133.8, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 127.100006, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 133.3, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 127.600006, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 6.5499997, + "y": 132.0, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 128.1, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 6.5499997, + "y": 131.5, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 128.6, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 131.8, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 129.1, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 6.5499997, + "y": 130.5, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 129.6, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 130.8, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 6.5499997, + "y": 129.5, + "z": 33.366665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 128.25, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.8999996, + "y": 131.35, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 128.75, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 131.65001, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.8999996, + "y": 126.350006, + "z": 36.116665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 129.25, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 131.15001, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 129.75, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 130.65001, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 130.25, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.8999996, + "y": 129.35, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 130.75, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.8999996, + "y": 128.85, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 131.25, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 129.15001, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 131.75, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.8999996, + "y": 127.850006, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 132.25, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 128.15001, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.8999996, + "y": 126.850006, + "z": 33.366665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 24.2, + "y": 132.15001, + "z": 9.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 127.450005, + "z": 9.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 131.85, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 126.950005, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 122.450005, + "z": 37.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 132.35, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 126.450005, + "z": 15.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 24.2, + "y": 133.65001, + "z": 17.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 125.950005, + "z": 17.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 133.35, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 125.450005, + "z": 20.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 133.85, + "z": 23.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 124.950005, + "z": 23.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 24.2, + "y": 135.15001, + "z": 26.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 124.450005, + "z": 26.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 24.2, + "y": 135.65001, + "z": 28.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 123.950005, + "z": 28.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 25.0, + "y": 135.35, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 123.450005, + "z": 31.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 4.7, + "y": 122.950005, + "z": 34.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 21.55, + "y": 134.8, + "z": 9.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 124.8, + "z": 9.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 134.5, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 124.3, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 119.8, + "z": 37.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 135.0, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 123.8, + "z": 15.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 21.55, + "y": 136.3, + "z": 17.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 123.3, + "z": 17.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 136.0, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 122.8, + "z": 20.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 21.55, + "y": 137.3, + "z": 23.283333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 122.3, + "z": 23.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 21.55, + "y": 137.8, + "z": 26.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 121.8, + "z": 26.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 21.55, + "y": 138.3, + "z": 28.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 121.3, + "z": 28.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 22.35, + "y": 138.0, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 120.8, + "z": 31.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3499994, + "y": 120.3, + "z": 34.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 129.8, + "z": 7.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 129.8, + "z": 7.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 130.3, + "z": 10.25 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 129.3, + "z": 10.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 124.8, + "z": 35.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 130.8, + "z": 13.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 128.8, + "z": 13.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 131.3, + "z": 15.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 128.3, + "z": 15.75 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 131.8, + "z": 18.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 127.8, + "z": 18.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 132.3, + "z": 21.25 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 127.3, + "z": 21.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 132.8, + "z": 24.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 126.8, + "z": 24.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 133.3, + "z": 26.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 126.3, + "z": 26.75 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 20.0, + "y": 133.8, + "z": 29.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 125.8, + "z": 29.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.9, + "y": 125.3, + "z": 32.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 137.5, + "y": 110.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 133.94275, + "y": 117.694786, + "z": 33.27122 + }, + "xAxis": { + "x": -0.5753389, + "y": -0.8177769, + "z": -0.015033832 + }, + "yAxis": { + "x": 0.81772906, + "y": -0.57471883, + "z": -0.031897496 + } + }, + "center": { + "x": -0.12357646, + "y": 10.494074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 137.99884, + "y": 112.53033, + "z": 62.876194 + }, + "xAxis": { + "x": -0.97823864, + "y": -0.17338446, + "z": 0.11396066 + }, + "yAxis": { + "x": 0.1709279, + "y": -0.98479384, + "z": -0.031060498 + } + }, + "center": { + "x": -0.12357646, + "y": 22.374077 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 141.00517, + "y": 106.695335, + "z": 92.48181 + }, + "xAxis": { + "x": -0.7959064, + "y": 0.570233, + "z": 0.20338961 + }, + "yAxis": { + "x": -0.5710203, + "y": -0.8186831, + "z": 0.060776904 + } + }, + "center": { + "x": -0.12357646, + "y": 34.254074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 117.93729, + "y": 123.961006, + "z": 123.16797 + }, + "xAxis": { + "x": -0.31402892, + "y": 0.93382967, + "z": -0.17131259 + }, + "yAxis": { + "x": -0.91865724, + "y": -0.344424, + "z": -0.19349675 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 136.13455, + "y": 111.515366, + "z": 103.420906 + }, + "xAxis": { + "x": -0.7450154, + "y": 0.63712275, + "z": 0.19755179 + }, + "yAxis": { + "x": -0.63599, + "y": -0.7677775, + "z": 0.07768176 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 137.3818, + "y": 112.406906, + "z": 12.989752 + }, + "xAxis": { + "x": -0.09029477, + "y": -0.9953887, + "z": -0.03237674 + }, + "yAxis": { + "x": 0.99420047, + "y": -0.091998495, + "z": 0.055692818 + } + }, + "center": { + "x": -0.93696856, + "y": 0.7832468 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.314926, + "y": 122.0073, + "z": 12.989752 + }, + "xAxis": { + "x": -0.06653002, + "y": 0.997259, + "z": -0.03237674 + }, + "yAxis": { + "x": -0.99635196, + "y": -0.0646614, + "z": 0.055692818 + } + }, + "center": { + "x": 1.124723, + "y": 3.1688933 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 136.52615, + "y": 109.71794, + "z": 22.922638 + }, + "xAxis": { + "x": -0.34421495, + "y": -0.93889034, + "z": -0.0009968684 + }, + "yAxis": { + "x": 0.9385935, + "y": -0.34413248, + "z": 0.024800014 + } + }, + "center": { + "x": -0.93696856, + "y": 4.743247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.73938, + "y": 124.79701, + "z": 22.922638 + }, + "xAxis": { + "x": 0.19310229, + "y": 0.9811781, + "z": -0.0009968645 + }, + "yAxis": { + "x": -0.98087204, + "y": 0.19306725, + "z": 0.024800016 + } + }, + "center": { + "x": 1.124723, + "y": 7.1288934 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 125.62988, + "y": 128.39691, + "z": 114.93756 + }, + "xAxis": { + "x": 0.5112397, + "y": -0.8182523, + "z": 0.26286313 + }, + "yAxis": { + "x": 0.8071614, + "y": 0.56217724, + "z": 0.18013114 + } + }, + "center": { + "x": 1.124723, + "y": 42.76889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 135.40482, + "y": 107.52786, + "z": 32.95115 + }, + "xAxis": { + "x": -0.5736374, + "y": -0.8182601, + "z": 0.03729018 + }, + "yAxis": { + "x": 0.81888974, + "y": -0.5739431, + "z": 0.0029793852 + } + }, + "center": { + "x": -0.93696856, + "y": 8.703246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.50431, + "y": 127.135544, + "z": 32.95115 + }, + "xAxis": { + "x": 0.43857092, + "y": 0.8979226, + "z": 0.037290182 + }, + "yAxis": { + "x": -0.89859235, + "y": 0.43877432, + "z": 0.0029793861 + } + }, + "center": { + "x": 1.124723, + "y": 11.088894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 134.15887, + "y": 105.890015, + "z": 43.069942 + }, + "xAxis": { + "x": -0.76265264, + "y": -0.6418631, + "z": 0.07982934 + }, + "yAxis": { + "x": 0.6433902, + "y": -0.7654939, + "z": -0.008255903 + } + }, + "center": { + "x": -0.93696856, + "y": 12.663246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 124.47869, + "y": 128.94814, + "z": 43.069942 + }, + "xAxis": { + "x": 0.6528536, + "y": 0.75326586, + "z": 0.07982935 + }, + "yAxis": { + "x": -0.7552186, + "y": 0.655421, + "z": -0.008255898 + } + }, + "center": { + "x": 1.124723, + "y": 15.048893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 132.93811, + "y": 104.81945, + "z": 53.267418 + }, + "xAxis": { + "x": -0.8981532, + "y": -0.42193183, + "z": 0.12367071 + }, + "yAxis": { + "x": 0.42426497, + "y": -0.9055016, + "z": -0.008126721 + } + }, + "center": { + "x": -0.93696856, + "y": 16.623247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 125.51694, + "y": 130.19649, + "z": 53.267418 + }, + "xAxis": { + "x": 0.82109076, + "y": 0.55723923, + "z": 0.12367071 + }, + "yAxis": { + "x": -0.5606932, + "y": 0.82798374, + "z": -0.008126717 + } + }, + "center": { + "x": 1.124723, + "y": 19.008894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.89053, + "y": 104.29187, + "z": 63.52652 + }, + "xAxis": { + "x": -0.9707426, + "y": -0.17371759, + "z": 0.16577406 + }, + "yAxis": { + "x": 0.17670953, + "y": -0.98425734, + "z": 0.0033579662 + } + }, + "center": { + "x": -0.93696856, + "y": 20.583248 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 126.469086, + "y": 130.88144, + "z": 63.52652 + }, + "xAxis": { + "x": 0.9316157, + "y": 0.3234364, + "z": 0.16577406 + }, + "yAxis": { + "x": -0.3285057, + "y": 0.94449604, + "z": 0.0033579704 + } + }, + "center": { + "x": 1.124723, + "y": 22.968895 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.15216, + "y": 104.24535, + "z": 73.82591 + }, + "xAxis": { + "x": -0.9753871, + "y": 0.08556697, + "z": 0.2032197 + }, + "yAxis": { + "x": -0.082109146, + "y": -0.99629956, + "z": 0.025401745 + } + }, + "center": { + "x": -0.93696856, + "y": 24.543247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.19109, + "y": 131.0429, + "z": 73.82591 + }, + "xAxis": { + "x": 0.97676414, + "y": 0.068070665, + "z": 0.2032197 + }, + "yAxis": { + "x": -0.074757345, + "y": 0.99687815, + "z": 0.025401747 + } + }, + "center": { + "x": 1.124723, + "y": 26.928894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.83754, + "y": 104.58458, + "z": 84.14147 + }, + "xAxis": { + "x": -0.9117647, + "y": 0.3379415, + "z": 0.23341092 + }, + "yAxis": { + "x": -0.33424303, + "y": -0.94079334, + "z": 0.05647598 + } + }, + "center": { + "x": -0.93696856, + "y": 28.503246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.55491, + "y": 130.75706, + "z": 84.14147 + }, + "xAxis": { + "x": 0.9534051, + "y": -0.19114947, + "z": 0.23341092 + }, + "yAxis": { + "x": 0.18295546, + "y": 0.9814977, + "z": 0.056475975 + } + }, + "center": { + "x": 1.124723, + "y": 30.888893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.03186, + "y": 105.1875, + "z": 94.44796 + }, + "xAxis": { + "x": -0.7842873, + "y": 0.56590486, + "z": 0.25425407 + }, + "yAxis": { + "x": -0.56220764, + "y": -0.8215877, + "z": 0.09442578 + } + }, + "center": { + "x": -0.93696856, + "y": 32.463245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.457306, + "y": 130.13116, + "z": 94.44796 + }, + "xAxis": { + "x": 0.8631584, + "y": -0.4362481, + "z": 0.25425407 + }, + "yAxis": { + "x": 0.42676133, + "y": 0.8994212, + "z": 0.094425775 + } + }, + "center": { + "x": 1.124723, + "y": 34.848892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 126.82706, + "y": 129.29602, + "z": 104.72075 + }, + "xAxis": { + "x": 0.7122824, + "y": -0.6502286, + "z": 0.2643038 + }, + "yAxis": { + "x": 0.63975334, + "y": 0.7563404, + "z": 0.13661948 + } + }, + "center": { + "x": 1.124723, + "y": 38.80889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 134.91252, + "y": 117.57827, + "z": 13.435106 + }, + "xAxis": { + "x": -0.53807175, + "y": -0.83440876, + "z": -0.11933507 + }, + "yAxis": { + "x": 0.8379547, + "y": -0.54483956, + "z": 0.03133347 + } + }, + "center": { + "x": -0.4242164, + "y": 1.8345448 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 125.56278, + "y": 117.28589, + "z": 13.435106 + }, + "xAxis": { + "x": 0.40091687, + "y": 0.90830874, + "z": -0.11933507 + }, + "yAxis": { + "x": -0.91286975, + "y": 0.4070467, + "z": 0.03133347 + } + }, + "center": { + "x": 0.45382434, + "y": 2.2107508 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.48816, + "y": 115.35852, + "z": 23.303574 + }, + "xAxis": { + "x": -0.7386987, + "y": -0.6695792, + "z": -0.07738132 + }, + "yAxis": { + "x": 0.67040634, + "y": -0.74176097, + "z": 0.018601367 + } + }, + "center": { + "x": -0.4242164, + "y": 5.7945447 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.64698, + "y": 119.38825, + "z": 23.303574 + }, + "xAxis": { + "x": 0.62485886, + "y": 0.77689356, + "z": -0.07738131 + }, + "yAxis": { + "x": -0.77818954, + "y": 0.627754, + "z": 0.018601371 + } + }, + "center": { + "x": 0.45382434, + "y": 6.170751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 120.627045, + "y": 130.85843, + "z": 113.54069 + }, + "xAxis": { + "x": 0.09541839, + "y": -0.99164784, + "z": 0.08677476 + }, + "yAxis": { + "x": 0.9532186, + "y": 0.116141684, + "z": 0.27907962 + } + }, + "center": { + "x": 0.45382434, + "y": 41.81075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.86687, + "y": 113.25151, + "z": 33.20622 + }, + "xAxis": { + "x": -0.88840693, + "y": -0.4578397, + "z": -0.033405066 + }, + "yAxis": { + "x": 0.4575195, + "y": -0.88903475, + "z": 0.01712037 + } + }, + "center": { + "x": -0.4242164, + "y": 9.754545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.08572, + "y": 111.30482, + "z": 43.146427 + }, + "xAxis": { + "x": -0.97681475, + "y": -0.2138735, + "z": 0.009544118 + }, + "yAxis": { + "x": 0.21405698, + "y": -0.9764481, + "z": 0.026993174 + } + }, + "center": { + "x": -0.4242164, + "y": 13.714545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 123.42263, + "y": 123.29857, + "z": 43.146427 + }, + "xAxis": { + "x": 0.93133134, + "y": 0.36404783, + "z": 0.009544116 + }, + "yAxis": { + "x": -0.3641717, + "y": 0.93094057, + "z": 0.026993178 + } + }, + "center": { + "x": 0.45382434, + "y": 14.090751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.19292, + "y": 109.55492, + "z": 53.12499 + }, + "xAxis": { + "x": -0.9977914, + "y": 0.045401324, + "z": 0.048487876 + }, + "yAxis": { + "x": -0.043098077, + "y": -0.99793935, + "z": 0.047535144 + } + }, + "center": { + "x": -0.4242164, + "y": 17.674545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 123.043, + "y": 125.010155, + "z": 53.12499 + }, + "xAxis": { + "x": 0.99260926, + "y": 0.11124659, + "z": 0.048487872 + }, + "yAxis": { + "x": -0.11354463, + "y": 0.9923951, + "z": 0.047535148 + } + }, + "center": { + "x": 0.45382434, + "y": 18.050749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.24437, + "y": 108.02462, + "z": 63.14002 + }, + "xAxis": { + "x": -0.94988227, + "y": 0.30200514, + "z": 0.08072562 + }, + "yAxis": { + "x": -0.296113, + "y": -0.9520181, + "z": 0.077321775 + } + }, + "center": { + "x": -0.4242164, + "y": 21.634546 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.2999, + "y": 106.721535, + "z": 73.18712 + }, + "xAxis": { + "x": -0.8364096, + "y": 0.5381435, + "z": 0.1040218 + }, + "yAxis": { + "x": -0.52744234, + "y": -0.84186876, + "z": 0.11428749 + } + }, + "center": { + "x": -0.4242164, + "y": 25.594545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.494095, + "y": 127.791916, + "z": 73.18712 + }, + "xAxis": { + "x": 0.9102962, + "y": -0.4006748, + "z": 0.1040218 + }, + "yAxis": { + "x": 0.38925132, + "y": 0.9140141, + "z": 0.11428749 + } + }, + "center": { + "x": 0.45382434, + "y": 25.970749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.41898, + "y": 105.637474, + "z": 83.25965 + }, + "xAxis": { + "x": -0.6652424, + "y": 0.7374412, + "z": 0.11676091 + }, + "yAxis": { + "x": -0.7210442, + "y": -0.6751298, + "z": 0.15586886 + } + }, + "center": { + "x": -0.4242164, + "y": 29.554544 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.206894, + "y": 128.844, + "z": 83.25965 + }, + "xAxis": { + "x": 0.7724133, + "y": -0.62429523, + "z": 0.11676091 + }, + "yAxis": { + "x": 0.6065534, + "y": 0.779614, + "z": 0.15586886 + } + }, + "center": { + "x": 0.45382434, + "y": 29.930748 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.65674, + "y": 104.74911, + "z": 93.34923 + }, + "xAxis": { + "x": -0.44825023, + "y": 0.8860777, + "z": 0.11805953 + }, + "yAxis": { + "x": -0.8634931, + "y": -0.46336386, + "z": 0.19918239 + } + }, + "center": { + "x": -0.4242164, + "y": 33.51454 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.32063, + "y": 130.34178, + "z": 103.44627 + }, + "xAxis": { + "x": 0.3503399, + "y": -0.9303952, + "z": 0.10782764 + }, + "yAxis": { + "x": 0.89866537, + "y": 0.36634862, + "z": 0.24122445 + } + }, + "center": { + "x": 0.45382434, + "y": 37.85075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 129.26485, + "y": 119.52754, + "z": 13.36509 + }, + "xAxis": { + "x": 0.08606999, + "y": 0.9891255, + "z": 0.11925897 + }, + "yAxis": { + "x": -0.99278396, + "y": 0.09518274, + "z": -0.07294013 + } + }, + "center": { + "x": -0.7832468, + "y": 2.8772452 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 131.44586, + "y": 116.2441, + "z": 13.36509 + }, + "xAxis": { + "x": 0.06972301, + "y": -0.99041206, + "z": 0.11925897 + }, + "yAxis": { + "x": 0.995451, + "y": 0.061294764, + "z": -0.07294013 + } + }, + "center": { + "x": 0.6453203, + "y": 1.124723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.53271, + "y": 118.69622, + "z": 23.368233 + }, + "xAxis": { + "x": 0.34198764, + "y": 0.9355641, + "z": 0.08811502 + }, + "yAxis": { + "x": -0.93709475, + "y": 0.34651875, + "z": -0.042168815 + } + }, + "center": { + "x": -0.7832468, + "y": 6.837245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.06354, + "y": 116.866844, + "z": 23.368233 + }, + "xAxis": { + "x": -0.19142272, + "y": -0.9775444, + "z": 0.08811502 + }, + "yAxis": { + "x": 0.979765, + "y": -0.19565862, + "z": -0.04216882 + } + }, + "center": { + "x": 0.6453203, + "y": 5.0847235 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 115.15579, + "y": 128.79222, + "z": 112.31718 + }, + "xAxis": { + "x": -0.53402984, + "y": 0.826285, + "z": -0.17906766 + }, + "yAxis": { + "x": -0.8033065, + "y": -0.5619361, + "z": -0.1972979 + } + }, + "center": { + "x": 0.6453203, + "y": 40.72472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.52435, + "y": 117.5765, + "z": 33.34264 + }, + "xAxis": { + "x": -0.43918693, + "y": -0.8970081, + "z": 0.049912926 + }, + "yAxis": { + "x": 0.89748985, + "y": -0.44056073, + "z": -0.020449623 + } + }, + "center": { + "x": 0.6453203, + "y": 9.044723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 133.45811, + "y": 116.66922, + "z": 43.28672 + }, + "xAxis": { + "x": 0.7663193, + "y": 0.64241844, + "z": 0.0073018465 + }, + "yAxis": { + "x": -0.64235586, + "y": 0.7663502, + "z": -0.009288694 + } + }, + "center": { + "x": -0.7832468, + "y": 14.757245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.85706, + "y": 118.411255, + "z": 43.28672 + }, + "xAxis": { + "x": -0.6563883, + "y": -0.7543879, + "z": 0.0073018465 + }, + "yAxis": { + "x": 0.75433093, + "y": -0.65642864, + "z": -0.0092886975 + } + }, + "center": { + "x": 0.6453203, + "y": 13.004723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 135.03949, + "y": 115.41705, + "z": 53.200996 + }, + "xAxis": { + "x": 0.9053076, + "y": 0.4231626, + "z": -0.03676331 + }, + "yAxis": { + "x": -0.42374516, + "y": 0.90573204, + "z": -0.009459998 + } + }, + "center": { + "x": -0.7832468, + "y": 18.717243 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.099266, + "y": 119.40063, + "z": 53.200996 + }, + "xAxis": { + "x": -0.82796454, + "y": -0.55957407, + "z": -0.03676331 + }, + "yAxis": { + "x": 0.56021583, + "y": -0.82829267, + "z": -0.009460002 + } + }, + "center": { + "x": 0.6453203, + "y": 16.964722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 123.2949, + "y": 120.56341, + "z": 63.08804 + }, + "xAxis": { + "x": -0.9420178, + "y": -0.32607606, + "z": -0.07922681 + }, + "yAxis": { + "x": 0.3286056, + "y": -0.94423485, + "z": -0.020951657 + } + }, + "center": { + "x": 0.6453203, + "y": 20.924723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 138.21127, + "y": 112.37771, + "z": 72.95233 + }, + "xAxis": { + "x": 0.9894063, + "y": -0.0857469, + "z": -0.11714399 + }, + "yAxis": { + "x": 0.081211254, + "y": 0.99577034, + "z": -0.04296676 + } + }, + "center": { + "x": -0.7832468, + "y": 26.637245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.49107, + "y": 121.90637, + "z": 72.95233 + }, + "xAxis": { + "x": -0.9906388, + "y": -0.070086025, + "z": -0.11714399 + }, + "yAxis": { + "x": 0.07556139, + "y": -0.996215, + "z": -0.04296676 + } + }, + "center": { + "x": 0.6453203, + "y": 24.884722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 139.70845, + "y": 110.60424, + "z": 82.799904 + }, + "xAxis": { + "x": 0.9286847, + "y": -0.34010977, + "z": -0.14788543 + }, + "yAxis": { + "x": 0.33254027, + "y": 0.94018304, + "z": -0.07397867 + } + }, + "center": { + "x": -0.7832468, + "y": 30.597244 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 119.734886, + "y": 123.42379, + "z": 82.799904 + }, + "xAxis": { + "x": -0.97045594, + "y": 0.19064417, + "z": -0.14788543 + }, + "yAxis": { + "x": -0.18136914, + "y": -0.98062855, + "z": -0.07397867 + } + }, + "center": { + "x": 0.6453203, + "y": 28.84472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.07013, + "y": 125.09785, + "z": 92.63797 + }, + "xAxis": { + "x": -0.88286877, + "y": 0.4380339, + "z": -0.16931933 + }, + "yAxis": { + "x": -0.4243689, + "y": -0.89855635, + "z": -0.11183681 + } + }, + "center": { + "x": 0.6453203, + "y": 32.80472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.53426, + "y": 126.89984, + "z": 102.4744 + }, + "xAxis": { + "x": -0.73395115, + "y": 0.65492773, + "z": -0.17995936 + }, + "yAxis": { + "x": -0.63658684, + "y": -0.7556898, + "z": -0.1539159 + } + }, + "center": { + "x": 0.6453203, + "y": 36.76472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.13435, + "y": 116.95325, + "z": 13.079913 + }, + "xAxis": { + "x": 0.53869915, + "y": 0.8313422, + "z": 0.13665034 + }, + "yAxis": { + "x": -0.8420566, + "y": 0.5365383, + "z": 0.055383664 + } + }, + "center": { + "x": -1.8345448, + "y": 3.3899975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 136.11047, + "y": 119.58929, + "z": 13.079913 + }, + "xAxis": { + "x": -0.40201628, + "y": -0.90537816, + "z": 0.13665034 + }, + "yAxis": { + "x": 0.91562253, + "y": -0.39820597, + "z": 0.055383664 + } + }, + "center": { + "x": 1.603463, + "y": 0.45382434 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.905914, + "y": 117.52671, + "z": 23.329191 + }, + "xAxis": { + "x": 0.73920655, + "y": 0.666781, + "z": 0.09474588 + }, + "yAxis": { + "x": -0.6730452, + "y": 0.7364311, + "z": 0.06840568 + } + }, + "center": { + "x": -1.8345448, + "y": 7.3499975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.43813, + "y": 118.90219, + "z": 23.329191 + }, + "xAxis": { + "x": -0.62579817, + "y": -0.7742092, + "z": 0.09474588 + }, + "yAxis": { + "x": 0.7799621, + "y": -0.6220769, + "z": 0.06840568 + } + }, + "center": { + "x": 1.603463, + "y": 4.4138246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 112.743484, + "y": 123.575806, + "z": 112.316536 + }, + "xAxis": { + "x": -0.09777797, + "y": 0.9927873, + "z": -0.069375046 + }, + "yAxis": { + "x": -0.9746976, + "y": -0.109609395, + "z": -0.19480874 + } + }, + "center": { + "x": 1.603463, + "y": 40.05382 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 126.206604, + "y": 118.07464, + "z": 33.52624 + }, + "xAxis": { + "x": 0.8888702, + "y": 0.45533243, + "z": 0.050815266 + }, + "yAxis": { + "x": -0.4579707, + "y": 0.88620365, + "z": 0.07004257 + } + }, + "center": { + "x": -1.8345448, + "y": 11.309998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 134.23915, + "y": 118.15753, + "z": 33.52624 + }, + "xAxis": { + "x": -0.806697, + "y": -0.58877647, + "z": 0.050815262 + }, + "yAxis": { + "x": 0.59096515, + "y": -0.80365056, + "z": 0.07004257 + } + }, + "center": { + "x": 1.603463, + "y": 8.373823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.00957, + "y": 118.4605, + "z": 43.654037 + }, + "xAxis": { + "x": 0.9773115, + "y": 0.21165964, + "z": 0.007904895 + }, + "yAxis": { + "x": -0.21174754, + "y": 0.97546977, + "z": 0.060180828 + } + }, + "center": { + "x": -1.8345448, + "y": 15.269998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.51874, + "y": 117.49437, + "z": 43.654037 + }, + "xAxis": { + "x": -0.9321683, + "y": -0.36193895, + "z": 0.0079048965 + }, + "yAxis": { + "x": 0.36173764, + "y": -0.9303355, + "z": 0.060180824 + } + }, + "center": { + "x": 1.603463, + "y": 12.333823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 130.25316, + "y": 118.55902, + "z": 53.700356 + }, + "xAxis": { + "x": 0.9983974, + "y": -0.047339655, + "z": -0.031009555 + }, + "yAxis": { + "x": 0.04854965, + "y": 0.99803925, + "z": 0.03950432 + } + }, + "center": { + "x": -1.8345448, + "y": 19.229996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 130.31818, + "y": 117.04609, + "z": 53.700356 + }, + "xAxis": { + "x": -0.993511, + "y": -0.10942692, + "z": -0.031009555 + }, + "yAxis": { + "x": 0.1081758, + "y": -0.9933466, + "z": 0.039504316 + } + }, + "center": { + "x": 1.603463, + "y": 16.293823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.84514, + "y": 118.26483, + "z": 63.658615 + }, + "xAxis": { + "x": 0.9506657, + "y": -0.30370492, + "z": -0.06322954 + }, + "yAxis": { + "x": 0.30487037, + "y": 0.952347, + "z": 0.009446877 + } + }, + "center": { + "x": -1.8345448, + "y": 23.189997 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.71209, + "y": 116.93118, + "z": 63.658615 + }, + "xAxis": { + "x": -0.98647135, + "y": 0.15124895, + "z": -0.06322954 + }, + "yAxis": { + "x": -0.15213701, + "y": -0.9883143, + "z": 0.009446874 + } + }, + "center": { + "x": 1.603463, + "y": 20.253824 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.66913, + "y": 117.49981, + "z": 73.52836 + }, + "xAxis": { + "x": 0.8374265, + "y": -0.5396583, + "z": -0.08652073 + }, + "yAxis": { + "x": 0.5394398, + "y": 0.8415616, + "z": -0.027907139 + } + }, + "center": { + "x": -1.8345448, + "y": 27.149996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.803185, + "y": 117.24501, + "z": 73.52836 + }, + "xAxis": { + "x": -0.9115375, + "y": 0.40201184, + "z": -0.08652073 + }, + "yAxis": { + "x": -0.40114912, + "y": -0.91558754, + "z": -0.02790714 + } + }, + "center": { + "x": 1.603463, + "y": 24.213823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 138.59265, + "y": 116.21848, + "z": 83.31523 + }, + "xAxis": { + "x": 0.6665323, + "y": -0.7388373, + "z": -0.09926797 + }, + "yAxis": { + "x": 0.7359914, + "y": 0.67336553, + "z": -0.06996738 + } + }, + "center": { + "x": -1.8345448, + "y": 31.109995 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.71521, + "y": 118.05322, + "z": 83.31523 + }, + "xAxis": { + "x": -0.77390575, + "y": 0.62547237, + "z": -0.09926797 + }, + "yAxis": { + "x": -0.6215926, + "y": -0.7802097, + "z": -0.06996738 + } + }, + "center": { + "x": 1.603463, + "y": 28.173822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 141.47635, + "y": 114.41117, + "z": 93.03068 + }, + "xAxis": { + "x": 0.44983405, + "y": -0.8874297, + "z": -0.10058728 + }, + "yAxis": { + "x": 0.8808953, + "y": 0.4594226, + "z": -0.11381713 + } + }, + "center": { + "x": -1.8345448, + "y": 35.069996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.58429, + "y": 119.387184, + "z": 93.03068 + }, + "xAxis": { + "x": -0.5831204, + "y": 0.80613446, + "z": -0.100587286 + }, + "yAxis": { + "x": -0.7981805, + "y": -0.5915687, + "z": -0.113817126 + } + }, + "center": { + "x": 1.603463, + "y": 32.133823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.54957, + "y": 121.241776, + "z": 102.69105 + }, + "xAxis": { + "x": -0.35241157, + "y": 0.9314699, + "z": -0.0903872 + }, + "yAxis": { + "x": -0.91866726, + "y": -0.36274594, + "z": -0.1564156 + } + }, + "center": { + "x": 1.603463, + "y": 36.093822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.898094, + "y": 111.19636, + "z": 13.386254 + }, + "xAxis": { + "x": -0.9961783, + "y": 0.086254425, + "z": 0.013745277 + }, + "yAxis": { + "x": -0.087324694, + "y": -0.98676294, + "z": -0.13665034 + } + }, + "center": { + "x": -2.8772452, + "y": 3.030967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 137.41862, + "y": 125.62514, + "z": 13.386254 + }, + "xAxis": { + "x": 0.9974069, + "y": 0.07064415, + "z": 0.013745278 + }, + "yAxis": { + "x": -0.06811417, + "y": 0.9882748, + "z": -0.13665034 + } + }, + "center": { + "x": 2.6894908, + "y": 0.6453203 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.27969, + "y": 112.54775, + "z": 23.874218 + }, + "xAxis": { + "x": -0.9392128, + "y": 0.34040016, + "z": 0.044800572 + }, + "yAxis": { + "x": -0.34328505, + "y": -0.93328565, + "z": -0.10551448 + } + }, + "center": { + "x": -2.8772452, + "y": 6.990967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 138.08324, + "y": 124.62007, + "z": 23.844154 + }, + "xAxis": { + "x": -0.19306059, + "y": -0.97549695, + "z": 0.10551448 + }, + "yAxis": { + "x": 0.9808998, + "y": -0.18928403, + "z": 0.044800572 + } + }, + "center": { + "x": 2.6894908, + "y": 4.6053205 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 114.51503, + "y": 117.80386, + "z": 114.188 + }, + "xAxis": { + "x": -0.53632927, + "y": 0.8283651, + "z": -0.1617471 + }, + "yAxis": { + "x": -0.8238691, + "y": -0.55544287, + "z": -0.112795725 + } + }, + "center": { + "x": 2.6894908, + "y": 40.245316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.4476, + "y": 114.21, + "z": 34.33437 + }, + "xAxis": { + "x": -0.8176738, + "y": 0.571807, + "z": 0.0666806 + }, + "yAxis": { + "x": -0.5754634, + "y": -0.81505233, + "z": -0.06731664 + } + }, + "center": { + "x": -2.8772452, + "y": 10.950967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 138.24376, + "y": 122.985435, + "z": 34.30757 + }, + "xAxis": { + "x": -0.44087622, + "y": -0.89504004, + "z": 0.06731664 + }, + "yAxis": { + "x": 0.89705724, + "y": -0.43685472, + "z": 0.0666806 + } + }, + "center": { + "x": 2.6894908, + "y": 8.565319 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 122.45352, + "y": 115.96931, + "z": 44.731438 + }, + "xAxis": { + "x": -0.6399897, + "y": 0.7644278, + "z": 0.077868074 + }, + "yAxis": { + "x": -0.76775914, + "y": -0.64026207, + "z": -0.02470567 + } + }, + "center": { + "x": -2.8772452, + "y": 14.910967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 137.59796, + "y": 121.10553, + "z": 44.710922 + }, + "xAxis": { + "x": -0.6581477, + "y": -0.75248337, + "z": 0.02470567 + }, + "yAxis": { + "x": 0.7516931, + "y": -0.65489995, + "z": 0.077868074 + } + }, + "center": { + "x": 2.6894908, + "y": 12.52532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 124.29106, + "y": 117.60513, + "z": 55.034527 + }, + "xAxis": { + "x": -0.418482, + "y": 0.90490496, + "z": 0.07758719 + }, + "yAxis": { + "x": -0.9068373, + "y": -0.42103586, + "z": 0.01936351 + } + }, + "center": { + "x": -2.8772452, + "y": 18.870966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 136.05765, + "y": 118.92091, + "z": 55.034527 + }, + "xAxis": { + "x": 0.5548881, + "y": -0.8282991, + "z": 0.07758719 + }, + "yAxis": { + "x": 0.8298081, + "y": 0.5577128, + "z": 0.01936351 + } + }, + "center": { + "x": 2.6894908, + "y": 16.48532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.89615, + "y": 118.90552, + "z": 65.219246 + }, + "xAxis": { + "x": -0.16851151, + "y": 0.98349714, + "z": 0.06585742 + }, + "yAxis": { + "x": -0.9830534, + "y": -0.17257608, + "z": 0.061834898 + } + }, + "center": { + "x": -2.8772452, + "y": 22.830967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 133.68806, + "y": 117.229004, + "z": 65.219246 + }, + "xAxis": { + "x": 0.3202897, + "y": -0.94502765, + "z": 0.06585742 + }, + "yAxis": { + "x": 0.9439535, + "y": 0.3242348, + "z": 0.061834894 + } + }, + "center": { + "x": 2.6894908, + "y": 20.44532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.1515, + "y": 119.68176, + "z": 75.26943 + }, + "xAxis": { + "x": 0.09258743, + "y": 0.99475425, + "z": 0.043492176 + }, + "yAxis": { + "x": -0.9911221, + "y": 0.08788756, + "z": 0.09976327 + } + }, + "center": { + "x": -2.8772452, + "y": 26.790966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.77992, + "y": 116.166115, + "z": 75.28069 + }, + "xAxis": { + "x": -0.9926684, + "y": -0.068240136, + "z": -0.09976327 + }, + "yAxis": { + "x": 0.06416633, + "y": -0.99699104, + "z": 0.043492176 + } + }, + "center": { + "x": 2.6894908, + "y": 24.40532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 133.89473, + "y": 119.78151, + "z": 85.17824 + }, + "xAxis": { + "x": 0.3467086, + "y": 0.9378956, + "z": 0.012042396 + }, + "yAxis": { + "x": -0.930484, + "y": 0.34229296, + "z": 0.13051844 + } + }, + "center": { + "x": -2.8772452, + "y": 30.750965 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.91268, + "y": 115.26898, + "z": 85.17824 + }, + "xAxis": { + "x": -0.19572088, + "y": -0.9805857, + "z": 0.012042397 + }, + "yAxis": { + "x": 0.9725746, + "y": -0.19251902, + "z": 0.13051844 + } + }, + "center": { + "x": 2.6894908, + "y": 28.365318 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 137.92961, + "y": 119.099304, + "z": 94.948616 + }, + "xAxis": { + "x": 0.57622975, + "y": 0.81686413, + "z": -0.026311003 + }, + "yAxis": { + "x": -0.805344, + "y": 0.57299817, + "z": 0.15196766 + } + }, + "center": { + "x": -2.8772452, + "y": 34.710964 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.08604, + "y": 115.403, + "z": 94.984276 + }, + "xAxis": { + "x": -0.8850655, + "y": 0.43996006, + "z": -0.15196766 + }, + "yAxis": { + "x": -0.44134974, + "y": -0.89694935, + "z": -0.026310997 + } + }, + "center": { + "x": 2.6894908, + "y": 32.325317 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.52421, + "y": 116.16535, + "z": 104.59315 + }, + "xAxis": { + "x": -0.655687, + "y": -0.7518818, + "z": -0.068908356 + }, + "yAxis": { + "x": 0.7362096, + "y": -0.65692395, + "z": 0.16262354 + } + }, + "center": { + "x": 2.6894908, + "y": 36.285316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.484, + "y": 106.071236, + "z": 13.109857 + }, + "xAxis": { + "x": -0.84092474, + "y": 0.5362139, + "z": 0.07294013 + }, + "yAxis": { + "x": -0.5400496, + "y": -0.8401528, + "z": -0.049896974 + } + }, + "center": { + "x": -3.3899975, + "y": 1.979669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 134.0628, + "y": 130.28264, + "z": 13.109857 + }, + "xAxis": { + "x": 0.9144539, + "y": -0.39806253, + "z": 0.07294013 + }, + "yAxis": { + "x": 0.40197182, + "y": 0.9142915, + "z": -0.049896974 + } + }, + "center": { + "x": 3.3603892, + "y": 1.603463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 122.44892, + "y": 106.92495, + "z": 23.656837 + }, + "xAxis": { + "x": -0.6713363, + "y": 0.7361562, + "z": 0.08591624 + }, + "yAxis": { + "x": -0.73931795, + "y": -0.67331153, + "z": -0.007780733 + } + }, + "center": { + "x": -3.3899975, + "y": 5.939669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.1757, + "y": 130.03833, + "z": 23.638098 + }, + "xAxis": { + "x": -0.62488663, + "y": -0.7806767, + "z": 0.0077807303 + }, + "yAxis": { + "x": 0.7782312, + "y": -0.6220728, + "z": 0.08591624 + } + }, + "center": { + "x": 3.3603892, + "y": 5.5634627 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.26449, + "y": 115.53506, + "z": 115.68764 + }, + "xAxis": { + "x": -0.97830814, + "y": -0.106028914, + "z": -0.17796355 + }, + "yAxis": { + "x": 0.078710705, + "y": -0.9849135, + "z": 0.15411016 + } + }, + "center": { + "x": 3.3603892, + "y": 41.203457 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.12335, + "y": 108.47277, + "z": 34.237774 + }, + "xAxis": { + "x": -0.4556935, + "y": 0.885827, + "z": 0.087486446 + }, + "yAxis": { + "x": -0.887191, + "y": -0.4599758, + "z": 0.03625492 + } + }, + "center": { + "x": -3.3899975, + "y": 9.899668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 137.80089, + "y": 128.71573, + "z": 34.227528 + }, + "xAxis": { + "x": -0.8043121, + "y": -0.5931, + "z": -0.03625492 + }, + "yAxis": { + "x": 0.5886571, + "y": -0.8036349, + "z": 0.08748644 + } + }, + "center": { + "x": 3.3603892, + "y": 9.523462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.66257, + "y": 110.50884, + "z": 44.80902 + }, + "xAxis": { + "x": -0.20895049, + "y": 0.97484714, + "z": 0.07754184 + }, + "yAxis": { + "x": -0.97341424, + "y": -0.21493964, + "z": 0.079156294 + } + }, + "center": { + "x": -3.3899975, + "y": 13.859668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 138.64517, + "y": 126.75641, + "z": 44.809345 + }, + "xAxis": { + "x": -0.9278059, + "y": -0.3645689, + "z": -0.079156294 + }, + "yAxis": { + "x": 0.35887763, + "y": -0.93015814, + "z": 0.077541836 + } + }, + "center": { + "x": 3.3603892, + "y": 13.483462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.16187, + "y": 112.79343, + "z": 55.327602 + }, + "xAxis": { + "x": 0.051782206, + "y": 0.9970434, + "z": 0.05677206 + }, + "yAxis": { + "x": -0.99200845, + "y": 0.04480468, + "z": 0.11794834 + } + }, + "center": { + "x": -3.3899975, + "y": 17.819668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 138.3956, + "y": 124.162895, + "z": 55.327602 + }, + "xAxis": { + "x": 0.10482726, + "y": -0.99286866, + "z": 0.056772057 + }, + "yAxis": { + "x": 0.9868042, + "y": 0.11093123, + "z": 0.11794834 + } + }, + "center": { + "x": 3.3603892, + "y": 17.443464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 122.650024, + "y": 115.06957, + "z": 65.75419 + }, + "xAxis": { + "x": 0.30842382, + "y": 0.9508766, + "z": 0.026617395 + }, + "yAxis": { + "x": -0.9416842, + "y": 0.301245, + "z": 0.14994101 + } + }, + "center": { + "x": -3.3899975, + "y": 21.779669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 137.28183, + "y": 121.68197, + "z": 65.75419 + }, + "xAxis": { + "x": -0.15587676, + "y": -0.9874178, + "z": 0.026617393 + }, + "yAxis": { + "x": 0.9772156, + "y": -0.15022431, + "z": 0.149941 + } + }, + "center": { + "x": 3.3603892, + "y": 21.403465 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.08717, + "y": 117.08092, + "z": 76.05584 + }, + "xAxis": { + "x": 0.5431773, + "y": 0.8395482, + "z": -0.01083105 + }, + "yAxis": { + "x": -0.8259313, + "y": 0.5365982, + "z": 0.17291573 + } + }, + "center": { + "x": -3.3899975, + "y": 25.739668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.4503, + "y": 119.41681, + "z": 76.09259 + }, + "xAxis": { + "x": -0.8997052, + "y": 0.40078765, + "z": -0.17291573 + }, + "yAxis": { + "x": -0.40515563, + "y": -0.91418356, + "z": -0.010831051 + } + }, + "center": { + "x": 3.3603892, + "y": 25.363464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.36768, + "y": 118.589455, + "z": 86.20826 + }, + "xAxis": { + "x": 0.73976344, + "y": 0.67077833, + "z": -0.05297638 + }, + "yAxis": { + "x": -0.6527768, + "y": 0.73454344, + "z": 0.18527928 + } + }, + "center": { + "x": -3.3899975, + "y": 29.699667 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.18521, + "y": 117.31098, + "z": 86.20826 + }, + "xAxis": { + "x": -0.6257229, + "y": -0.7782444, + "z": -0.052976377 + }, + "yAxis": { + "x": 0.7596479, + "y": -0.6233832, + "z": 0.18527928 + } + }, + "center": { + "x": 3.3603892, + "y": 29.323463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.32741, + "y": 119.392044, + "z": 96.19753 + }, + "xAxis": { + "x": 0.8845498, + "y": 0.45627055, + "z": -0.09689598 + }, + "yAxis": { + "x": -0.43422812, + "y": 0.8813541, + "z": 0.1861743 + } + }, + "center": { + "x": -3.3899975, + "y": 33.659668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.6736, + "y": 115.85613, + "z": 96.25415 + }, + "xAxis": { + "x": -0.5667562, + "y": 0.80257493, + "z": -0.18617432 + }, + "yAxis": { + "x": -0.8022831, + "y": -0.58902717, + "z": -0.09689597 + } + }, + "center": { + "x": 3.3603892, + "y": 33.28346 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.017586, + "y": 115.26304, + "z": 106.02104 + }, + "xAxis": { + "x": -0.9225925, + "y": -0.3596533, + "z": -0.13954419 + }, + "yAxis": { + "x": 0.3344063, + "y": -0.9259366, + "z": 0.17553876 + } + }, + "center": { + "x": 3.3603892, + "y": 37.243458 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.16983, + "y": 103.7827, + "z": 13.928757 + }, + "xAxis": { + "x": -0.08804783, + "y": -0.9948696, + "z": -0.049820874 + }, + "yAxis": { + "x": 0.99575406, + "y": -0.086557, + "z": -0.03133347 + } + }, + "center": { + "x": -3.030967, + "y": 0.93696856 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 128.08899, + "y": 131.65353, + "z": 13.928757 + }, + "xAxis": { + "x": -0.06866809, + "y": 0.9963948, + "z": -0.049820874 + }, + "yAxis": { + "x": -0.99703515, + "y": -0.07027893, + "z": -0.03133347 + } + }, + "center": { + "x": 3.1688933, + "y": 2.6894908 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.63999, + "y": 103.38346, + "z": 24.339933 + }, + "xAxis": { + "x": -0.93802464, + "y": 0.34091404, + "z": 0.062348798 + }, + "yAxis": { + "x": -0.34260687, + "y": -0.9392964, + "z": -0.018514436 + } + }, + "center": { + "x": -3.030967, + "y": 4.896969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 130.75946, + "y": 132.60188, + "z": 24.3487 + }, + "xAxis": { + "x": 0.19145048, + "y": 0.98132765, + "z": -0.018514432 + }, + "yAxis": { + "x": -0.9798067, + "y": 0.18997745, + "z": -0.062348798 + } + }, + "center": { + "x": 3.1688933, + "y": 6.6494904 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 124.76105, + "y": 117.500496, + "z": 117.7276 + }, + "xAxis": { + "x": 0.5173222, + "y": -0.8195507, + "z": 0.24640305 + }, + "yAxis": { + "x": 0.8283961, + "y": 0.5518233, + "z": 0.09618185 + } + }, + "center": { + "x": 3.1688933, + "y": 42.289486 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 125.25324, + "y": 103.72622, + "z": 34.84625 + }, + "xAxis": { + "x": -0.8156954, + "y": 0.5723273, + "z": 0.08415719 + }, + "yAxis": { + "x": -0.5728869, + "y": -0.81939656, + "z": 0.019747058 + } + }, + "center": { + "x": -3.030967, + "y": 8.856968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 133.20276, + "y": 132.57068, + "z": 34.86703 + }, + "xAxis": { + "x": 0.43765178, + "y": 0.8989277, + "z": 0.01974706 + }, + "yAxis": { + "x": -0.8951846, + "y": 0.43767813, + "z": -0.08415719 + } + }, + "center": { + "x": 3.1688933, + "y": 10.60949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 123.175156, + "y": 104.8946, + "z": 45.444443 + }, + "xAxis": { + "x": -0.7629188, + "y": -0.6434846, + "z": 0.062310327 + }, + "yAxis": { + "x": 0.63724935, + "y": -0.7647492, + "z": -0.09524632 + } + }, + "center": { + "x": -3.030967, + "y": 12.816968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.17146, + "y": 131.64952, + "z": 45.444443 + }, + "xAxis": { + "x": 0.65286285, + "y": 0.754909, + "z": 0.062310327 + }, + "yAxis": { + "x": -0.7490369, + "y": 0.65564615, + "z": -0.09524632 + } + }, + "center": { + "x": 3.1688933, + "y": 14.56949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.433876, + "y": 106.63798, + "z": 55.997314 + }, + "xAxis": { + "x": -0.41506103, + "y": 0.9048361, + "z": 0.0948472 + }, + "yAxis": { + "x": -0.8995247, + "y": -0.42375925, + "z": 0.10622378 + } + }, + "center": { + "x": -3.030967, + "y": 16.77697 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 136.45107, + "y": 129.98967, + "z": 56.03753 + }, + "xAxis": { + "x": 0.82215947, + "y": 0.5592587, + "z": 0.10622378 + }, + "yAxis": { + "x": -0.5514985, + "y": 0.8287662, + "z": -0.0948472 + } + }, + "center": { + "x": 3.1688933, + "y": 18.529491 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.32351, + "y": 108.808, + "z": 66.55551 + }, + "xAxis": { + "x": -0.16453825, + "y": 0.98287344, + "z": 0.08298752 + }, + "yAxis": { + "x": -0.9732315, + "y": -0.17545763, + "z": 0.1484422 + } + }, + "center": { + "x": -3.030967, + "y": 20.736969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 136.87482, + "y": 127.79363, + "z": 66.6018 + }, + "xAxis": { + "x": 0.9338018, + "y": 0.3255444, + "z": 0.1484422 + }, + "yAxis": { + "x": -0.3162678, + "y": 0.9450332, + "z": -0.08298751 + } + }, + "center": { + "x": 3.1688933, + "y": 22.489492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 123.01869, + "y": 111.34694, + "z": 77.094765 + }, + "xAxis": { + "x": -0.97892797, + "y": 0.08420157, + "z": 0.18603791 + }, + "yAxis": { + "x": -0.096946254, + "y": -0.99344975, + "z": -0.060489677 + } + }, + "center": { + "x": -3.030967, + "y": 24.696968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 136.33536, + "y": 125.301094, + "z": 77.094765 + }, + "xAxis": { + "x": 0.98004776, + "y": 0.06997317, + "z": 0.18603791 + }, + "yAxis": { + "x": -0.059657097, + "y": 0.9963845, + "z": -0.060489673 + } + }, + "center": { + "x": 3.1688933, + "y": 26.449492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 124.93854, + "y": 113.603165, + "z": 87.47887 + }, + "xAxis": { + "x": -0.9162191, + "y": 0.33721203, + "z": 0.2164038 + }, + "yAxis": { + "x": -0.35125956, + "y": -0.93583155, + "z": -0.028913813 + } + }, + "center": { + "x": -3.030967, + "y": 28.656967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.7921, + "y": 122.77232, + "z": 87.47887 + }, + "xAxis": { + "x": 0.9576905, + "y": -0.18973216, + "z": 0.2164038 + }, + "yAxis": { + "x": 0.20053868, + "y": 0.979259, + "z": -0.028913813 + } + }, + "center": { + "x": 3.1688933, + "y": 30.40949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.82747, + "y": 115.20716, + "z": 97.678535 + }, + "xAxis": { + "x": 0.5807661, + "y": 0.8140145, + "z": -0.009550408 + }, + "yAxis": { + "x": -0.78945345, + "y": 0.5660285, + "z": 0.2374341 + } + }, + "center": { + "x": -3.030967, + "y": 32.616966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.27406, + "y": 120.47006, + "z": 97.72411 + }, + "xAxis": { + "x": 0.86828035, + "y": -0.43556204, + "z": 0.2374341 + }, + "yAxis": { + "x": 0.44627598, + "y": 0.8948444, + "z": 0.009550402 + } + }, + "center": { + "x": 3.1688933, + "y": 34.369488 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 128.87787, + "y": 118.64139, + "z": 107.810135 + }, + "xAxis": { + "x": 0.7180175, + "y": -0.6504692, + "z": 0.24767049 + }, + "yAxis": { + "x": 0.660514, + "y": 0.74899447, + "z": 0.05223564 + } + }, + "center": { + "x": 3.1688933, + "y": 38.329487 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.29613, + "y": 106.344864, + "z": 14.360628 + }, + "xAxis": { + "x": -0.54166925, + "y": -0.83996797, + "z": -0.03237674 + }, + "yAxis": { + "x": 0.8400787, + "y": -0.5422824, + "z": 0.014054429 + } + }, + "center": { + "x": -1.979669, + "y": 0.4242164 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 123.4266, + "y": 128.32098, + "z": 14.360628 + }, + "xAxis": { + "x": 0.40360045, + "y": 0.9143623, + "z": -0.03237674 + }, + "yAxis": { + "x": -0.91456765, + "y": 0.40418872, + "z": 0.01405443 + } + }, + "center": { + "x": 2.2107508, + "y": 3.3603892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 133.29189, + "y": 104.41185, + "z": 24.533062 + }, + "xAxis": { + "x": -0.672426, + "y": 0.7401634, + "z": -0.0011949046 + }, + "yAxis": { + "x": -0.74013644, + "y": -0.6723857, + "z": 0.009771731 + } + }, + "center": { + "x": -1.979669, + "y": 4.3842163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 125.38494, + "y": 130.57452, + "z": 24.534779 + }, + "xAxis": { + "x": 0.6258398, + "y": 0.77989036, + "z": 0.009771734 + }, + "yAxis": { + "x": -0.77993435, + "y": 0.62586015, + "z": 0.0011949074 + } + }, + "center": { + "x": 2.2107508, + "y": 7.3203893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 127.138054, + "y": 122.73114, + "z": 117.87049 + }, + "xAxis": { + "x": 0.07268841, + "y": -0.9826745, + "z": 0.17049108 + }, + "yAxis": { + "x": 0.9579899, + "y": 0.11634371, + "z": 0.26214415 + } + }, + "center": { + "x": 2.2107508, + "y": 42.960384 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 130.98267, + "y": 103.26622, + "z": 34.819756 + }, + "xAxis": { + "x": -0.45918667, + "y": 0.8883397, + "z": 0.0003825858 + }, + "yAxis": { + "x": -0.8870442, + "y": -0.45854017, + "z": 0.05379155 + } + }, + "center": { + "x": -1.979669, + "y": 8.344215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 127.48472, + "y": 131.99371, + "z": 34.83059 + }, + "xAxis": { + "x": 0.8043917, + "y": 0.59165907, + "z": 0.053791553 + }, + "yAxis": { + "x": -0.59250027, + "y": 0.8055702, + "z": -0.00038258414 + } + }, + "center": { + "x": 2.2107508, + "y": 11.28039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.63087, + "y": 103.101074, + "z": 45.224186 + }, + "xAxis": { + "x": -0.972205, + "y": -0.21326065, + "z": 0.09663012 + }, + "yAxis": { + "x": 0.21514808, + "y": -0.9765359, + "z": 0.009431346 + } + }, + "center": { + "x": -1.979669, + "y": 12.304215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 129.50233, + "y": 132.5675, + "z": 45.224186 + }, + "xAxis": { + "x": 0.9268742, + "y": 0.36272138, + "z": 0.09663012 + }, + "yAxis": { + "x": -0.3652631, + "y": 0.9308565, + "z": 0.00943135 + } + }, + "center": { + "x": 2.2107508, + "y": 15.24039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.1589, + "y": 103.38195, + "z": 55.663837 + }, + "xAxis": { + "x": 0.042766698, + "y": 0.9986359, + "z": -0.029956149 + }, + "yAxis": { + "x": -0.98971325, + "y": 0.046443693, + "z": 0.13531676 + } + }, + "center": { + "x": -1.979669, + "y": 16.264217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.21988, + "y": 132.34354, + "z": 55.68491 + }, + "xAxis": { + "x": 0.98479366, + "y": 0.108953364, + "z": 0.13531676 + }, + "yAxis": { + "x": -0.11398089, + "y": 0.9930312, + "z": 0.029956153 + } + }, + "center": { + "x": 2.2107508, + "y": 19.20039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.907875, + "y": 104.68936, + "z": 66.17745 + }, + "xAxis": { + "x": -0.93835497, + "y": 0.30256343, + "z": 0.1671687 + }, + "yAxis": { + "x": -0.2966723, + "y": -0.9531072, + "z": 0.05976851 + } + }, + "center": { + "x": -1.979669, + "y": 20.224218 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.44028, + "y": 131.42474, + "z": 66.17745 + }, + "xAxis": { + "x": 0.9741336, + "y": -0.15204732, + "z": 0.1671687 + }, + "yAxis": { + "x": 0.143921, + "y": 0.9877826, + "z": 0.059768513 + } + }, + "center": { + "x": 2.2107508, + "y": 23.16039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.58297, + "y": 106.22157, + "z": 76.66428 + }, + "xAxis": { + "x": -0.82169145, + "y": 0.5373377, + "z": 0.18997717 + }, + "yAxis": { + "x": -0.5289615, + "y": -0.8431069, + "z": 0.096801065 + } + }, + "center": { + "x": -1.979669, + "y": 24.184217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 133.00087, + "y": 129.96222, + "z": 76.66428 + }, + "xAxis": { + "x": 0.8956332, + "y": -0.4021813, + "z": 0.18997717 + }, + "yAxis": { + "x": 0.39055812, + "y": 0.9154747, + "z": 0.096801065 + } + }, + "center": { + "x": 2.2107508, + "y": 27.12039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 126.08067, + "y": 107.9828, + "z": 87.108284 + }, + "xAxis": { + "x": -0.647813, + "y": 0.73448586, + "z": 0.20216045 + }, + "yAxis": { + "x": -0.7235259, + "y": -0.6762633, + "z": 0.13848576 + } + }, + "center": { + "x": -1.979669, + "y": 28.144217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.7848, + "y": 128.14482, + "z": 87.108284 + }, + "xAxis": { + "x": 0.75473624, + "y": -0.62410283, + "z": 0.20216045 + }, + "yAxis": { + "x": 0.6088272, + "y": 0.78112173, + "z": 0.13848576 + } + }, + "center": { + "x": 2.2107508, + "y": 31.080389 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.342224, + "y": 109.483505, + "z": 97.47112 + }, + "xAxis": { + "x": 0.8668732, + "y": 0.46414614, + "z": -0.18193191 + }, + "yAxis": { + "x": -0.42877734, + "y": 0.88033646, + "z": 0.20287369 + } + }, + "center": { + "x": -1.979669, + "y": 32.104214 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.72908, + "y": 126.18595, + "z": 97.47531 + }, + "xAxis": { + "x": 0.5612133, + "y": -0.8024225, + "z": 0.20287369 + }, + "yAxis": { + "x": 0.7835921, + "y": 0.5940406, + "z": 0.1819319 + } + }, + "center": { + "x": 2.2107508, + "y": 35.040386 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 129.8289, + "y": 124.30887, + "z": 107.73654 + }, + "xAxis": { + "x": 0.32848445, + "y": -0.9247746, + "z": 0.19206746 + }, + "yAxis": { + "x": 0.9027337, + "y": 0.36720452, + "z": 0.22412671 + } + }, + "center": { + "x": 2.2107508, + "y": 39.000385 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 129.75, + "y": 111.75, + "z": 12.5 + }, + "xAxis": { + "x": 0.94551855, + "y": -0.32556817, + "z": 0.0 + }, + "yAxis": { + "x": 0.32432926, + "y": 0.9419206, + "z": 0.087155744 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 129.75, + "y": 123.85, + "z": 12.5 + }, + "xAxis": { + "x": -0.9848077, + "y": 0.17364818, + "z": 1.7347235e-18 + }, + "yAxis": { + "x": -0.17298739, + "y": -0.98106027, + "z": 0.087155744 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 128.96852, + "y": 111.04165, + "z": 22.708858 + }, + "xAxis": { + "x": 0.8293582, + "y": -0.5582617, + "z": -0.022557568 + }, + "yAxis": { + "x": 0.5586466, + "y": 0.8279352, + "z": 0.04936801 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.41104, + "y": 124.671875, + "z": 22.708858 + }, + "xAxis": { + "x": -0.9064788, + "y": 0.42164835, + "z": -0.022557566 + }, + "yAxis": { + "x": -0.42225114, + "y": -0.90513355, + "z": 0.049368005 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 120.23438, + "y": 123.035126, + "z": 113.910194 + }, + "xAxis": { + "x": 0.91865724, + "y": 0.344424, + "z": 0.19349675 + }, + "yAxis": { + "x": -0.31402892, + "y": 0.93382967, + "z": -0.17131259 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 128.43864, + "y": 110.750946, + "z": 32.954247 + }, + "xAxis": { + "x": 0.6565101, + "y": -0.7535248, + "z": -0.034566317 + }, + "yAxis": { + "x": 0.75411546, + "y": 0.65670484, + "z": 0.0069739646 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.88892, + "y": 125.041885, + "z": 32.954247 + }, + "xAxis": { + "x": -0.7663047, + "y": 0.64154685, + "z": -0.034566317 + }, + "yAxis": { + "x": -0.6420998, + "y": -0.76658934, + "z": 0.006973962 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 128.26047, + "y": 110.79952, + "z": 43.215782 + }, + "xAxis": { + "x": 0.43896064, + "y": -0.8978168, + "z": -0.035193495 + }, + "yAxis": { + "x": 0.89718086, + "y": 0.4401035, + "z": -0.037086535 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.0725, + "y": 125.02178, + "z": 43.215782 + }, + "xAxis": { + "x": -0.5740058, + "y": 0.8180946, + "z": -0.03519349 + }, + "yAxis": { + "x": -0.81728774, + "y": -0.5750351, + "z": -0.037086535 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 128.5097, + "y": 111.08548, + "z": 53.47197 + }, + "xAxis": { + "x": 0.19179593, + "y": -0.98113155, + "z": -0.024395604 + }, + "yAxis": { + "x": 0.97792184, + "y": 0.19315164, + "z": -0.07975807 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.87105, + "y": 124.700356, + "z": 53.47197 + }, + "xAxis": { + "x": -0.34291738, + "y": 0.9390487, + "z": -0.0243956 + }, + "yAxis": { + "x": -0.93566644, + "y": -0.34375426, + "z": -0.07975807 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.23244, + "y": 111.490456, + "z": 63.701675 + }, + "xAxis": { + "x": -0.067844145, + "y": -0.99769163, + "z": -0.0029214371 + }, + "yAxis": { + "x": 0.9907393, + "y": -0.06702561, + "z": -0.11808155 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.22057, + "y": 124.1873, + "z": 63.701675 + }, + "xAxis": { + "x": -0.08906448, + "y": 0.99602157, + "z": -0.0029214337 + }, + "yAxis": { + "x": -0.9890267, + "y": -0.08878534, + "z": -0.11808154 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.44191, + "y": 111.88785, + "z": 73.88561 + }, + "xAxis": { + "x": -0.3219546, + "y": -0.9463486, + "z": 0.027739862 + }, + "yAxis": { + "x": 0.93474436, + "y": -0.32238603, + "z": -0.14939938 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.08815, + "y": 123.6056, + "z": 73.88561 + }, + "xAxis": { + "x": 0.16994928, + "y": 0.9850623, + "z": 0.027739864 + }, + "yAxis": { + "x": -0.9736684, + "y": 0.1721907, + "z": -0.14939938 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 132.1176, + "y": 112.151566, + "z": 84.00765 + }, + "xAxis": { + "x": -0.5529139, + "y": -0.8306629, + "z": 0.06546206 + }, + "yAxis": { + "x": 0.8138202, + "y": -0.55522144, + "z": -0.17153983 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 127.47434, + "y": 123.08299, + "z": 84.00765 + }, + "xAxis": { + "x": 0.41616234, + "y": 0.90693086, + "z": 0.06546206 + }, + "yAxis": { + "x": -0.8906565, + "y": 0.4210762, + "z": -0.17153983 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 134.20668, + "y": 112.164795, + "z": 94.05598 + }, + "xAxis": { + "x": -0.744706, + "y": -0.6586569, + "z": 0.10762927 + }, + "yAxis": { + "x": 0.63635224, + "y": -0.7493856, + "z": -0.1829675 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 125.413055, + "y": 122.743126, + "z": 94.05598 + }, + "xAxis": { + "x": 0.6325008, + "y": 0.76704544, + "z": 0.10762927 + }, + "yAxis": { + "x": -0.7457474, + "y": 0.640612, + "z": -0.1829675 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.969246, + "y": 122.69697, + "z": 104.02387 + }, + "xAxis": { + "x": 0.80396247, + "y": 0.5751064, + "z": 0.15131736 + }, + "yAxis": { + "x": -0.54899013, + "y": 0.8155741, + "z": -0.18288997 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 110.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 127.28635, + "y": 8.871574, + "z": 13.2 + }, + "xAxis": { + "x": -0.9821934, + "y": -0.1878725, + "z": 0.0 + }, + "yAxis": { + "x": 0.1878725, + "y": -0.9821934, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 10.147437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 127.36145, + "y": 7.482663, + "z": 21.45 + }, + "xAxis": { + "x": -0.99949074, + "y": -0.031910583, + "z": 0.0 + }, + "yAxis": { + "x": 0.031910583, + "y": -0.99949074, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 22.027437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 127.21835, + "y": 6.099103, + "z": 29.7 + }, + "xAxis": { + "x": -0.99217725, + "y": 0.12483711, + "z": 0.0 + }, + "yAxis": { + "x": -0.12483711, + "y": -0.99217725, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 33.907433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 39.583332 + }, + "xAxis": { + "x": -0.8910065, + "y": 0.45399052, + "z": 0.0 + }, + "yAxis": { + "x": -0.45399052, + "y": -0.8910065, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 34.083332 + }, + "xAxis": { + "x": -0.9335804, + "y": 0.35836795, + "z": 0.0 + }, + "yAxis": { + "x": -0.35836795, + "y": -0.9335804, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.82053, + "y": 4.768862, + "z": 7.7 + }, + "xAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.27946, + "y": 10.631138, + "z": 7.7 + }, + "xAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.66532, + "y": 4.7037673, + "z": 10.45 + }, + "xAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.4347, + "y": 10.696233, + "z": 10.45 + }, + "xAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.92197, + "y": 10.898706, + "z": 35.2 + }, + "xAxis": { + "x": 0.99667823, + "y": -0.08144013, + "z": 0.0 + }, + "yAxis": { + "x": 0.08144013, + "y": 0.99667823, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 42.912548 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.50691, + "y": 4.6468854, + "z": 13.2 + }, + "xAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.5931, + "y": 10.753115, + "z": 13.2 + }, + "xAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.34574, + "y": 4.598372, + "z": 15.95 + }, + "xAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.75426, + "y": 10.801628, + "z": 15.95 + }, + "xAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.18226, + "y": 4.5583596, + "z": 18.7 + }, + "xAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.91774, + "y": 10.84164, + "z": 18.7 + }, + "xAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.01691, + "y": 4.5269585, + "z": 21.45 + }, + "xAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.0831, + "y": 10.873041, + "z": 21.45 + }, + "xAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.85013, + "y": 4.5042543, + "z": 24.2 + }, + "xAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.24988, + "y": 10.895745, + "z": 24.2 + }, + "xAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.682396, + "y": 4.4903097, + "z": 26.95 + }, + "xAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.4176, + "y": 10.90969, + "z": 26.95 + }, + "xAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.51417, + "y": 4.4851623, + "z": 29.7 + }, + "xAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.58585, + "y": 10.914837, + "z": 29.7 + }, + "xAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.7541, + "y": 10.911173, + "z": 32.45 + }, + "xAxis": { + "x": 0.99957454, + "y": -0.029166406, + "z": 0.0 + }, + "yAxis": { + "x": 0.029166406, + "y": 0.99957454, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 38.95255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.553116, + "y": 6.693087, + "z": 7.7 + }, + "xAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 126.54689, + "y": 8.706912, + "z": 7.7 + }, + "xAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.49623, + "y": 6.5346794, + "z": 10.45 + }, + "xAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 126.603775, + "y": 8.86532, + "z": 10.45 + }, + "xAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.45939, + "y": 10.098569, + "z": 35.2 + }, + "xAxis": { + "x": 0.75846034, + "y": 0.6517192, + "z": 0.0 + }, + "yAxis": { + "x": -0.6517192, + "y": 0.75846034, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 42.129883 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.43114, + "y": 6.379466, + "z": 13.2 + }, + "xAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.35801, + "y": 6.227872, + "z": 15.95 + }, + "xAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 126.742, + "y": 9.172128, + "z": 15.95 + }, + "xAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.27705, + "y": 6.0803127, + "z": 18.7 + }, + "xAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 126.82296, + "y": 9.319687, + "z": 18.7 + }, + "xAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.18848, + "y": 5.937193, + "z": 21.45 + }, + "xAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + }, + "yAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 121.09253, + "y": 5.798905, + "z": 24.2 + }, + "xAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.00748, + "y": 9.601095, + "z": 24.2 + }, + "xAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 120.98948, + "y": 5.6658278, + "z": 26.95 + }, + "xAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.11053, + "y": 9.734172, + "z": 26.95 + }, + "xAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 120.87961, + "y": 5.538326, + "z": 29.7 + }, + "xAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + }, + "yAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.33679, + "y": 9.983251, + "z": 32.45 + }, + "xAxis": { + "x": 0.72331256, + "y": 0.69052076, + "z": 0.0 + }, + "yAxis": { + "x": -0.69052076, + "y": 0.72331256, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 38.169884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.43114, + "y": 9.020534, + "z": 7.7 + }, + "xAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.66887, + "y": 6.379466, + "z": 7.7 + }, + "xAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.49623, + "y": 8.86532, + "z": 10.45 + }, + "xAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.603775, + "y": 6.5346794, + "z": 10.45 + }, + "xAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.4013, + "y": 8.021953, + "z": 35.2 + }, + "xAxis": { + "x": 0.08144013, + "y": 0.99667823, + "z": 0.0 + }, + "yAxis": { + "x": -0.99667823, + "y": 0.08144013, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 41.028614 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.54689, + "y": 6.693087, + "z": 13.2 + }, + "xAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.60163, + "y": 8.545745, + "z": 15.95 + }, + "xAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.498375, + "y": 6.8542547, + "z": 15.95 + }, + "xAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.64164, + "y": 8.382259, + "z": 18.7 + }, + "xAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.45837, + "y": 7.0177407, + "z": 18.7 + }, + "xAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.42696, + "y": 7.1830964, + "z": 21.45 + }, + "xAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + }, + "yAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.69575, + "y": 8.050131, + "z": 24.2 + }, + "xAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.40426, + "y": 7.349869, + "z": 24.2 + }, + "xAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.709694, + "y": 7.8823986, + "z": 26.95 + }, + "xAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.39031, + "y": 7.517601, + "z": 26.95 + }, + "xAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.38517, + "y": 7.6858335, + "z": 29.7 + }, + "xAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + }, + "yAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.38883, + "y": 7.8541045, + "z": 32.45 + }, + "xAxis": { + "x": 0.029166406, + "y": 0.99957454, + "z": 0.0 + }, + "yAxis": { + "x": -0.99957454, + "y": 0.029166406, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 37.068615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.50691, + "y": 10.753115, + "z": 7.7 + }, + "xAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.5931, + "y": 4.6468854, + "z": 7.7 + }, + "xAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.66532, + "y": 10.696233, + "z": 10.45 + }, + "xAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.4347, + "y": 4.7037673, + "z": 10.45 + }, + "xAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.20144, + "y": 5.5593815, + "z": 35.2 + }, + "xAxis": { + "x": -0.6517192, + "y": 0.75846034, + "z": 0.0 + }, + "yAxis": { + "x": -0.75846034, + "y": -0.6517192, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 40.15937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.82053, + "y": 10.631138, + "z": 13.2 + }, + "xAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.27946, + "y": 4.768862, + "z": 13.2 + }, + "xAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.97213, + "y": 10.558009, + "z": 15.95 + }, + "xAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.12788, + "y": 4.84199, + "z": 15.95 + }, + "xAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.11969, + "y": 10.477048, + "z": 18.7 + }, + "xAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.980316, + "y": 4.922952, + "z": 18.7 + }, + "xAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.26281, + "y": 10.3884735, + "z": 21.45 + }, + "xAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.8372, + "y": 5.0115256, + "z": 21.45 + }, + "xAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.40109, + "y": 10.292531, + "z": 24.2 + }, + "xAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.69891, + "y": 5.1074686, + "z": 24.2 + }, + "xAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.53417, + "y": 10.189483, + "z": 26.95 + }, + "xAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.565834, + "y": 5.210517, + "z": 26.95 + }, + "xAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.661674, + "y": 10.079611, + "z": 29.7 + }, + "xAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.43833, + "y": 5.3203893, + "z": 29.7 + }, + "xAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.31676, + "y": 5.436784, + "z": 32.45 + }, + "xAxis": { + "x": -0.69052076, + "y": 0.72331256, + "z": 0.0 + }, + "yAxis": { + "x": -0.72331256, + "y": -0.69052076, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 36.19937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.17947, + "y": 10.631138, + "z": 8.616667 + }, + "xAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.92055, + "y": 4.768862, + "z": 8.616667 + }, + "xAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.33468, + "y": 10.696233, + "z": 11.366667 + }, + "xAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.76532, + "y": 4.7037673, + "z": 11.366667 + }, + "xAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.27805, + "y": 4.5012927, + "z": 36.116665 + }, + "xAxis": { + "x": -0.99667823, + "y": 0.08144013, + "z": 0.0 + }, + "yAxis": { + "x": -0.08144013, + "y": -0.99667823, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 40.101658 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.49309, + "y": 10.753115, + "z": 14.116667 + }, + "xAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.60692, + "y": 4.6468854, + "z": 14.116667 + }, + "xAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.65426, + "y": 10.801628, + "z": 16.866667 + }, + "xAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.44576, + "y": 4.598372, + "z": 16.866667 + }, + "xAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.81774, + "y": 10.84164, + "z": 19.616667 + }, + "xAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.28227, + "y": 4.5583596, + "z": 19.616667 + }, + "xAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.98309, + "y": 10.873041, + "z": 22.366667 + }, + "xAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.11691, + "y": 4.5269585, + "z": 22.366667 + }, + "xAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.14987, + "y": 10.895745, + "z": 25.116667 + }, + "xAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.95013, + "y": 4.5042543, + "z": 25.116667 + }, + "xAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 118.317604, + "y": 10.90969, + "z": 27.866667 + }, + "xAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 129.78241, + "y": 4.4903097, + "z": 27.866667 + }, + "xAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 118.48583, + "y": 10.914837, + "z": 30.616667 + }, + "xAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.61417, + "y": 4.4851623, + "z": 30.616667 + }, + "xAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 129.4459, + "y": 4.4888268, + "z": 33.366665 + }, + "xAxis": { + "x": -0.99957454, + "y": 0.029166406, + "z": 0.0 + }, + "yAxis": { + "x": -0.029166406, + "y": -0.99957454, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 36.14166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.446884, + "y": 8.706912, + "z": 8.616667 + }, + "xAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.65312, + "y": 6.693087, + "z": 8.616667 + }, + "xAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.50377, + "y": 8.86532, + "z": 11.366667 + }, + "xAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 132.59624, + "y": 6.5346794, + "z": 11.366667 + }, + "xAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.74063, + "y": 5.3014307, + "z": 36.116665 + }, + "xAxis": { + "x": -0.75846034, + "y": -0.6517192, + "z": 0.0 + }, + "yAxis": { + "x": 0.6517192, + "y": -0.75846034, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 40.884323 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.56886, + "y": 9.020534, + "z": 14.116667 + }, + "xAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 10.449885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 132.53114, + "y": 6.379466, + "z": 14.116667 + }, + "xAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.64199, + "y": 9.172128, + "z": 16.866667 + }, + "xAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 132.45802, + "y": 6.227872, + "z": 16.866667 + }, + "xAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.72295, + "y": 9.319687, + "z": 19.616667 + }, + "xAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.37706, + "y": 6.0803127, + "z": 19.616667 + }, + "xAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.81152, + "y": 9.462807, + "z": 22.366667 + }, + "xAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + }, + "yAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 22.329885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.28848, + "y": 5.937193, + "z": 22.366667 + }, + "xAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + }, + "yAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.90747, + "y": 9.601095, + "z": 25.116667 + }, + "xAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 132.19254, + "y": 5.798905, + "z": 25.116667 + }, + "xAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.01052, + "y": 9.734172, + "z": 27.866667 + }, + "xAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.0895, + "y": 5.6658278, + "z": 27.866667 + }, + "xAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.12039, + "y": 9.861673, + "z": 30.616667 + }, + "xAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + }, + "yAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 34.209885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 131.97961, + "y": 5.538326, + "z": 30.616667 + }, + "xAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + }, + "yAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.86322, + "y": 5.416749, + "z": 33.366665 + }, + "xAxis": { + "x": -0.72331256, + "y": -0.69052076, + "z": 0.0 + }, + "yAxis": { + "x": 0.69052076, + "y": -0.72331256, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 36.924324 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 115.56886, + "y": 6.379466, + "z": 9.533333 + }, + "xAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.53114, + "y": 9.020534, + "z": 9.533333 + }, + "xAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 115.50377, + "y": 6.5346794, + "z": 12.283333 + }, + "xAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.59624, + "y": 8.86532, + "z": 12.283333 + }, + "xAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.7987, + "y": 7.3780465, + "z": 37.033333 + }, + "xAxis": { + "x": -0.08144013, + "y": -0.99667823, + "z": 0.0 + }, + "yAxis": { + "x": 0.99667823, + "y": -0.08144013, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 41.98559 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 115.446884, + "y": 6.693087, + "z": 15.033333 + }, + "xAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.65312, + "y": 8.706912, + "z": 15.033333 + }, + "xAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 10.305597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 115.39837, + "y": 6.8542547, + "z": 17.783333 + }, + "xAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.70163, + "y": 8.545745, + "z": 17.783333 + }, + "xAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 115.35836, + "y": 7.0177407, + "z": 20.533333 + }, + "xAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.74165, + "y": 8.382259, + "z": 20.533333 + }, + "xAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 115.32696, + "y": 7.1830964, + "z": 23.283333 + }, + "xAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + }, + "yAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.77304, + "y": 8.216904, + "z": 23.283333 + }, + "xAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + }, + "yAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 22.185598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 115.30425, + "y": 7.349869, + "z": 26.033333 + }, + "xAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.79575, + "y": 8.050131, + "z": 26.033333 + }, + "xAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 115.290306, + "y": 7.517601, + "z": 28.783333 + }, + "xAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.8097, + "y": 7.8823986, + "z": 28.783333 + }, + "xAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 115.285164, + "y": 7.6858335, + "z": 31.533333 + }, + "xAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + }, + "yAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.81485, + "y": 7.714166, + "z": 31.533333 + }, + "xAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + }, + "yAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 34.065594 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 132.81117, + "y": 7.545895, + "z": 34.283333 + }, + "xAxis": { + "x": -0.029166406, + "y": -0.99957454, + "z": 0.0 + }, + "yAxis": { + "x": 0.99957454, + "y": -0.029166406, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 38.025593 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.49309, + "y": 4.6468854, + "z": 9.533333 + }, + "xAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 130.60692, + "y": 10.753115, + "z": 9.533333 + }, + "xAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 117.33468, + "y": 4.7037673, + "z": 12.283333 + }, + "xAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 130.76532, + "y": 10.696233, + "z": 12.283333 + }, + "xAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.99858, + "y": 9.840618, + "z": 37.033333 + }, + "xAxis": { + "x": 0.6517192, + "y": -0.75846034, + "z": 0.0 + }, + "yAxis": { + "x": 0.75846034, + "y": 0.6517192, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 42.854836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 117.17947, + "y": 4.768862, + "z": 15.033333 + }, + "xAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 130.92055, + "y": 10.631138, + "z": 15.033333 + }, + "xAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.02787, + "y": 4.84199, + "z": 17.783333 + }, + "xAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.07213, + "y": 10.558009, + "z": 17.783333 + }, + "xAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 116.88031, + "y": 4.922952, + "z": 20.533333 + }, + "xAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.2197, + "y": 10.477048, + "z": 20.533333 + }, + "xAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.73719, + "y": 5.0115256, + "z": 23.283333 + }, + "xAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.36281, + "y": 10.3884735, + "z": 23.283333 + }, + "xAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.59891, + "y": 5.1074686, + "z": 26.033333 + }, + "xAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.5011, + "y": 10.292531, + "z": 26.033333 + }, + "xAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.46583, + "y": 5.210517, + "z": 28.783333 + }, + "xAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.63419, + "y": 10.189483, + "z": 28.783333 + }, + "xAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 116.338326, + "y": 5.3203893, + "z": 31.533333 + }, + "xAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.76167, + "y": 10.079611, + "z": 31.533333 + }, + "xAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.88326, + "y": 9.963216, + "z": 34.283333 + }, + "xAxis": { + "x": 0.69052076, + "y": -0.72331256, + "z": 0.0 + }, + "yAxis": { + "x": 0.72331256, + "y": 0.69052076, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 38.894836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 7.5 + }, + "xAxis": { + "x": 0.052335955, + "y": -0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986295, + "y": 0.052335955, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 7.5 + }, + "xAxis": { + "x": -0.052335955, + "y": 0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986295, + "y": -0.052335955, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 10.25 + }, + "xAxis": { + "x": 2.3554114e-10, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 2.3554114e-10, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 10.25 + }, + "xAxis": { + "x": -2.3554114e-10, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": -2.3554114e-10, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 35.0 + }, + "xAxis": { + "x": 0.45399052, + "y": 0.8910065, + "z": 0.0 + }, + "yAxis": { + "x": -0.8910065, + "y": 0.45399052, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 13.0 + }, + "xAxis": { + "x": -0.052335955, + "y": -0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986295, + "y": -0.052335955, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 13.0 + }, + "xAxis": { + "x": 0.052335955, + "y": 0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986295, + "y": 0.052335955, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 15.75 + }, + "xAxis": { + "x": -0.104528464, + "y": -0.9945219, + "z": 0.0 + }, + "yAxis": { + "x": 0.9945219, + "y": -0.104528464, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 15.75 + }, + "xAxis": { + "x": 0.104528464, + "y": 0.9945219, + "z": 0.0 + }, + "yAxis": { + "x": -0.9945219, + "y": 0.104528464, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 18.5 + }, + "xAxis": { + "x": -0.15643446, + "y": -0.98768836, + "z": 0.0 + }, + "yAxis": { + "x": 0.98768836, + "y": -0.15643446, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 18.5 + }, + "xAxis": { + "x": 0.15643446, + "y": 0.98768836, + "z": 0.0 + }, + "yAxis": { + "x": -0.98768836, + "y": 0.15643446, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 21.25 + }, + "xAxis": { + "x": -0.20791169, + "y": -0.9781476, + "z": 0.0 + }, + "yAxis": { + "x": 0.9781476, + "y": -0.20791169, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 21.25 + }, + "xAxis": { + "x": 0.20791169, + "y": 0.9781476, + "z": 0.0 + }, + "yAxis": { + "x": -0.9781476, + "y": 0.20791169, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 24.0 + }, + "xAxis": { + "x": -0.25881904, + "y": -0.9659258, + "z": 0.0 + }, + "yAxis": { + "x": 0.9659258, + "y": -0.25881904, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 24.0 + }, + "xAxis": { + "x": 0.25881904, + "y": 0.9659258, + "z": 0.0 + }, + "yAxis": { + "x": -0.9659258, + "y": 0.25881904, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 26.75 + }, + "xAxis": { + "x": -0.309017, + "y": -0.95105654, + "z": 0.0 + }, + "yAxis": { + "x": 0.95105654, + "y": -0.309017, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 26.75 + }, + "xAxis": { + "x": 0.309017, + "y": 0.95105654, + "z": 0.0 + }, + "yAxis": { + "x": -0.95105654, + "y": 0.309017, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 118.5, + "y": 7.7, + "z": 29.5 + }, + "xAxis": { + "x": -0.35836795, + "y": -0.9335804, + "z": 0.0 + }, + "yAxis": { + "x": 0.9335804, + "y": -0.35836795, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 29.5 + }, + "xAxis": { + "x": 0.35836795, + "y": 0.9335804, + "z": 0.0 + }, + "yAxis": { + "x": -0.9335804, + "y": 0.35836795, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.6, + "y": 7.7, + "z": 32.25 + }, + "xAxis": { + "x": 0.40673664, + "y": 0.9135454, + "z": 0.0 + }, + "yAxis": { + "x": -0.9135454, + "y": 0.40673664, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 9.075, + "y": 63.8, + "z": 0.0 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 9.042062, + "y": 46.147964, + "z": 13.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.598002, + "y": 46.366684, + "z": 21.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.153943, + "y": 46.585403, + "z": 29.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 9.244375, + "y": 42.982834, + "z": 39.583332 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.484553, + "y": 54.25284, + "z": 34.083332 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.6477647, + "y": 54.56415, + "z": 7.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.785125, + "y": 42.817333, + "z": 7.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.499745, + "y": 54.63706, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.933145, + "y": 42.744427, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 14.265322, + "y": 42.08827, + "z": 35.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.351725, + "y": 54.709965, + "z": 13.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.081163, + "y": 42.67152, + "z": 13.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.2037053, + "y": 54.78287, + "z": 15.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.229183, + "y": 42.598614, + "z": 15.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 7.0556855, + "y": 54.855778, + "z": 18.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.377203, + "y": 42.525707, + "z": 18.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.9076657, + "y": 54.928684, + "z": 21.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.525223, + "y": 42.4528, + "z": 21.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.759646, + "y": 55.00159, + "z": 24.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.673243, + "y": 42.379894, + "z": 24.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.611626, + "y": 55.074497, + "z": 26.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.821262, + "y": 42.306988, + "z": 26.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.4636064, + "y": 55.147404, + "z": 29.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.969282, + "y": 42.23408, + "z": 29.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 14.117302, + "y": 42.161175, + "z": 32.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.869399, + "y": 50.971107, + "z": 7.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 11.563491, + "y": 46.410378, + "z": 7.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.721379, + "y": 51.044014, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 11.711511, + "y": 46.33747, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 13.043688, + "y": 45.681313, + "z": 35.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.5733595, + "y": 51.11692, + "z": 13.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.42534, + "y": 51.189827, + "z": 15.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 12.007549, + "y": 46.191658, + "z": 15.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.27732, + "y": 51.262733, + "z": 18.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 12.155569, + "y": 46.11875, + "z": 18.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.1293, + "y": 51.33564, + "z": 21.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 7.9812803, + "y": 51.408546, + "z": 24.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 12.451609, + "y": 45.97294, + "z": 24.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 7.8332605, + "y": 51.481453, + "z": 26.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 12.599628, + "y": 45.900032, + "z": 26.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 7.6852407, + "y": 51.55436, + "z": 29.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 12.895668, + "y": 45.75422, + "z": 32.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.845298, + "y": 49.01283, + "z": 7.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 7.587592, + "y": 48.368656, + "z": 7.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.697278, + "y": 49.085735, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 7.735612, + "y": 48.29575, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.067789, + "y": 47.63959, + "z": 35.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 7.883631, + "y": 48.222843, + "z": 13.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.401238, + "y": 49.23155, + "z": 15.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.031651, + "y": 48.149937, + "z": 15.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.253219, + "y": 49.304455, + "z": 18.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.17967, + "y": 48.07703, + "z": 18.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.32769, + "y": 48.004124, + "z": 21.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.957179, + "y": 49.450268, + "z": 24.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.47571, + "y": 47.931217, + "z": 24.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.809159, + "y": 49.523174, + "z": 26.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.62373, + "y": 47.85831, + "z": 26.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.7717495, + "y": 47.785404, + "z": 29.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.919769, + "y": 47.712498, + "z": 32.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 16.43834, + "y": 50.234467, + "z": 7.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.9945495, + "y": 47.14702, + "z": 7.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 16.29032, + "y": 50.307373, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.1425695, + "y": 47.074112, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.474747, + "y": 46.417953, + "z": 35.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 16.1423, + "y": 50.38028, + "z": 13.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.290589, + "y": 47.001205, + "z": 13.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.994281, + "y": 50.453186, + "z": 15.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.4386086, + "y": 46.9283, + "z": 15.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.846261, + "y": 50.526093, + "z": 18.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.5866284, + "y": 46.855392, + "z": 18.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.698241, + "y": 50.599, + "z": 21.45 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.734648, + "y": 46.782486, + "z": 21.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.550221, + "y": 50.671906, + "z": 24.2 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.882668, + "y": 46.70958, + "z": 24.2 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.402202, + "y": 50.744812, + "z": 26.95 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.030688, + "y": 46.636673, + "z": 26.95 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.254182, + "y": 50.81772, + "z": 29.7 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.1787076, + "y": 46.563766, + "z": 29.7 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.3267274, + "y": 46.49086, + "z": 32.45 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 17.325468, + "y": 53.846172, + "z": 8.616667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.107422, + "y": 43.535313, + "z": 8.616667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 17.177448, + "y": 53.91908, + "z": 11.366667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.8912506, + "y": 44.533558, + "z": 11.366667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 4.2234282, + "y": 43.8774, + "z": 36.116665 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 17.029428, + "y": 53.991985, + "z": 14.116667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 3.03927, + "y": 44.46065, + "z": 14.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 16.881409, + "y": 54.06489, + "z": 16.866667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 3.1872897, + "y": 44.387745, + "z": 16.866667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 16.733389, + "y": 54.1378, + "z": 19.616667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.6995008, + "y": 43.243687, + "z": 19.616667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 16.58537, + "y": 54.210705, + "z": 22.366667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 3.8475206, + "y": 43.17078, + "z": 22.366667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 16.43735, + "y": 54.28361, + "z": 25.116667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 3.631349, + "y": 44.169025, + "z": 25.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 16.28933, + "y": 54.356518, + "z": 27.866667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 4.1435604, + "y": 43.024967, + "z": 27.866667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 16.14131, + "y": 54.429424, + "z": 30.616667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 3.9273887, + "y": 44.023212, + "z": 30.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 4.4396, + "y": 42.879154, + "z": 33.366665 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 16.103832, + "y": 57.439213, + "z": 8.616667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.3290567, + "y": 39.942272, + "z": 8.616667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.955813, + "y": 57.51212, + "z": 11.366667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.112885, + "y": 40.940514, + "z": 11.366667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.809254, + "y": 39.213207, + "z": 36.116665 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.807794, + "y": 57.585026, + "z": 14.116667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.2609043, + "y": 40.867607, + "z": 14.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.659774, + "y": 57.657932, + "z": 16.866667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.408924, + "y": 40.7947, + "z": 16.866667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.511754, + "y": 57.73084, + "z": 19.616667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.9211354, + "y": 39.650646, + "z": 19.616667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.363734, + "y": 57.803745, + "z": 22.366667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.069155, + "y": 39.57774, + "z": 22.366667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.215714, + "y": 57.87665, + "z": 25.116667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.8529835, + "y": 40.57598, + "z": 25.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.067695, + "y": 57.94956, + "z": 27.866667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.365195, + "y": 39.431927, + "z": 27.866667 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 14.919675, + "y": 58.022465, + "z": 30.616667 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.149023, + "y": 40.43017, + "z": 30.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.6612344, + "y": 39.286114, + "z": 33.366665 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.4921255, + "y": 58.326344, + "z": 9.533333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 7.9407635, + "y": 39.05514, + "z": 9.533333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.415257, + "y": 58.76344, + "z": 12.283333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.088783, + "y": 38.982235, + "z": 12.283333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.420961, + "y": 38.326077, + "z": 37.033333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 13.267238, + "y": 58.836346, + "z": 15.033333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.236803, + "y": 38.90933, + "z": 15.033333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.048066, + "y": 58.545063, + "z": 17.783333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.384823, + "y": 38.836422, + "z": 17.783333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.971198, + "y": 58.98216, + "z": 20.533333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.532843, + "y": 38.763515, + "z": 20.533333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.823178, + "y": 59.055065, + "z": 23.283333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.680862, + "y": 38.69061, + "z": 23.283333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.604007, + "y": 58.763783, + "z": 26.033333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.828882, + "y": 38.617702, + "z": 26.033333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.455987, + "y": 58.83669, + "z": 28.783333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 8.976902, + "y": 38.544796, + "z": 28.783333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 12.379119, + "y": 59.273785, + "z": 31.533333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.124922, + "y": 38.47189, + "z": 31.533333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 9.272942, + "y": 38.398983, + "z": 34.283333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 8.899083, + "y": 57.104706, + "z": 9.533333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 11.533806, + "y": 40.27678, + "z": 9.533333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.822215, + "y": 57.541805, + "z": 12.283333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 11.681826, + "y": 40.203873, + "z": 12.283333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 13.014004, + "y": 39.547714, + "z": 37.033333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.674195, + "y": 57.61471, + "z": 15.033333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 11.829845, + "y": 40.130966, + "z": 15.033333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 8.455024, + "y": 57.323425, + "z": 17.783333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 11.977865, + "y": 40.05806, + "z": 17.783333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.378156, + "y": 57.760525, + "z": 20.533333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.125885, + "y": 39.985153, + "z": 20.533333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 8.158984, + "y": 57.46924, + "z": 23.283333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.273905, + "y": 39.912247, + "z": 23.283333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 8.010964, + "y": 57.542145, + "z": 26.033333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.421925, + "y": 39.83934, + "z": 26.033333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.862945, + "y": 57.61505, + "z": 28.783333 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.569944, + "y": 39.766434, + "z": 28.783333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 8.786077, + "y": 58.05215, + "z": 31.533333 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.717964, + "y": 39.693527, + "z": 31.533333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 12.865984, + "y": 39.62062, + "z": 34.283333 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 12.668712, + "y": 53.669586, + "z": 7.5 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 7.764178, + "y": 43.7119, + "z": 7.5 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 12.520692, + "y": 53.742493, + "z": 10.25 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.9121976, + "y": 43.638992, + "z": 10.25 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 9.244375, + "y": 42.982834, + "z": 35.0 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 12.372672, + "y": 53.8154, + "z": 13.0 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.060217, + "y": 43.566086, + "z": 13.0 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 12.224652, + "y": 53.888306, + "z": 15.75 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.208237, + "y": 43.49318, + "z": 15.75 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 12.0766325, + "y": 53.961212, + "z": 18.5 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.3562565, + "y": 43.420273, + "z": 18.5 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.928613, + "y": 54.03412, + "z": 21.25 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.504276, + "y": 43.347366, + "z": 21.25 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.780593, + "y": 54.107025, + "z": 24.0 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.652296, + "y": 43.27446, + "z": 24.0 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 11.632573, + "y": 54.17993, + "z": 26.75 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.800316, + "y": 43.201553, + "z": 26.75 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 11.484553, + "y": 54.25284, + "z": 29.5 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 8.948336, + "y": 43.128647, + "z": 29.5 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 9.096355, + "y": 43.05574, + "z": 32.25 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 18.425, + "y": 101.2, + "z": 0.0 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.4890823, + "y": 87.5313, + "z": 13.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 7.045023, + "y": 88.43287, + "z": 21.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 6.6009636, + "y": 89.334435, + "z": 29.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 6.6215844, + "y": 83.06879, + "z": 39.583332 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 13.914917, + "y": 93.38271, + "z": 34.083332 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 11.580418, + "y": 94.76387, + "z": 7.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 8.660044, + "y": 82.28867, + "z": 7.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 11.432398, + "y": 95.06439, + "z": 10.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 8.8080635, + "y": 81.98815, + "z": 10.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.140242, + "y": 79.283455, + "z": 35.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 11.284378, + "y": 95.364914, + "z": 13.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 8.956083, + "y": 81.68763, + "z": 13.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 11.136358, + "y": 95.665436, + "z": 15.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.104103, + "y": 81.38711, + "z": 15.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.988338, + "y": 95.96596, + "z": 18.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.252123, + "y": 81.086586, + "z": 18.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.840319, + "y": 96.26648, + "z": 21.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.400143, + "y": 80.786064, + "z": 21.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.692299, + "y": 96.567, + "z": 24.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.548162, + "y": 80.48554, + "z": 24.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.544279, + "y": 96.86752, + "z": 26.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.696182, + "y": 80.18502, + "z": 26.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 10.396259, + "y": 97.168045, + "z": 29.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.844202, + "y": 79.8845, + "z": 29.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 9.992222, + "y": 79.58398, + "z": 32.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.366523, + "y": 91.193596, + "z": 7.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.8739395, + "y": 85.85895, + "z": 7.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.218503, + "y": 91.49412, + "z": 10.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.021959, + "y": 85.558426, + "z": 10.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 11.354137, + "y": 82.85373, + "z": 35.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.070483, + "y": 91.79464, + "z": 13.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.922463, + "y": 92.09516, + "z": 15.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.317999, + "y": 84.95738, + "z": 15.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.774444, + "y": 92.39568, + "z": 18.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.466019, + "y": 84.65686, + "z": 18.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.626424, + "y": 92.696205, + "z": 21.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.478404, + "y": 92.99673, + "z": 24.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.762058, + "y": 84.05582, + "z": 24.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.330384, + "y": 93.29725, + "z": 26.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 10.910078, + "y": 83.755295, + "z": 26.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 9.182364, + "y": 93.59777, + "z": 29.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 11.206118, + "y": 83.15425, + "z": 32.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.384892, + "y": 87.09569, + "z": 7.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 7.8555694, + "y": 89.956856, + "z": 7.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 12.236873, + "y": 87.39621, + "z": 10.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.00359, + "y": 89.656334, + "z": 10.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.335768, + "y": 86.95164, + "z": 35.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.151609, + "y": 89.35581, + "z": 13.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.940833, + "y": 87.99725, + "z": 15.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.299629, + "y": 89.05529, + "z": 15.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.792813, + "y": 88.297775, + "z": 18.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.447649, + "y": 88.75477, + "z": 18.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.595669, + "y": 88.45425, + "z": 21.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.496774, + "y": 88.89882, + "z": 24.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.743689, + "y": 88.153725, + "z": 24.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 11.348754, + "y": 89.19934, + "z": 26.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 8.891708, + "y": 87.8532, + "z": 26.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.039728, + "y": 87.55268, + "z": 29.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 9.187748, + "y": 87.25216, + "z": 32.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.955173, + "y": 85.8818, + "z": 7.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.285289, + "y": 91.170746, + "z": 7.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.807153, + "y": 86.18232, + "z": 10.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.4333086, + "y": 90.870224, + "z": 10.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.7654867, + "y": 88.16553, + "z": 35.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.659133, + "y": 86.48284, + "z": 13.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.5813284, + "y": 90.5697, + "z": 13.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.511113, + "y": 86.78336, + "z": 15.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.729348, + "y": 90.26918, + "z": 15.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.363093, + "y": 87.083885, + "z": 18.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 4.877368, + "y": 89.96866, + "z": 18.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.215074, + "y": 87.38441, + "z": 21.45 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.025388, + "y": 89.66814, + "z": 21.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 15.067054, + "y": 87.68493, + "z": 24.2 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.1734076, + "y": 89.367615, + "z": 24.2 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 14.919034, + "y": 87.98545, + "z": 26.95 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.3214273, + "y": 89.06709, + "z": 26.95 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 14.771014, + "y": 88.28597, + "z": 29.7 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.469447, + "y": 88.76657, + "z": 29.7 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.617467, + "y": 88.46605, + "z": 32.45 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.981924, + "y": 88.26436, + "z": 8.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 1.2585374, + "y": 88.788185, + "z": 8.616667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.833904, + "y": 88.56488, + "z": 11.366667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 1.7707486, + "y": 89.558815, + "z": 11.366667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 3.1029267, + "y": 86.85412, + "z": 36.116665 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.685884, + "y": 88.8654, + "z": 14.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 1.9187684, + "y": 89.25829, + "z": 14.116667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.537865, + "y": 89.165924, + "z": 16.866667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.0667882, + "y": 88.95777, + "z": 16.866667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.389845, + "y": 89.466446, + "z": 19.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 1.8506166, + "y": 87.5861, + "z": 19.616667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.241825, + "y": 89.76697, + "z": 22.366667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 1.9986364, + "y": 87.285576, + "z": 22.366667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 18.093805, + "y": 90.06749, + "z": 25.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.5108476, + "y": 88.056206, + "z": 25.116667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 17.945786, + "y": 90.36801, + "z": 27.866667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 2.294676, + "y": 86.68453, + "z": 27.866667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 17.797766, + "y": 90.66853, + "z": 30.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.8068871, + "y": 87.45516, + "z": 30.616667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 2.5907156, + "y": 86.08349, + "z": 33.366665 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 20.19582, + "y": 91.83463, + "z": 8.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 0.044642225, + "y": 85.21791, + "z": 8.616667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 20.0478, + "y": 92.135155, + "z": 11.366667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 0.5568533, + "y": 85.98854, + "z": 11.366667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 1.5248401, + "y": 82.21269, + "z": 36.116665 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.89978, + "y": 92.43568, + "z": 14.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 0.7048731, + "y": 85.68802, + "z": 14.116667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.75176, + "y": 92.7362, + "z": 16.866667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 0.8528929, + "y": 85.3875, + "z": 16.866667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.60374, + "y": 93.03672, + "z": 19.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 0.6367214, + "y": 84.01582, + "z": 19.616667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.45572, + "y": 93.33724, + "z": 22.366667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 0.78474116, + "y": 83.7153, + "z": 22.366667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.307701, + "y": 93.637764, + "z": 25.116667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 1.2969522, + "y": 84.48593, + "z": 25.116667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.159681, + "y": 93.938286, + "z": 27.866667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 1.0807807, + "y": 83.11426, + "z": 27.866667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 19.011662, + "y": 94.23881, + "z": 30.616667 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 1.5929918, + "y": 83.88489, + "z": 30.616667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 1.3768203, + "y": 82.513214, + "z": 33.366665 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 17.81326, + "y": 94.86139, + "z": 9.533333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 2.4272037, + "y": 82.191154, + "z": 9.533333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.73639, + "y": 94.797714, + "z": 12.283333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 2.5752234, + "y": 81.89063, + "z": 12.283333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.9074016, + "y": 79.185936, + "z": 37.033333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.58837, + "y": 95.098236, + "z": 15.033333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 2.7232432, + "y": 81.59011, + "z": 15.033333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 17.3692, + "y": 95.762955, + "z": 17.783333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 2.871263, + "y": 81.28959, + "z": 17.783333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.29233, + "y": 95.69928, + "z": 20.533333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.0192828, + "y": 80.98907, + "z": 20.533333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 18.14431, + "y": 95.9998, + "z": 23.283333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.1673026, + "y": 80.688545, + "z": 23.283333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 16.92514, + "y": 96.66452, + "z": 26.033333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.3153224, + "y": 80.38802, + "z": 26.033333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 16.77712, + "y": 96.96504, + "z": 28.783333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.4633422, + "y": 80.0875, + "z": 28.783333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 17.70025, + "y": 96.90137, + "z": 31.533333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.611362, + "y": 79.78698, + "z": 31.533333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 3.7593818, + "y": 79.48646, + "z": 34.283333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 14.242978, + "y": 96.07528, + "z": 9.533333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.997484, + "y": 80.977264, + "z": 9.533333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.166109, + "y": 96.01161, + "z": 12.283333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.145504, + "y": 80.67674, + "z": 12.283333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.477682, + "y": 77.972046, + "z": 37.033333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 15.018089, + "y": 96.31213, + "z": 15.033333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.293524, + "y": 80.37622, + "z": 15.033333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 13.798919, + "y": 96.976845, + "z": 17.783333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.4415436, + "y": 80.0757, + "z": 17.783333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 14.72205, + "y": 96.91318, + "z": 20.533333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.5895634, + "y": 79.77518, + "z": 20.533333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 13.502879, + "y": 97.57789, + "z": 23.283333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.737583, + "y": 79.474655, + "z": 23.283333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 13.354859, + "y": 97.87841, + "z": 26.033333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.885603, + "y": 79.17413, + "z": 26.033333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 13.20684, + "y": 98.17893, + "z": 28.783333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.0336227, + "y": 78.87361, + "z": 28.783333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 14.129971, + "y": 98.115265, + "z": 31.533333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.1816425, + "y": 78.57309, + "z": 31.533333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 7.3296623, + "y": 78.27257, + "z": 34.283333 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 15.099075, + "y": 90.97854, + "z": 7.5 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 5.1413865, + "y": 86.074005, + "z": 7.5 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.951056, + "y": 91.27906, + "z": 10.25 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 5.2894063, + "y": 85.77348, + "z": 10.25 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 6.6215844, + "y": 83.06879, + "z": 35.0 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.803036, + "y": 91.57958, + "z": 13.0 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 5.437426, + "y": 85.47296, + "z": 13.0 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.655016, + "y": 91.880104, + "z": 15.75 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 5.585446, + "y": 85.17244, + "z": 15.75 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.506996, + "y": 92.180626, + "z": 18.5 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 5.7334657, + "y": 84.87192, + "z": 18.5 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.358976, + "y": 92.48115, + "z": 21.25 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 5.8814855, + "y": 84.571396, + "z": 21.25 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.210957, + "y": 92.78167, + "z": 24.0 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 6.0295053, + "y": 84.270874, + "z": 24.0 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 14.062937, + "y": 93.08219, + "z": 26.75 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 6.177525, + "y": 83.97035, + "z": 26.75 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 13.914917, + "y": 93.38271, + "z": 29.5 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 6.325545, + "y": 83.66983, + "z": 29.5 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 6.4735646, + "y": 83.36931, + "z": 32.25 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 36.3, + "y": 18.425, + "z": 0.0 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 50.58858, + "y": 7.420229, + "z": 13.2 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 50.20079, + "y": 7.226972, + "z": 21.45 + }, + "xAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 49.80351, + "y": 7.0540676, + "z": 29.7 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 39.583332 + }, + "xAxis": { + "x": -0.29757574, + "y": 0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": -0.9546982, + "y": -0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 34.083332 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.971397, + "y": 11.384627, + "z": 7.7 + }, + "xAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.267677, + "y": 8.263756, + "z": 7.7 + }, + "xAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.912888, + "y": 11.448994, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.326187, + "y": 8.199389, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.80036, + "y": 7.577432, + "z": 35.2 + }, + "xAxis": { + "x": 0.29757574, + "y": -0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": 0.9546982, + "y": 0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.855495, + "y": 11.514361, + "z": 13.2 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.38358, + "y": 8.134022, + "z": 13.2 + }, + "xAxis": { + "x": 0.42628422, + "y": -0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.799244, + "y": 11.580711, + "z": 15.95 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.43983, + "y": 8.067672, + "z": 15.95 + }, + "xAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.74415, + "y": 11.648024, + "z": 18.7 + }, + "xAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.494926, + "y": 8.00036, + "z": 18.7 + }, + "xAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.69022, + "y": 11.716277, + "z": 21.45 + }, + "xAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.548855, + "y": 7.932106, + "z": 21.45 + }, + "xAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.63748, + "y": 11.785452, + "z": 24.2 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.601593, + "y": 7.8629313, + "z": 24.2 + }, + "xAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.58595, + "y": 11.855528, + "z": 26.95 + }, + "xAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.653126, + "y": 7.792855, + "z": 26.95 + }, + "xAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.53563, + "y": 11.926484, + "z": 29.7 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.703445, + "y": 7.721899, + "z": 29.7 + }, + "xAxis": { + "x": 0.33038318, + "y": -0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.75253, + "y": 7.6500845, + "z": 32.45 + }, + "xAxis": { + "x": 0.31402633, + "y": -0.94941425, + "z": 0.0 + }, + "yAxis": { + "x": 0.94941425, + "y": 0.31402633, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.607227, + "y": 10.218126, + "z": 7.7 + }, + "xAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.631847, + "y": 9.430257, + "z": 7.7 + }, + "xAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.528023, + "y": 10.219848, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.711052, + "y": 9.428535, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.419224, + "y": 9.351663, + "z": 35.2 + }, + "xAxis": { + "x": 0.29757574, + "y": -0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": 0.9546982, + "y": 0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.448856, + "y": 10.222939, + "z": 13.2 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.369755, + "y": 10.227396, + "z": 15.95 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.86932, + "y": 9.420987, + "z": 15.95 + }, + "xAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.29074, + "y": 10.233219, + "z": 18.7 + }, + "xAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.948334, + "y": 9.415164, + "z": 18.7 + }, + "xAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.21184, + "y": 10.240407, + "z": 21.45 + }, + "xAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.133076, + "y": 10.248957, + "z": 24.2 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.106, + "y": 9.399426, + "z": 24.2 + }, + "xAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.054474, + "y": 10.258866, + "z": 26.95 + }, + "xAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.1846, + "y": 9.389517, + "z": 26.95 + }, + "xAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 45.97605, + "y": 10.270132, + "z": 29.7 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.34124, + "y": 9.365632, + "z": 32.45 + }, + "xAxis": { + "x": 0.31402633, + "y": -0.94941425, + "z": 0.0 + }, + "yAxis": { + "x": 0.94941425, + "y": 0.31402633, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.43131, + "y": 12.184445, + "z": 7.7 + }, + "xAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.807766, + "y": 7.4639378, + "z": 7.7 + }, + "xAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.385506, + "y": 12.119802, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.85357, + "y": 7.5285807, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.314022, + "y": 8.072087, + "z": 35.2 + }, + "xAxis": { + "x": -0.29757574, + "y": 0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": -0.9546982, + "y": -0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.900486, + "y": 7.592423, + "z": 13.2 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.290577, + "y": 11.992938, + "z": 15.95 + }, + "xAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.948498, + "y": 7.6554446, + "z": 15.95 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.241486, + "y": 11.930756, + "z": 18.7 + }, + "xAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.99759, + "y": 7.717628, + "z": 18.7 + }, + "xAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.04775, + "y": 7.7789536, + "z": 21.45 + }, + "xAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.140114, + "y": 11.80898, + "z": 24.2 + }, + "xAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.09896, + "y": 7.839403, + "z": 24.2 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.087864, + "y": 11.749424, + "z": 26.95 + }, + "xAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.15121, + "y": 7.898959, + "z": 26.95 + }, + "xAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.204483, + "y": 7.9576035, + "z": 29.7 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.25876, + "y": 8.015319, + "z": 32.45 + }, + "xAxis": { + "x": -0.31402633, + "y": 0.94941425, + "z": 0.0 + }, + "yAxis": { + "x": -0.94941425, + "y": -0.31402633, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.59781, + "y": 15.820277, + "z": 7.7 + }, + "xAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.641266, + "y": 3.8281054, + "z": 7.7 + }, + "xAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.61465, + "y": 15.734938, + "z": 10.45 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.624424, + "y": 3.913446, + "z": 10.45 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.53979, + "y": 4.6909475, + "z": 35.2 + }, + "xAxis": { + "x": -0.29757574, + "y": 0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": -0.9546982, + "y": -0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.630013, + "y": 15.649319, + "z": 13.2 + }, + "xAxis": { + "x": 0.42628422, + "y": -0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.609062, + "y": 3.9990644, + "z": 13.2 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.643894, + "y": 15.563447, + "z": 15.95 + }, + "xAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.59518, + "y": 4.0849357, + "z": 15.95 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.65629, + "y": 15.477349, + "z": 18.7 + }, + "xAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.582787, + "y": 4.171034, + "z": 18.7 + }, + "xAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.667194, + "y": 15.391049, + "z": 21.45 + }, + "xAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.57188, + "y": 4.2573338, + "z": 21.45 + }, + "xAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.67661, + "y": 15.304574, + "z": 24.2 + }, + "xAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.562466, + "y": 4.3438087, + "z": 24.2 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.684525, + "y": 15.21795, + "z": 26.95 + }, + "xAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.55455, + "y": 4.4304338, + "z": 26.95 + }, + "xAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.690945, + "y": 15.131201, + "z": 29.7 + }, + "xAxis": { + "x": 0.33038318, + "y": -0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.54813, + "y": 4.5171824, + "z": 29.7 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.54321, + "y": 4.604029, + "z": 32.45 + }, + "xAxis": { + "x": -0.31402633, + "y": 0.94941425, + "z": 0.0 + }, + "yAxis": { + "x": -0.94941425, + "y": -0.31402633, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.285862, + "y": 18.567074, + "z": 8.616667 + }, + "xAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + }, + "yAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.953213, + "y": 1.0813091, + "z": 8.616667 + }, + "xAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + }, + "yAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.350506, + "y": 18.521269, + "z": 11.366667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.81742, + "y": 1.4913056, + "z": 11.366667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.343246, + "y": 2.1132624, + "z": 36.116665 + }, + "xAxis": { + "x": -0.29757574, + "y": 0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": -0.9546982, + "y": -0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.414345, + "y": 18.474354, + "z": 14.116667 + }, + "xAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + }, + "yAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.76003, + "y": 1.5566735, + "z": 14.116667 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.477367, + "y": 18.426342, + "z": 16.866667 + }, + "xAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + }, + "yAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.703777, + "y": 1.6230232, + "z": 16.866667 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.53955, + "y": 18.377249, + "z": 19.616667 + }, + "xAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.699524, + "y": 1.2711337, + "z": 19.616667 + }, + "xAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.600876, + "y": 18.32709, + "z": 22.366667 + }, + "xAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.6382, + "y": 1.3212937, + "z": 22.366667 + }, + "xAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.661327, + "y": 18.275877, + "z": 25.116667 + }, + "xAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + }, + "yAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.542015, + "y": 1.8277638, + "z": 25.116667 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 49.720882, + "y": 18.223629, + "z": 27.866667 + }, + "xAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + }, + "yAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.518192, + "y": 1.4247547, + "z": 27.866667 + }, + "xAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + }, + "yAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 49.779526, + "y": 18.170359, + "z": 30.616667 + }, + "xAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + }, + "yAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.440163, + "y": 1.9687958, + "z": 30.616667 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.401833, + "y": 1.5323001, + "z": 33.366665 + }, + "xAxis": { + "x": -0.94941425, + "y": -0.31402633, + "z": 0.0 + }, + "yAxis": { + "x": 0.31402633, + "y": -0.94941425, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.65003, + "y": 19.733576, + "z": 8.616667 + }, + "xAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + }, + "yAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 52.589046, + "y": -0.085191905, + "z": 8.616667 + }, + "xAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + }, + "yAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.73537, + "y": 19.750414, + "z": 11.366667 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.432556, + "y": 0.26215976, + "z": 11.366667 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.726204, + "y": -0.18666607, + "z": 36.116665 + }, + "xAxis": { + "x": -0.9546982, + "y": -0.29757574, + "z": 0.0 + }, + "yAxis": { + "x": 0.29757574, + "y": -0.9546982, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.820988, + "y": 19.765778, + "z": 14.116667 + }, + "xAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + }, + "yAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.35339, + "y": 0.26524982, + "z": 14.116667 + }, + "xAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.90686, + "y": 19.77966, + "z": 16.866667 + }, + "xAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + }, + "yAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.27429, + "y": 0.2697072, + "z": 16.866667 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.992958, + "y": 19.792053, + "z": 19.616667 + }, + "xAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 52.246117, + "y": -0.14367057, + "z": 19.616667 + }, + "xAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.079258, + "y": 19.80296, + "z": 22.366667 + }, + "xAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 52.159817, + "y": -0.15457647, + "z": 22.366667 + }, + "xAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.165733, + "y": 19.812372, + "z": 25.116667 + }, + "xAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + }, + "yAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 51.03761, + "y": 0.2912682, + "z": 25.116667 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.252357, + "y": 19.82029, + "z": 27.866667 + }, + "xAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + }, + "yAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.986717, + "y": -0.17190738, + "z": 27.866667 + }, + "xAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + }, + "yAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 46.339104, + "y": 19.82671, + "z": 30.616667 + }, + "xAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + }, + "yAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 50.880585, + "y": 0.3124437, + "z": 30.616667 + }, + "xAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.81312, + "y": -0.18324727, + "z": 33.366665 + }, + "xAxis": { + "x": -0.94941425, + "y": -0.31402633, + "z": 0.0 + }, + "yAxis": { + "x": 0.31402633, + "y": -0.94941425, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.903233, + "y": 17.421625, + "z": 9.533333 + }, + "xAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.335842, + "y": 2.2267573, + "z": 9.533333 + }, + "xAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.31323, + "y": 18.55742, + "z": 12.283333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.29004, + "y": 2.1621141, + "z": 12.283333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 54.829586, + "y": 1.6186075, + "z": 37.033333 + }, + "xAxis": { + "x": 0.29757574, + "y": -0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": 0.9546982, + "y": 0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.378597, + "y": 18.614809, + "z": 15.033333 + }, + "xAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + }, + "yAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.243122, + "y": 2.0982718, + "z": 15.033333 + }, + "xAxis": { + "x": 0.42628422, + "y": -0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 43.043964, + "y": 17.613132, + "z": 17.783333 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.19511, + "y": 2.03525, + "z": 17.783333 + }, + "xAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.512257, + "y": 18.726158, + "z": 20.533333 + }, + "xAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.14602, + "y": 1.9730668, + "z": 20.533333 + }, + "xAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.580513, + "y": 18.780085, + "z": 23.283333 + }, + "xAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.09586, + "y": 1.9117413, + "z": 23.283333 + }, + "xAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 43.194427, + "y": 17.797092, + "z": 26.033333 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.044647, + "y": 1.8512915, + "z": 26.033333 + }, + "xAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 43.246677, + "y": 17.856647, + "z": 28.783333 + }, + "xAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 54.992397, + "y": 1.7917355, + "z": 28.783333 + }, + "xAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.790718, + "y": 18.934675, + "z": 31.533333 + }, + "xAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + }, + "yAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 54.939125, + "y": 1.7330914, + "z": 31.533333 + }, + "xAxis": { + "x": 0.33038318, + "y": -0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 54.88485, + "y": 1.6753763, + "z": 34.283333 + }, + "xAxis": { + "x": 0.31402633, + "y": -0.94941425, + "z": 0.0 + }, + "yAxis": { + "x": 0.94941425, + "y": 0.31402633, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 41.736732, + "y": 13.785794, + "z": 9.533333 + }, + "xAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.502342, + "y": 5.8625894, + "z": 9.533333 + }, + "xAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + }, + "yAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.084084, + "y": 14.942286, + "z": 12.283333 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.519184, + "y": 5.777249, + "z": 12.283333 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.603817, + "y": 4.9997473, + "z": 37.033333 + }, + "xAxis": { + "x": 0.29757574, + "y": -0.9546982, + "z": 0.0 + }, + "yAxis": { + "x": 0.9546982, + "y": 0.29757574, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.087173, + "y": 15.021452, + "z": 15.033333 + }, + "xAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + }, + "yAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.534546, + "y": 5.6916304, + "z": 15.033333 + }, + "xAxis": { + "x": 0.42628422, + "y": -0.9045893, + "z": 0.0 + }, + "yAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 41.690647, + "y": 14.042624, + "z": 17.783333 + }, + "xAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.548428, + "y": 5.605759, + "z": 17.783333 + }, + "xAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + }, + "yAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.097454, + "y": 15.179565, + "z": 20.533333 + }, + "xAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.56082, + "y": 5.519661, + "z": 20.533333 + }, + "xAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + }, + "yAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 41.667347, + "y": 14.215022, + "z": 23.283333 + }, + "xAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.571728, + "y": 5.433361, + "z": 23.283333 + }, + "xAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + }, + "yAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 41.657932, + "y": 14.301497, + "z": 26.033333 + }, + "xAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.581142, + "y": 5.346886, + "z": 26.033333 + }, + "xAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + }, + "yAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 41.650017, + "y": 14.388122, + "z": 28.783333 + }, + "xAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.589058, + "y": 5.260261, + "z": 28.783333 + }, + "xAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + }, + "yAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.134365, + "y": 15.494255, + "z": 31.533333 + }, + "xAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + }, + "yAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.595478, + "y": 5.1735125, + "z": 31.533333 + }, + "xAxis": { + "x": 0.33038318, + "y": -0.9438469, + "z": 0.0 + }, + "yAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.6004, + "y": 5.0866656, + "z": 34.283333 + }, + "xAxis": { + "x": 0.31402633, + "y": -0.94941425, + "z": 0.0 + }, + "yAxis": { + "x": 0.94941425, + "y": 0.31402633, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 7.5 + }, + "xAxis": { + "x": -0.88932097, + "y": -0.45728356, + "z": 0.0 + }, + "yAxis": { + "x": 0.45728356, + "y": -0.88932097, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 7.5 + }, + "xAxis": { + "x": 0.88932097, + "y": 0.45728356, + "z": 0.0 + }, + "yAxis": { + "x": -0.45728356, + "y": 0.88932097, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 10.25 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 10.25 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 35.0 + }, + "xAxis": { + "x": 0.9546982, + "y": 0.29757574, + "z": 0.0 + }, + "yAxis": { + "x": -0.29757574, + "y": 0.9546982, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 13.0 + }, + "xAxis": { + "x": -0.9045893, + "y": -0.42628422, + "z": 0.0 + }, + "yAxis": { + "x": 0.42628422, + "y": -0.9045893, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 13.0 + }, + "xAxis": { + "x": 0.9045893, + "y": 0.42628422, + "z": 0.0 + }, + "yAxis": { + "x": -0.42628422, + "y": 0.9045893, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 15.75 + }, + "xAxis": { + "x": -0.91181946, + "y": -0.41059133, + "z": 0.0 + }, + "yAxis": { + "x": 0.41059133, + "y": -0.91181946, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 15.75 + }, + "xAxis": { + "x": 0.91181946, + "y": 0.41059133, + "z": 0.0 + }, + "yAxis": { + "x": -0.41059133, + "y": 0.91181946, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 18.5 + }, + "xAxis": { + "x": -0.91877747, + "y": -0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": 0.39477587, + "y": -0.91877747, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 18.5 + }, + "xAxis": { + "x": 0.91877747, + "y": 0.39477587, + "z": 0.0 + }, + "yAxis": { + "x": -0.39477587, + "y": 0.91877747, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 21.25 + }, + "xAxis": { + "x": -0.9254611, + "y": -0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": 0.37884253, + "y": -0.9254611, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 21.25 + }, + "xAxis": { + "x": 0.9254611, + "y": 0.37884253, + "z": 0.0 + }, + "yAxis": { + "x": -0.37884253, + "y": 0.9254611, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 24.0 + }, + "xAxis": { + "x": -0.93186855, + "y": -0.36279613, + "z": 0.0 + }, + "yAxis": { + "x": 0.36279613, + "y": -0.93186855, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 24.0 + }, + "xAxis": { + "x": 0.93186855, + "y": 0.36279613, + "z": 0.0 + }, + "yAxis": { + "x": -0.36279613, + "y": 0.93186855, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 26.75 + }, + "xAxis": { + "x": -0.93799776, + "y": -0.3466414, + "z": 0.0 + }, + "yAxis": { + "x": 0.3466414, + "y": -0.93799776, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 26.75 + }, + "xAxis": { + "x": 0.93799776, + "y": 0.3466414, + "z": 0.0 + }, + "yAxis": { + "x": -0.3466414, + "y": 0.93799776, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 46.66727, + "y": 14.803036, + "z": 29.5 + }, + "xAxis": { + "x": -0.9438469, + "y": -0.33038318, + "z": 0.0 + }, + "yAxis": { + "x": 0.33038318, + "y": -0.9438469, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 29.5 + }, + "xAxis": { + "x": 0.9438469, + "y": 0.33038318, + "z": 0.0 + }, + "yAxis": { + "x": -0.33038318, + "y": 0.9438469, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.571804, + "y": 4.8453474, + "z": 32.25 + }, + "xAxis": { + "x": 0.94941425, + "y": 0.31402633, + "z": 0.0 + }, + "yAxis": { + "x": -0.31402633, + "y": 0.94941425, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 73.7, + "y": 9.075, + "z": 0.0 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.878914, + "y": 9.686985, + "z": 13.2 + }, + "xAxis": { + "x": -0.96856874, + "y": 0.24874611, + "z": 0.0 + }, + "yAxis": { + "x": -0.24874611, + "y": -0.96856874, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 10.147437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.55005, + "y": 8.814442, + "z": 21.45 + }, + "xAxis": { + "x": -0.9370789, + "y": 0.34911764, + "z": 0.0 + }, + "yAxis": { + "x": -0.34911764, + "y": -0.9370789, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 22.027437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.13133, + "y": 7.981274, + "z": 29.7 + }, + "xAxis": { + "x": -0.8952193, + "y": 0.4456258, + "z": 0.0 + }, + "yAxis": { + "x": -0.4456258, + "y": -0.8952193, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 33.907433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 39.583332 + }, + "xAxis": { + "x": -0.7155458, + "y": 0.69856584, + "z": 0.0 + }, + "yAxis": { + "x": -0.69856584, + "y": -0.7155458, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 34.083332 + }, + "xAxis": { + "x": -0.7627582, + "y": 0.64668375, + "z": 0.0 + }, + "yAxis": { + "x": -0.64668375, + "y": -0.7627582, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 84.26547, + "y": 9.162091, + "z": 7.7 + }, + "xAxis": { + "x": -0.99945986, + "y": 0.03286397, + "z": 0.0 + }, + "yAxis": { + "x": -0.03286397, + "y": -0.99945986, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.55513, + "y": 10.6787195, + "z": 7.7 + }, + "xAxis": { + "x": 0.99945986, + "y": -0.03286397, + "z": 0.0 + }, + "yAxis": { + "x": 0.03286397, + "y": 0.99945986, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 84.15297, + "y": 9.1698885, + "z": 10.45 + }, + "xAxis": { + "x": -0.9976922, + "y": 0.06789891, + "z": 0.0 + }, + "yAxis": { + "x": -0.06789891, + "y": -0.9976922, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.66763, + "y": 10.670922, + "z": 10.45 + }, + "xAxis": { + "x": 0.9976922, + "y": -0.06789891, + "z": 0.0 + }, + "yAxis": { + "x": 0.06789891, + "y": 0.9976922, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.64837, + "y": 10.426133, + "z": 35.2 + }, + "xAxis": { + "x": 0.92729235, + "y": -0.374338, + "z": 0.0 + }, + "yAxis": { + "x": 0.374338, + "y": 0.92729235, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 42.912548 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 84.0408, + "y": 9.181626, + "z": 13.2 + }, + "xAxis": { + "x": -0.99469686, + "y": 0.10285027, + "z": 0.0 + }, + "yAxis": { + "x": -0.10285027, + "y": -0.99469686, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.7798, + "y": 10.659184, + "z": 13.2 + }, + "xAxis": { + "x": 0.99469686, + "y": -0.10285027, + "z": 0.0 + }, + "yAxis": { + "x": 0.10285027, + "y": 0.99469686, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 83.92912, + "y": 9.197291, + "z": 15.95 + }, + "xAxis": { + "x": -0.99047744, + "y": 0.13767508, + "z": 0.0 + }, + "yAxis": { + "x": -0.13767508, + "y": -0.99047744, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.89148, + "y": 10.643519, + "z": 15.95 + }, + "xAxis": { + "x": 0.99047744, + "y": -0.13767508, + "z": 0.0 + }, + "yAxis": { + "x": 0.13767508, + "y": 0.99047744, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 83.81806, + "y": 9.216865, + "z": 18.7 + }, + "xAxis": { + "x": -0.9850392, + "y": 0.17233045, + "z": 0.0 + }, + "yAxis": { + "x": -0.17233045, + "y": -0.9850392, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.00254, + "y": 10.623946, + "z": 18.7 + }, + "xAxis": { + "x": 0.9850392, + "y": -0.17233045, + "z": 0.0 + }, + "yAxis": { + "x": 0.17233045, + "y": 0.9850392, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 83.70775, + "y": 9.24032, + "z": 21.45 + }, + "xAxis": { + "x": -0.9783888, + "y": 0.2067738, + "z": 0.0 + }, + "yAxis": { + "x": -0.2067738, + "y": -0.9783888, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.112854, + "y": 10.600491, + "z": 21.45 + }, + "xAxis": { + "x": 0.9783888, + "y": -0.2067738, + "z": 0.0 + }, + "yAxis": { + "x": 0.2067738, + "y": 0.9783888, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 83.59833, + "y": 9.267632, + "z": 24.2 + }, + "xAxis": { + "x": -0.9705344, + "y": 0.24096268, + "z": 0.0 + }, + "yAxis": { + "x": -0.24096268, + "y": -0.9705344, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.222275, + "y": 10.573179, + "z": 24.2 + }, + "xAxis": { + "x": 0.9705344, + "y": -0.24096268, + "z": 0.0 + }, + "yAxis": { + "x": 0.24096268, + "y": 0.9705344, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 83.48994, + "y": 9.298763, + "z": 26.95 + }, + "xAxis": { + "x": -0.9614857, + "y": 0.27485502, + "z": 0.0 + }, + "yAxis": { + "x": -0.27485502, + "y": -0.9614857, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.330666, + "y": 10.5420475, + "z": 26.95 + }, + "xAxis": { + "x": 0.9614857, + "y": -0.27485502, + "z": 0.0 + }, + "yAxis": { + "x": 0.27485502, + "y": 0.9614857, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 83.3827, + "y": 9.333677, + "z": 29.7 + }, + "xAxis": { + "x": -0.9512538, + "y": 0.30840915, + "z": 0.0 + }, + "yAxis": { + "x": -0.30840915, + "y": -0.9512538, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.437904, + "y": 10.5071335, + "z": 29.7 + }, + "xAxis": { + "x": 0.9512538, + "y": -0.30840915, + "z": 0.0 + }, + "yAxis": { + "x": 0.30840915, + "y": 0.9512538, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.543846, + "y": 10.468479, + "z": 32.45 + }, + "xAxis": { + "x": 0.93985134, + "y": -0.34158376, + "z": 0.0 + }, + "yAxis": { + "x": 0.34158376, + "y": 0.93985134, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 38.95255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.68621, + "y": 10.081065, + "z": 7.7 + }, + "xAxis": { + "x": -0.7258621, + "y": -0.6878403, + "z": 0.0 + }, + "yAxis": { + "x": 0.6878403, + "y": -0.7258621, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.13439, + "y": 9.759746, + "z": 7.7 + }, + "xAxis": { + "x": 0.7258621, + "y": 0.6878403, + "z": 0.0 + }, + "yAxis": { + "x": -0.6878403, + "y": 0.7258621, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.60445, + "y": 10.003391, + "z": 10.45 + }, + "xAxis": { + "x": -0.74954087, + "y": -0.6619581, + "z": 0.0 + }, + "yAxis": { + "x": 0.6619581, + "y": -0.74954087, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.216156, + "y": 9.8374195, + "z": 10.45 + }, + "xAxis": { + "x": 0.74954087, + "y": 0.6619581, + "z": 0.0 + }, + "yAxis": { + "x": -0.6619581, + "y": 0.74954087, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.05926, + "y": 10.395044, + "z": 35.2 + }, + "xAxis": { + "x": 0.9180365, + "y": 0.39649576, + "z": 0.0 + }, + "yAxis": { + "x": -0.39649576, + "y": 0.9180365, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 42.129883 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.52001, + "y": 9.928634, + "z": 13.2 + }, + "xAxis": { + "x": -0.77229726, + "y": -0.63526136, + "z": 0.0 + }, + "yAxis": { + "x": 0.63526136, + "y": -0.77229726, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.43301, + "y": 9.856883, + "z": 15.95 + }, + "xAxis": { + "x": -0.79410326, + "y": -0.60778284, + "z": 0.0 + }, + "yAxis": { + "x": 0.60778284, + "y": -0.79410326, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.387596, + "y": 9.983928, + "z": 15.95 + }, + "xAxis": { + "x": 0.79410326, + "y": 0.60778284, + "z": 0.0 + }, + "yAxis": { + "x": -0.60778284, + "y": 0.79410326, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.34354, + "y": 9.788229, + "z": 18.7 + }, + "xAxis": { + "x": -0.8149321, + "y": -0.57955647, + "z": 0.0 + }, + "yAxis": { + "x": 0.57955647, + "y": -0.8149321, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.477066, + "y": 10.052582, + "z": 18.7 + }, + "xAxis": { + "x": 0.8149321, + "y": 0.57955647, + "z": 0.0 + }, + "yAxis": { + "x": -0.57955647, + "y": 0.8149321, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.25171, + "y": 9.7227545, + "z": 21.45 + }, + "xAxis": { + "x": -0.8347581, + "y": -0.55061686, + "z": 0.0 + }, + "yAxis": { + "x": 0.55061686, + "y": -0.8347581, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.157646, + "y": 9.660542, + "z": 24.2 + }, + "xAxis": { + "x": -0.8535569, + "y": -0.52099967, + "z": 0.0 + }, + "yAxis": { + "x": 0.52099967, + "y": -0.8535569, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.66296, + "y": 10.180269, + "z": 24.2 + }, + "xAxis": { + "x": 0.8535569, + "y": 0.52099967, + "z": 0.0 + }, + "yAxis": { + "x": -0.52099967, + "y": 0.8535569, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 86.061455, + "y": 9.6016655, + "z": 26.95 + }, + "xAxis": { + "x": -0.8713053, + "y": -0.49074137, + "z": 0.0 + }, + "yAxis": { + "x": 0.49074137, + "y": -0.8713053, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.75915, + "y": 10.239145, + "z": 26.95 + }, + "xAxis": { + "x": 0.8713053, + "y": 0.49074137, + "z": 0.0 + }, + "yAxis": { + "x": -0.49074137, + "y": 0.8713053, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 85.963264, + "y": 9.5462, + "z": 29.7 + }, + "xAxis": { + "x": -0.8879815, + "y": -0.4598792, + "z": 0.0 + }, + "yAxis": { + "x": 0.4598792, + "y": -0.8879815, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 92.95741, + "y": 10.346599, + "z": 32.45 + }, + "xAxis": { + "x": 0.903565, + "y": 0.4284511, + "z": 0.0 + }, + "yAxis": { + "x": -0.4284511, + "y": 0.903565, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 38.169884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.64204, + "y": 12.206689, + "z": 7.7 + }, + "xAxis": { + "x": -0.03286397, + "y": -0.99945986, + "z": 0.0 + }, + "yAxis": { + "x": 0.99945986, + "y": -0.03286397, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.178566, + "y": 7.6341214, + "z": 7.7 + }, + "xAxis": { + "x": 0.03286397, + "y": 0.99945986, + "z": 0.0 + }, + "yAxis": { + "x": -0.99945986, + "y": 0.03286397, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.63424, + "y": 12.094183, + "z": 10.45 + }, + "xAxis": { + "x": -0.06789891, + "y": -0.9976922, + "z": 0.0 + }, + "yAxis": { + "x": 0.9976922, + "y": -0.06789891, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.18636, + "y": 7.746628, + "z": 10.45 + }, + "xAxis": { + "x": 0.06789891, + "y": 0.9976922, + "z": 0.0 + }, + "yAxis": { + "x": -0.9976922, + "y": 0.06789891, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.43115, + "y": 8.727365, + "z": 35.2 + }, + "xAxis": { + "x": 0.374338, + "y": 0.92729235, + "z": 0.0 + }, + "yAxis": { + "x": -0.92729235, + "y": 0.374338, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 41.028614 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.1981, + "y": 7.858791, + "z": 13.2 + }, + "xAxis": { + "x": 0.10285027, + "y": 0.99469686, + "z": 0.0 + }, + "yAxis": { + "x": -0.99469686, + "y": 0.10285027, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.606834, + "y": 11.8703375, + "z": 15.95 + }, + "xAxis": { + "x": -0.13767508, + "y": -0.99047744, + "z": 0.0 + }, + "yAxis": { + "x": 0.99047744, + "y": -0.13767508, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.21377, + "y": 7.970474, + "z": 15.95 + }, + "xAxis": { + "x": 0.13767508, + "y": 0.99047744, + "z": 0.0 + }, + "yAxis": { + "x": -0.99047744, + "y": 0.13767508, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.587265, + "y": 11.759273, + "z": 18.7 + }, + "xAxis": { + "x": -0.17233045, + "y": -0.9850392, + "z": 0.0 + }, + "yAxis": { + "x": 0.9850392, + "y": -0.17233045, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.23334, + "y": 8.081538, + "z": 18.7 + }, + "xAxis": { + "x": 0.17233045, + "y": 0.9850392, + "z": 0.0 + }, + "yAxis": { + "x": -0.9850392, + "y": 0.17233045, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.25679, + "y": 8.191848, + "z": 21.45 + }, + "xAxis": { + "x": 0.2067738, + "y": 0.9783888, + "z": 0.0 + }, + "yAxis": { + "x": -0.9783888, + "y": 0.2067738, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.5365, + "y": 11.539544, + "z": 24.2 + }, + "xAxis": { + "x": -0.24096268, + "y": -0.9705344, + "z": 0.0 + }, + "yAxis": { + "x": 0.9705344, + "y": -0.24096268, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.2841, + "y": 8.301267, + "z": 24.2 + }, + "xAxis": { + "x": 0.24096268, + "y": 0.9705344, + "z": 0.0 + }, + "yAxis": { + "x": -0.9705344, + "y": 0.24096268, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.50536, + "y": 11.43115, + "z": 26.95 + }, + "xAxis": { + "x": -0.27485502, + "y": -0.9614857, + "z": 0.0 + }, + "yAxis": { + "x": 0.9614857, + "y": -0.27485502, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.31524, + "y": 8.40966, + "z": 26.95 + }, + "xAxis": { + "x": 0.27485502, + "y": 0.9614857, + "z": 0.0 + }, + "yAxis": { + "x": -0.9614857, + "y": 0.27485502, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.35015, + "y": 8.516896, + "z": 29.7 + }, + "xAxis": { + "x": 0.30840915, + "y": 0.9512538, + "z": 0.0 + }, + "yAxis": { + "x": -0.9512538, + "y": 0.30840915, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.3888, + "y": 8.622841, + "z": 32.45 + }, + "xAxis": { + "x": 0.34158376, + "y": 0.93985134, + "z": 0.0 + }, + "yAxis": { + "x": -0.93985134, + "y": 0.34158376, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 37.068615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.72307, + "y": 14.627426, + "z": 7.7 + }, + "xAxis": { + "x": 0.6878403, + "y": -0.7258621, + "z": 0.0 + }, + "yAxis": { + "x": 0.7258621, + "y": 0.6878403, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.097534, + "y": 5.2133846, + "z": 7.7 + }, + "xAxis": { + "x": -0.6878403, + "y": 0.7258621, + "z": 0.0 + }, + "yAxis": { + "x": -0.7258621, + "y": -0.6878403, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.800735, + "y": 14.545663, + "z": 10.45 + }, + "xAxis": { + "x": 0.6619581, + "y": -0.74954087, + "z": 0.0 + }, + "yAxis": { + "x": 0.74954087, + "y": 0.6619581, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.01987, + "y": 5.295148, + "z": 10.45 + }, + "xAxis": { + "x": -0.6619581, + "y": 0.74954087, + "z": 0.0 + }, + "yAxis": { + "x": -0.74954087, + "y": -0.6619581, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.46224, + "y": 6.13825, + "z": 35.2 + }, + "xAxis": { + "x": -0.39649576, + "y": 0.9180365, + "z": 0.0 + }, + "yAxis": { + "x": -0.9180365, + "y": -0.39649576, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 40.15937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.875496, + "y": 14.4612255, + "z": 13.2 + }, + "xAxis": { + "x": 0.63526136, + "y": -0.77229726, + "z": 0.0 + }, + "yAxis": { + "x": 0.77229726, + "y": 0.63526136, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.94511, + "y": 5.3795853, + "z": 13.2 + }, + "xAxis": { + "x": -0.63526136, + "y": 0.77229726, + "z": 0.0 + }, + "yAxis": { + "x": -0.77229726, + "y": -0.63526136, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.94725, + "y": 14.374218, + "z": 15.95 + }, + "xAxis": { + "x": 0.60778284, + "y": -0.79410326, + "z": 0.0 + }, + "yAxis": { + "x": 0.79410326, + "y": 0.60778284, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.87335, + "y": 5.466593, + "z": 15.95 + }, + "xAxis": { + "x": -0.60778284, + "y": 0.79410326, + "z": 0.0 + }, + "yAxis": { + "x": -0.79410326, + "y": -0.60778284, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.0159, + "y": 14.284747, + "z": 18.7 + }, + "xAxis": { + "x": 0.57955647, + "y": -0.8149321, + "z": 0.0 + }, + "yAxis": { + "x": 0.8149321, + "y": 0.57955647, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.8047, + "y": 5.556063, + "z": 18.7 + }, + "xAxis": { + "x": -0.57955647, + "y": 0.8149321, + "z": 0.0 + }, + "yAxis": { + "x": -0.8149321, + "y": -0.57955647, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.081375, + "y": 14.192924, + "z": 21.45 + }, + "xAxis": { + "x": 0.55061686, + "y": -0.8347581, + "z": 0.0 + }, + "yAxis": { + "x": 0.8347581, + "y": 0.55061686, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.73923, + "y": 5.6478868, + "z": 21.45 + }, + "xAxis": { + "x": -0.55061686, + "y": 0.8347581, + "z": 0.0 + }, + "yAxis": { + "x": -0.8347581, + "y": -0.55061686, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.143585, + "y": 14.098861, + "z": 24.2 + }, + "xAxis": { + "x": 0.52099967, + "y": -0.8535569, + "z": 0.0 + }, + "yAxis": { + "x": 0.8535569, + "y": 0.52099967, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.67702, + "y": 5.7419505, + "z": 24.2 + }, + "xAxis": { + "x": -0.52099967, + "y": 0.8535569, + "z": 0.0 + }, + "yAxis": { + "x": -0.8535569, + "y": -0.52099967, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.20246, + "y": 14.002673, + "z": 26.95 + }, + "xAxis": { + "x": 0.49074137, + "y": -0.8713053, + "z": 0.0 + }, + "yAxis": { + "x": 0.8713053, + "y": 0.49074137, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.61814, + "y": 5.838138, + "z": 26.95 + }, + "xAxis": { + "x": -0.49074137, + "y": 0.8713053, + "z": 0.0 + }, + "yAxis": { + "x": -0.8713053, + "y": -0.49074137, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.25793, + "y": 13.904479, + "z": 29.7 + }, + "xAxis": { + "x": 0.4598792, + "y": -0.8879815, + "z": 0.0 + }, + "yAxis": { + "x": 0.8879815, + "y": 0.4598792, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.562675, + "y": 5.9363313, + "z": 29.7 + }, + "xAxis": { + "x": -0.4598792, + "y": 0.8879815, + "z": 0.0 + }, + "yAxis": { + "x": -0.8879815, + "y": -0.4598792, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.51068, + "y": 6.03641, + "z": 32.45 + }, + "xAxis": { + "x": -0.4284511, + "y": 0.903565, + "z": 0.0 + }, + "yAxis": { + "x": -0.903565, + "y": -0.4284511, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 36.19937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.59744, + "y": 15.583253, + "z": 8.616667 + }, + "xAxis": { + "x": 0.99945986, + "y": -0.03286397, + "z": 0.0 + }, + "yAxis": { + "x": 0.03286397, + "y": 0.99945986, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.22316, + "y": 4.257558, + "z": 8.616667 + }, + "xAxis": { + "x": -0.99945986, + "y": 0.03286397, + "z": 0.0 + }, + "yAxis": { + "x": -0.03286397, + "y": -0.99945986, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.709946, + "y": 15.575456, + "z": 11.366667 + }, + "xAxis": { + "x": 0.9976922, + "y": -0.06789891, + "z": 0.0 + }, + "yAxis": { + "x": 0.06789891, + "y": 0.9976922, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.11066, + "y": 4.2653546, + "z": 11.366667 + }, + "xAxis": { + "x": -0.9976922, + "y": 0.06789891, + "z": 0.0 + }, + "yAxis": { + "x": -0.06789891, + "y": -0.9976922, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.12992, + "y": 4.510144, + "z": 36.116665 + }, + "xAxis": { + "x": -0.92729235, + "y": 0.374338, + "z": 0.0 + }, + "yAxis": { + "x": -0.374338, + "y": -0.92729235, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 40.101658 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.82211, + "y": 15.563718, + "z": 14.116667 + }, + "xAxis": { + "x": 0.99469686, + "y": -0.10285027, + "z": 0.0 + }, + "yAxis": { + "x": 0.10285027, + "y": 0.99469686, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.99849, + "y": 4.277093, + "z": 14.116667 + }, + "xAxis": { + "x": -0.99469686, + "y": 0.10285027, + "z": 0.0 + }, + "yAxis": { + "x": -0.10285027, + "y": -0.99469686, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.93379, + "y": 15.548053, + "z": 16.866667 + }, + "xAxis": { + "x": 0.99047744, + "y": -0.13767508, + "z": 0.0 + }, + "yAxis": { + "x": 0.13767508, + "y": 0.99047744, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.88681, + "y": 4.2927585, + "z": 16.866667 + }, + "xAxis": { + "x": -0.99047744, + "y": 0.13767508, + "z": 0.0 + }, + "yAxis": { + "x": -0.13767508, + "y": -0.99047744, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.04485, + "y": 15.52848, + "z": 19.616667 + }, + "xAxis": { + "x": 0.9850392, + "y": -0.17233045, + "z": 0.0 + }, + "yAxis": { + "x": 0.17233045, + "y": 0.9850392, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.77575, + "y": 4.312331, + "z": 19.616667 + }, + "xAxis": { + "x": -0.9850392, + "y": 0.17233045, + "z": 0.0 + }, + "yAxis": { + "x": -0.17233045, + "y": -0.9850392, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.15517, + "y": 15.505024, + "z": 22.366667 + }, + "xAxis": { + "x": 0.9783888, + "y": -0.2067738, + "z": 0.0 + }, + "yAxis": { + "x": 0.2067738, + "y": 0.9783888, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.665436, + "y": 4.3357873, + "z": 22.366667 + }, + "xAxis": { + "x": -0.9783888, + "y": 0.2067738, + "z": 0.0 + }, + "yAxis": { + "x": -0.2067738, + "y": -0.9783888, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.26459, + "y": 15.477713, + "z": 25.116667 + }, + "xAxis": { + "x": 0.9705344, + "y": -0.24096268, + "z": 0.0 + }, + "yAxis": { + "x": 0.24096268, + "y": 0.9705344, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.556015, + "y": 4.363098, + "z": 25.116667 + }, + "xAxis": { + "x": -0.9705344, + "y": 0.24096268, + "z": 0.0 + }, + "yAxis": { + "x": -0.24096268, + "y": -0.9705344, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 85.37298, + "y": 15.446581, + "z": 27.866667 + }, + "xAxis": { + "x": 0.9614857, + "y": -0.27485502, + "z": 0.0 + }, + "yAxis": { + "x": 0.27485502, + "y": 0.9614857, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.447624, + "y": 4.3942294, + "z": 27.866667 + }, + "xAxis": { + "x": -0.9614857, + "y": 0.27485502, + "z": 0.0 + }, + "yAxis": { + "x": -0.27485502, + "y": -0.9614857, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 85.48022, + "y": 15.411667, + "z": 30.616667 + }, + "xAxis": { + "x": 0.9512538, + "y": -0.30840915, + "z": 0.0 + }, + "yAxis": { + "x": 0.30840915, + "y": 0.9512538, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.340385, + "y": 4.429144, + "z": 30.616667 + }, + "xAxis": { + "x": -0.9512538, + "y": 0.30840915, + "z": 0.0 + }, + "yAxis": { + "x": -0.30840915, + "y": -0.9512538, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.23444, + "y": 4.467798, + "z": 33.366665 + }, + "xAxis": { + "x": -0.93985134, + "y": 0.34158376, + "z": 0.0 + }, + "yAxis": { + "x": -0.34158376, + "y": -0.93985134, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 36.14166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.176704, + "y": 14.664279, + "z": 8.616667 + }, + "xAxis": { + "x": 0.7258621, + "y": 0.6878403, + "z": 0.0 + }, + "yAxis": { + "x": -0.6878403, + "y": 0.7258621, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 96.6439, + "y": 5.1765313, + "z": 8.616667 + }, + "xAxis": { + "x": -0.7258621, + "y": -0.6878403, + "z": 0.0 + }, + "yAxis": { + "x": 0.6878403, + "y": -0.7258621, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.25847, + "y": 14.741953, + "z": 11.366667 + }, + "xAxis": { + "x": 0.74954087, + "y": 0.6619581, + "z": 0.0 + }, + "yAxis": { + "x": -0.6619581, + "y": 0.74954087, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 96.56213, + "y": 5.098858, + "z": 11.366667 + }, + "xAxis": { + "x": -0.74954087, + "y": -0.6619581, + "z": 0.0 + }, + "yAxis": { + "x": 0.6619581, + "y": -0.74954087, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 95.71903, + "y": 4.541233, + "z": 36.116665 + }, + "xAxis": { + "x": -0.9180365, + "y": -0.39649576, + "z": 0.0 + }, + "yAxis": { + "x": 0.39649576, + "y": -0.9180365, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 40.884323 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.3429, + "y": 14.81671, + "z": 14.116667 + }, + "xAxis": { + "x": 0.77229726, + "y": 0.63526136, + "z": 0.0 + }, + "yAxis": { + "x": -0.63526136, + "y": 0.77229726, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 10.449885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 96.4777, + "y": 5.0241, + "z": 14.116667 + }, + "xAxis": { + "x": -0.77229726, + "y": -0.63526136, + "z": 0.0 + }, + "yAxis": { + "x": 0.63526136, + "y": -0.77229726, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.42991, + "y": 14.888461, + "z": 16.866667 + }, + "xAxis": { + "x": 0.79410326, + "y": 0.60778284, + "z": 0.0 + }, + "yAxis": { + "x": -0.60778284, + "y": 0.79410326, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 96.39069, + "y": 4.9523497, + "z": 16.866667 + }, + "xAxis": { + "x": -0.79410326, + "y": -0.60778284, + "z": 0.0 + }, + "yAxis": { + "x": 0.60778284, + "y": -0.79410326, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.51938, + "y": 14.957115, + "z": 19.616667 + }, + "xAxis": { + "x": 0.8149321, + "y": 0.57955647, + "z": 0.0 + }, + "yAxis": { + "x": -0.57955647, + "y": 0.8149321, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 96.30122, + "y": 4.883695, + "z": 19.616667 + }, + "xAxis": { + "x": -0.8149321, + "y": -0.57955647, + "z": 0.0 + }, + "yAxis": { + "x": 0.57955647, + "y": -0.8149321, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.611206, + "y": 15.02259, + "z": 22.366667 + }, + "xAxis": { + "x": 0.8347581, + "y": 0.55061686, + "z": 0.0 + }, + "yAxis": { + "x": -0.55061686, + "y": 0.8347581, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 22.329885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 96.2094, + "y": 4.818221, + "z": 22.366667 + }, + "xAxis": { + "x": -0.8347581, + "y": -0.55061686, + "z": 0.0 + }, + "yAxis": { + "x": 0.55061686, + "y": -0.8347581, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.70527, + "y": 15.084803, + "z": 25.116667 + }, + "xAxis": { + "x": 0.8535569, + "y": 0.52099967, + "z": 0.0 + }, + "yAxis": { + "x": -0.52099967, + "y": 0.8535569, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 96.11533, + "y": 4.7560077, + "z": 25.116667 + }, + "xAxis": { + "x": -0.8535569, + "y": -0.52099967, + "z": 0.0 + }, + "yAxis": { + "x": 0.52099967, + "y": -0.8535569, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.80146, + "y": 15.143679, + "z": 27.866667 + }, + "xAxis": { + "x": 0.8713053, + "y": 0.49074137, + "z": 0.0 + }, + "yAxis": { + "x": -0.49074137, + "y": 0.8713053, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 96.01914, + "y": 4.697132, + "z": 27.866667 + }, + "xAxis": { + "x": -0.8713053, + "y": -0.49074137, + "z": 0.0 + }, + "yAxis": { + "x": 0.49074137, + "y": -0.8713053, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.89965, + "y": 15.199144, + "z": 30.616667 + }, + "xAxis": { + "x": 0.8879815, + "y": 0.4598792, + "z": 0.0 + }, + "yAxis": { + "x": -0.4598792, + "y": 0.8879815, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 34.209885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 95.92095, + "y": 4.641666, + "z": 30.616667 + }, + "xAxis": { + "x": -0.8879815, + "y": -0.4598792, + "z": 0.0 + }, + "yAxis": { + "x": 0.4598792, + "y": -0.8879815, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 95.82088, + "y": 4.5896783, + "z": 33.366665 + }, + "xAxis": { + "x": -0.903565, + "y": -0.4284511, + "z": 0.0 + }, + "yAxis": { + "x": 0.4284511, + "y": -0.903565, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 36.924324 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 81.22088, + "y": 12.538655, + "z": 9.533333 + }, + "xAxis": { + "x": 0.03286397, + "y": 0.99945986, + "z": 0.0 + }, + "yAxis": { + "x": -0.99945986, + "y": 0.03286397, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.599724, + "y": 7.302156, + "z": 9.533333 + }, + "xAxis": { + "x": -0.03286397, + "y": -0.99945986, + "z": 0.0 + }, + "yAxis": { + "x": 0.99945986, + "y": -0.03286397, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.228676, + "y": 12.651161, + "z": 12.283333 + }, + "xAxis": { + "x": 0.06789891, + "y": 0.9976922, + "z": 0.0 + }, + "yAxis": { + "x": -0.9976922, + "y": 0.06789891, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.59193, + "y": 7.1896496, + "z": 12.283333 + }, + "xAxis": { + "x": -0.06789891, + "y": -0.9976922, + "z": 0.0 + }, + "yAxis": { + "x": 0.9976922, + "y": -0.06789891, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.34714, + "y": 6.208913, + "z": 37.033333 + }, + "xAxis": { + "x": -0.374338, + "y": -0.92729235, + "z": 0.0 + }, + "yAxis": { + "x": 0.92729235, + "y": -0.374338, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 41.98559 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.24041, + "y": 12.763325, + "z": 15.033333 + }, + "xAxis": { + "x": 0.10285027, + "y": 0.99469686, + "z": 0.0 + }, + "yAxis": { + "x": -0.99469686, + "y": 0.10285027, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.58019, + "y": 7.0774865, + "z": 15.033333 + }, + "xAxis": { + "x": -0.10285027, + "y": -0.99469686, + "z": 0.0 + }, + "yAxis": { + "x": 0.99469686, + "y": -0.10285027, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 10.305597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 81.25608, + "y": 12.875007, + "z": 17.783333 + }, + "xAxis": { + "x": 0.13767508, + "y": 0.99047744, + "z": 0.0 + }, + "yAxis": { + "x": -0.99047744, + "y": 0.13767508, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.56452, + "y": 6.9658036, + "z": 17.783333 + }, + "xAxis": { + "x": -0.13767508, + "y": -0.99047744, + "z": 0.0 + }, + "yAxis": { + "x": 0.99047744, + "y": -0.13767508, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.27565, + "y": 12.986072, + "z": 20.533333 + }, + "xAxis": { + "x": 0.17233045, + "y": 0.9850392, + "z": 0.0 + }, + "yAxis": { + "x": -0.9850392, + "y": 0.17233045, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.54495, + "y": 6.854739, + "z": 20.533333 + }, + "xAxis": { + "x": -0.17233045, + "y": -0.9850392, + "z": 0.0 + }, + "yAxis": { + "x": 0.9850392, + "y": -0.17233045, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.2991, + "y": 13.096381, + "z": 23.283333 + }, + "xAxis": { + "x": 0.2067738, + "y": 0.9783888, + "z": 0.0 + }, + "yAxis": { + "x": -0.9783888, + "y": 0.2067738, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.5215, + "y": 6.7444296, + "z": 23.283333 + }, + "xAxis": { + "x": -0.2067738, + "y": -0.9783888, + "z": 0.0 + }, + "yAxis": { + "x": 0.9783888, + "y": -0.2067738, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 22.185598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 81.326416, + "y": 13.2058, + "z": 26.033333 + }, + "xAxis": { + "x": 0.24096268, + "y": 0.9705344, + "z": 0.0 + }, + "yAxis": { + "x": -0.9705344, + "y": 0.24096268, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.49419, + "y": 6.6350102, + "z": 26.033333 + }, + "xAxis": { + "x": -0.24096268, + "y": -0.9705344, + "z": 0.0 + }, + "yAxis": { + "x": 0.9705344, + "y": -0.24096268, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 81.35755, + "y": 13.314194, + "z": 28.783333 + }, + "xAxis": { + "x": 0.27485502, + "y": 0.9614857, + "z": 0.0 + }, + "yAxis": { + "x": -0.9614857, + "y": 0.27485502, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.46305, + "y": 6.5266166, + "z": 28.783333 + }, + "xAxis": { + "x": -0.27485502, + "y": -0.9614857, + "z": 0.0 + }, + "yAxis": { + "x": 0.9614857, + "y": -0.27485502, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.39246, + "y": 13.42143, + "z": 31.533333 + }, + "xAxis": { + "x": 0.30840915, + "y": 0.9512538, + "z": 0.0 + }, + "yAxis": { + "x": -0.9512538, + "y": 0.30840915, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.42814, + "y": 6.419381, + "z": 31.533333 + }, + "xAxis": { + "x": -0.30840915, + "y": -0.9512538, + "z": 0.0 + }, + "yAxis": { + "x": 0.9512538, + "y": -0.30840915, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 34.065594 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 97.38949, + "y": 6.3134365, + "z": 34.283333 + }, + "xAxis": { + "x": -0.34158376, + "y": -0.93985134, + "z": 0.0 + }, + "yAxis": { + "x": 0.93985134, + "y": -0.34158376, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 38.025593 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.13985, + "y": 10.117918, + "z": 9.533333 + }, + "xAxis": { + "x": -0.6878403, + "y": 0.7258621, + "z": 0.0 + }, + "yAxis": { + "x": -0.7258621, + "y": -0.6878403, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 96.680756, + "y": 9.722893, + "z": 9.533333 + }, + "xAxis": { + "x": 0.6878403, + "y": -0.7258621, + "z": 0.0 + }, + "yAxis": { + "x": 0.7258621, + "y": 0.6878403, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 82.06218, + "y": 10.199681, + "z": 12.283333 + }, + "xAxis": { + "x": -0.6619581, + "y": 0.74954087, + "z": 0.0 + }, + "yAxis": { + "x": -0.74954087, + "y": -0.6619581, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 96.75842, + "y": 9.6411295, + "z": 12.283333 + }, + "xAxis": { + "x": 0.6619581, + "y": -0.74954087, + "z": 0.0 + }, + "yAxis": { + "x": 0.74954087, + "y": 0.6619581, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 97.31605, + "y": 8.798027, + "z": 37.033333 + }, + "xAxis": { + "x": 0.39649576, + "y": -0.9180365, + "z": 0.0 + }, + "yAxis": { + "x": 0.9180365, + "y": 0.39649576, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 42.854836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 81.98742, + "y": 10.284119, + "z": 15.033333 + }, + "xAxis": { + "x": -0.63526136, + "y": 0.77229726, + "z": 0.0 + }, + "yAxis": { + "x": -0.77229726, + "y": -0.63526136, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 96.83318, + "y": 9.556692, + "z": 15.033333 + }, + "xAxis": { + "x": 0.63526136, + "y": -0.77229726, + "z": 0.0 + }, + "yAxis": { + "x": 0.77229726, + "y": 0.63526136, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 81.915665, + "y": 10.371126, + "z": 17.783333 + }, + "xAxis": { + "x": -0.60778284, + "y": 0.79410326, + "z": 0.0 + }, + "yAxis": { + "x": -0.79410326, + "y": -0.60778284, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 96.90494, + "y": 9.469685, + "z": 17.783333 + }, + "xAxis": { + "x": 0.60778284, + "y": -0.79410326, + "z": 0.0 + }, + "yAxis": { + "x": 0.79410326, + "y": 0.60778284, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 81.847015, + "y": 10.460597, + "z": 20.533333 + }, + "xAxis": { + "x": -0.57955647, + "y": 0.8149321, + "z": 0.0 + }, + "yAxis": { + "x": -0.8149321, + "y": -0.57955647, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 96.97359, + "y": 9.380214, + "z": 20.533333 + }, + "xAxis": { + "x": 0.57955647, + "y": -0.8149321, + "z": 0.0 + }, + "yAxis": { + "x": 0.8149321, + "y": 0.57955647, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 81.78154, + "y": 10.552421, + "z": 23.283333 + }, + "xAxis": { + "x": -0.55061686, + "y": 0.8347581, + "z": 0.0 + }, + "yAxis": { + "x": -0.8347581, + "y": -0.55061686, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 97.03906, + "y": 9.28839, + "z": 23.283333 + }, + "xAxis": { + "x": 0.55061686, + "y": -0.8347581, + "z": 0.0 + }, + "yAxis": { + "x": 0.8347581, + "y": 0.55061686, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 81.71933, + "y": 10.646483, + "z": 26.033333 + }, + "xAxis": { + "x": -0.52099967, + "y": 0.8535569, + "z": 0.0 + }, + "yAxis": { + "x": -0.8535569, + "y": -0.52099967, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 97.10127, + "y": 9.194327, + "z": 26.033333 + }, + "xAxis": { + "x": 0.52099967, + "y": -0.8535569, + "z": 0.0 + }, + "yAxis": { + "x": 0.8535569, + "y": 0.52099967, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 81.66045, + "y": 10.742671, + "z": 28.783333 + }, + "xAxis": { + "x": -0.49074137, + "y": 0.8713053, + "z": 0.0 + }, + "yAxis": { + "x": -0.8713053, + "y": -0.49074137, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 97.16015, + "y": 9.09814, + "z": 28.783333 + }, + "xAxis": { + "x": 0.49074137, + "y": -0.8713053, + "z": 0.0 + }, + "yAxis": { + "x": 0.8713053, + "y": 0.49074137, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 81.60499, + "y": 10.840865, + "z": 31.533333 + }, + "xAxis": { + "x": -0.4598792, + "y": 0.8879815, + "z": 0.0 + }, + "yAxis": { + "x": -0.8879815, + "y": -0.4598792, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 97.215614, + "y": 8.999946, + "z": 31.533333 + }, + "xAxis": { + "x": 0.4598792, + "y": -0.8879815, + "z": 0.0 + }, + "yAxis": { + "x": 0.8879815, + "y": 0.4598792, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 97.26761, + "y": 8.899868, + "z": 34.283333 + }, + "xAxis": { + "x": 0.4284511, + "y": -0.903565, + "z": 0.0 + }, + "yAxis": { + "x": 0.903565, + "y": 0.4284511, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 38.894836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 7.5 + }, + "xAxis": { + "x": -0.4101134, + "y": -0.9120346, + "z": 0.0 + }, + "yAxis": { + "x": 0.9120346, + "y": -0.4101134, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 7.5 + }, + "xAxis": { + "x": 0.4101134, + "y": 0.9120346, + "z": 0.0 + }, + "yAxis": { + "x": -0.9120346, + "y": 0.4101134, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 10.25 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 10.25 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 35.0 + }, + "xAxis": { + "x": 0.69856584, + "y": 0.7155458, + "z": 0.0 + }, + "yAxis": { + "x": -0.7155458, + "y": 0.69856584, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 13.0 + }, + "xAxis": { + "x": -0.47304255, + "y": -0.88103956, + "z": 0.0 + }, + "yAxis": { + "x": 0.88103956, + "y": -0.47304255, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 13.0 + }, + "xAxis": { + "x": 0.47304255, + "y": 0.88103956, + "z": 0.0 + }, + "yAxis": { + "x": -0.88103956, + "y": 0.47304255, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 15.75 + }, + "xAxis": { + "x": -0.50365317, + "y": -0.86390597, + "z": 0.0 + }, + "yAxis": { + "x": 0.86390597, + "y": -0.50365317, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 15.75 + }, + "xAxis": { + "x": 0.50365317, + "y": 0.86390597, + "z": 0.0 + }, + "yAxis": { + "x": -0.86390597, + "y": 0.50365317, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 18.5 + }, + "xAxis": { + "x": -0.53364396, + "y": -0.8457092, + "z": 0.0 + }, + "yAxis": { + "x": 0.8457092, + "y": -0.53364396, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 18.5 + }, + "xAxis": { + "x": 0.53364396, + "y": 0.8457092, + "z": 0.0 + }, + "yAxis": { + "x": -0.8457092, + "y": 0.53364396, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 21.25 + }, + "xAxis": { + "x": -0.56297815, + "y": -0.8264718, + "z": 0.0 + }, + "yAxis": { + "x": 0.8264718, + "y": -0.56297815, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 21.25 + }, + "xAxis": { + "x": 0.56297815, + "y": 0.8264718, + "z": 0.0 + }, + "yAxis": { + "x": -0.8264718, + "y": 0.56297815, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 24.0 + }, + "xAxis": { + "x": -0.5916195, + "y": -0.8062173, + "z": 0.0 + }, + "yAxis": { + "x": 0.8062173, + "y": -0.5916195, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 24.0 + }, + "xAxis": { + "x": 0.5916195, + "y": 0.8062173, + "z": 0.0 + }, + "yAxis": { + "x": -0.8062173, + "y": 0.5916195, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 26.75 + }, + "xAxis": { + "x": -0.6195328, + "y": -0.78497076, + "z": 0.0 + }, + "yAxis": { + "x": 0.78497076, + "y": -0.6195328, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 26.75 + }, + "xAxis": { + "x": 0.6195328, + "y": 0.78497076, + "z": 0.0 + }, + "yAxis": { + "x": -0.78497076, + "y": 0.6195328, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 84.43146, + "y": 12.372672, + "z": 29.5 + }, + "xAxis": { + "x": -0.64668375, + "y": -0.7627582, + "z": 0.0 + }, + "yAxis": { + "x": 0.7627582, + "y": -0.64668375, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 29.5 + }, + "xAxis": { + "x": 0.64668375, + "y": 0.7627582, + "z": 0.0 + }, + "yAxis": { + "x": -0.7627582, + "y": 0.64668375, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.389145, + "y": 7.4681387, + "z": 32.25 + }, + "xAxis": { + "x": 0.6730389, + "y": 0.73960704, + "z": 0.0 + }, + "yAxis": { + "x": -0.73960704, + "y": 0.6730389, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 63.8, + "y": 128.425, + "z": 0.0 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 49.13137, + "y": 129.57578, + "z": 19.842703 + }, + "xAxis": { + "x": 0.7385565, + "y": -0.67417014, + "z": -0.0053724926 + }, + "yAxis": { + "x": 0.67415893, + "y": 0.73857576, + "z": -0.0039567803 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.089474, + "y": 131.49405, + "z": 35.217346 + }, + "xAxis": { + "x": 0.54095507, + "y": -0.84051055, + "z": 0.030161077 + }, + "yAxis": { + "x": 0.84092736, + "y": 0.5411434, + "z": -0.0022270724 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.15555, + "y": 133.29184, + "z": 50.59242 + }, + "xAxis": { + "x": 0.30661806, + "y": -0.94967663, + "z": 0.06402878 + }, + "yAxis": { + "x": 0.95142585, + "y": 0.30775926, + "z": 0.008549462 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.54876, + "y": 126.35697, + "z": 67.570045 + }, + "xAxis": { + "x": 0.18872777, + "y": -0.9783842, + "z": -0.08453534 + }, + "yAxis": { + "x": 0.9813645, + "y": 0.19106719, + "z": -0.020422136 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 55.928505, + "y": 125.836876, + "z": 57.15121 + }, + "xAxis": { + "x": 0.35550255, + "y": -0.93245506, + "z": 0.06438575 + }, + "yAxis": { + "x": 0.9342611, + "y": 0.35655156, + "z": 0.0052204495 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 56.866863, + "y": 129.85585, + "z": 9.413813 + }, + "xAxis": { + "x": 0.8434106, + "y": -0.53714603, + "z": -0.011518981 + }, + "yAxis": { + "x": 0.53725797, + "y": 0.8433393, + "z": 0.011518218 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.77544, + "y": 123.17193, + "z": 9.413813 + }, + "xAxis": { + "x": -0.8701092, + "y": 0.49272436, + "z": -0.011518982 + }, + "yAxis": { + "x": -0.4928398, + "y": -0.8700438, + "z": 0.011518218 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 57.58133, + "y": 129.74474, + "z": 14.60294 + }, + "xAxis": { + "x": 0.79399097, + "y": -0.6079295, + "z": 0.00010787936 + }, + "yAxis": { + "x": 0.6079039, + "y": 0.7939592, + "z": 0.009034589 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 43.056175, + "y": 123.24587, + "z": 14.60294 + }, + "xAxis": { + "x": -0.8244235, + "y": 0.5659734, + "z": 0.00010787926 + }, + "yAxis": { + "x": -0.5659495, + "y": -0.8243904, + "z": 0.009034589 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 38.974895, + "y": 124.11577, + "z": 61.554436 + }, + "xAxis": { + "x": -0.1880753, + "y": 0.9768714, + "z": 0.10173499 + }, + "yAxis": { + "x": -0.9808457, + "y": -0.19216031, + "z": 0.031877585 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.24346, + "y": 129.61935, + "z": 19.79868 + }, + "xAxis": { + "x": 0.7385609, + "y": -0.6740816, + "z": 0.011905654 + }, + "yAxis": { + "x": 0.6740436, + "y": 0.7386528, + "z": 0.007561558 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 42.38844, + "y": 123.33678, + "z": 19.79868 + }, + "xAxis": { + "x": -0.77249545, + "y": 0.6349087, + "z": 0.011905654 + }, + "yAxis": { + "x": -0.63486594, + "y": -0.77258533, + "z": 0.0075615575 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.85217, + "y": 129.48434, + "z": 25.000708 + }, + "xAxis": { + "x": 0.6775412, + "y": -0.73510015, + "z": 0.023784777 + }, + "yAxis": { + "x": 0.7351749, + "y": 0.6778402, + "z": 0.0071103075 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 41.773552, + "y": 123.44006, + "z": 25.000708 + }, + "xAxis": { + "x": -0.7147193, + "y": 0.69900686, + "z": 0.023784777 + }, + "yAxis": { + "x": -0.69906604, + "y": -0.7150217, + "z": 0.0071103065 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 59.406776, + "y": 129.3444, + "z": 30.208652 + }, + "xAxis": { + "x": 0.611395, + "y": -0.79052186, + "z": 0.035655063 + }, + "yAxis": { + "x": 0.7908337, + "y": 0.6119828, + "z": 0.007684263 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 41.21244, + "y": 123.55108, + "z": 30.208652 + }, + "xAxis": { + "x": -0.6515336, + "y": 0.75778145, + "z": 0.035655063 + }, + "yAxis": { + "x": -0.7580624, + "y": -0.65213674, + "z": 0.007684262 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 59.907017, + "y": 129.20428, + "z": 35.422096 + }, + "xAxis": { + "x": 0.5406247, + "y": -0.839926, + "z": 0.0474264 + }, + "yAxis": { + "x": 0.8405975, + "y": 0.5415808, + "z": 0.009279067 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 40.705612, + "y": 123.66509, + "z": 35.422096 + }, + "xAxis": { + "x": -0.5834181, + "y": 0.8107861, + "z": 0.047426403 + }, + "yAxis": { + "x": -0.81140715, + "y": -0.5844077, + "z": 0.009279067 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 60.35303, + "y": 129.0687, + "z": 40.640575 + }, + "xAxis": { + "x": 0.46576726, + "y": -0.88293755, + "z": 0.059009418 + }, + "yAxis": { + "x": 0.88408846, + "y": 0.46716854, + "z": 0.011882613 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 40.25317, + "y": 123.7774, + "z": 40.640575 + }, + "xAxis": { + "x": -0.51088977, + "y": 0.8576185, + "z": 0.059009425 + }, + "yAxis": { + "x": -0.8586952, + "y": -0.51234883, + "z": 0.0118826125 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 60.74538, + "y": 128.94235, + "z": 45.863598 + }, + "xAxis": { + "x": 0.38739124, + "y": -0.9192299, + "z": 0.07031619 + }, + "yAxis": { + "x": 0.92097634, + "y": 0.38931102, + "z": 0.015475135 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 39.8548, + "y": 123.88324, + "z": 45.863598 + }, + "xAxis": { + "x": -0.43449947, + "y": 0.89792305, + "z": 0.07031619 + }, + "yAxis": { + "x": -0.89956766, + "y": -0.43650717, + "z": 0.015475135 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 61.08503, + "y": 128.82988, + "z": 51.090626 + }, + "xAxis": { + "x": 0.30609155, + "y": -0.94852763, + "z": 0.08126086 + }, + "yAxis": { + "x": 0.95098126, + "y": 0.30859926, + "z": 0.02002936 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 39.509785, + "y": 123.97796, + "z": 51.090626 + }, + "xAxis": { + "x": -0.354827, + "y": 0.93139386, + "z": 0.08126087 + }, + "yAxis": { + "x": -0.9337142, + "y": -0.35745847, + "z": 0.02002936 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 39.21699, + "y": 124.05696, + "z": 56.321102 + }, + "xAxis": { + "x": -0.2724772, + "y": 0.9577767, + "z": 0.091760375 + }, + "yAxis": { + "x": -0.96087563, + "y": -0.27580288, + "z": 0.025510713 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.275993, + "y": 128.83545, + "z": 9.529733 + }, + "xAxis": { + "x": 0.8428881, + "y": -0.5365773, + "z": -0.040304422 + }, + "yAxis": { + "x": 0.5375211, + "y": 0.8430734, + "z": 0.017270565 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 48.307274, + "y": 124.428825, + "z": 9.529733 + }, + "xAxis": { + "x": -0.8695579, + "y": 0.49218345, + "z": -0.040304422 + }, + "yAxis": { + "x": -0.49311638, + "y": -0.8697919, + "z": 0.017270565 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.91879, + "y": 129.12494, + "z": 14.688468 + }, + "xAxis": { + "x": 0.79374176, + "y": -0.6075781, + "z": -0.028684698 + }, + "yAxis": { + "x": 0.60809875, + "y": 0.7937236, + "z": 0.014790977 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 47.68034, + "y": 124.106415, + "z": 14.688468 + }, + "xAxis": { + "x": -0.8241564, + "y": 0.5656354, + "z": -0.028684698 + }, + "yAxis": { + "x": -0.5661562, + "y": -0.8241652, + "z": 0.014790977 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.868153, + "y": 121.49565, + "z": 61.225407 + }, + "xAxis": { + "x": -0.1893267, + "y": 0.9791923, + "z": 0.07306017 + }, + "yAxis": { + "x": -0.98059374, + "y": -0.19240543, + "z": 0.037631355 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 53.544315, + "y": 129.40457, + "z": 19.84987 + }, + "xAxis": { + "x": 0.73856527, + "y": -0.6739704, + "z": -0.01688993 + }, + "yAxis": { + "x": 0.67417294, + "y": 0.7384534, + "z": 0.013321156 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 54.151756, + "y": 129.6759, + "z": 25.013874 + }, + "xAxis": { + "x": 0.67777747, + "y": -0.73525006, + "z": -0.0050096633 + }, + "yAxis": { + "x": 0.73524207, + "y": 0.6776824, + "z": 0.012872256 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 46.477577, + "y": 123.49232, + "z": 25.013874 + }, + "xAxis": { + "x": -0.714963, + "y": 0.6991443, + "z": -0.005009663 + }, + "yAxis": { + "x": -0.69914126, + "y": -0.71486765, + "z": 0.012872256 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 54.74045, + "y": 129.94052, + "z": 30.180397 + }, + "xAxis": { + "x": 0.6118398, + "y": -0.7909519, + "z": 0.0068659117 + }, + "yAxis": { + "x": 0.79084253, + "y": 0.6118719, + "z": 0.01344769 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 45.90338, + "y": 123.19754, + "z": 30.180397 + }, + "xAxis": { + "x": -0.65200007, + "y": 0.75818783, + "z": 0.0068659117 + }, + "yAxis": { + "x": -0.75807697, + "y": -0.6520265, + "z": 0.013447689 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 55.30987, + "y": 130.20013, + "z": 35.349335 + }, + "xAxis": { + "x": 0.541253, + "y": -0.84065306, + "z": 0.018646637 + }, + "yAxis": { + "x": 0.8405522, + "y": 0.54152167, + "z": 0.015043086 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 55.85964, + "y": 130.4564, + "z": 40.520565 + }, + "xAxis": { + "x": 0.4665527, + "y": -0.8839762, + "z": 0.030243078 + }, + "yAxis": { + "x": 0.8839937, + "y": 0.46716565, + "z": 0.017646333 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 44.81243, + "y": 122.62437, + "z": 40.520565 + }, + "xAxis": { + "x": -0.511728, + "y": 0.85861504, + "z": 0.030243082 + }, + "yAxis": { + "x": -0.8586008, + "y": -0.512341, + "z": 0.017646333 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 56.389515, + "y": 130.71107, + "z": 45.69395 + }, + "xAxis": { + "x": 0.38830623, + "y": -0.9205924, + "z": 0.0415672 + }, + "yAxis": { + "x": 0.9208372, + "y": 0.3893684, + "z": 0.02123767 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 44.296463, + "y": 122.34258, + "z": 45.69395 + }, + "xAxis": { + "x": -0.43548384, + "y": 0.8992363, + "z": 0.0415672 + }, + "yAxis": { + "x": -0.89942575, + "y": -0.4365573, + "z": 0.02123767 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 56.89943, + "y": 130.96588, + "z": 50.869335 + }, + "xAxis": { + "x": 0.30710754, + "y": -0.9502238, + "z": 0.052533023 + }, + "yAxis": { + "x": 0.9508031, + "y": 0.30872056, + "z": 0.025789829 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 43.32438, + "y": 121.77996, + "z": 56.04655 + }, + "xAxis": { + "x": -0.27366897, + "y": 0.9597547, + "z": 0.06305732 + }, + "yAxis": { + "x": -0.9606547, + "y": -0.27597997, + "z": 0.031268254 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.644028, + "y": 124.70513, + "z": 9.486556 + }, + "xAxis": { + "x": -0.8428881, + "y": 0.5365773, + "z": 0.040304422 + }, + "yAxis": { + "x": -0.5375211, + "y": -0.8430734, + "z": -0.017270565 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.721695, + "y": 128.68997, + "z": 9.486556 + }, + "xAxis": { + "x": 0.8695579, + "y": -0.49218345, + "z": 0.040304422 + }, + "yAxis": { + "x": 0.49311638, + "y": 0.8697919, + "z": -0.017270565 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.94073, + "y": 125.23665, + "z": 14.657449 + }, + "xAxis": { + "x": -0.79374176, + "y": 0.6075781, + "z": 0.028684698 + }, + "yAxis": { + "x": -0.60809875, + "y": -0.7937236, + "z": -0.014790977 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.45293, + "y": 128.14378, + "z": 14.657449 + }, + "xAxis": { + "x": 0.8241564, + "y": -0.5656354, + "z": 0.028684698 + }, + "yAxis": { + "x": 0.5661562, + "y": 0.8241652, + "z": -0.014790977 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.67295, + "y": 122.434845, + "z": 61.08236 + }, + "xAxis": { + "x": 0.1893267, + "y": -0.9791923, + "z": -0.07306017 + }, + "yAxis": { + "x": 0.98059374, + "y": 0.19240543, + "z": -0.037631355 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.18035, + "y": 127.57822, + "z": 19.826056 + }, + "xAxis": { + "x": 0.7724941, + "y": -0.63479733, + "z": 0.01688993 + }, + "yAxis": { + "x": 0.6350054, + "y": 0.7723928, + "z": -0.013321155 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.550232, + "y": 126.35669, + "z": 24.992258 + }, + "xAxis": { + "x": -0.67777747, + "y": 0.73525006, + "z": 0.0050096633 + }, + "yAxis": { + "x": -0.73524207, + "y": -0.6776824, + "z": -0.012872256 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.902287, + "y": 126.993675, + "z": 24.992258 + }, + "xAxis": { + "x": 0.714963, + "y": -0.6991443, + "z": 0.005009663 + }, + "yAxis": { + "x": 0.69914126, + "y": 0.71486765, + "z": -0.012872256 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 50.866283, + "y": 126.94406, + "z": 30.155956 + }, + "xAxis": { + "x": -0.6118398, + "y": 0.7909519, + "z": -0.0068659117 + }, + "yAxis": { + "x": -0.79084253, + "y": -0.6118719, + "z": -0.01344769 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.617092, + "y": 126.39072, + "z": 30.155956 + }, + "xAxis": { + "x": 0.65200007, + "y": -0.75818783, + "z": -0.0068659117 + }, + "yAxis": { + "x": 0.75807697, + "y": 0.6520265, + "z": -0.013447689 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.323193, + "y": 125.77005, + "z": 35.317066 + }, + "xAxis": { + "x": 0.5840832, + "y": -0.8114796, + "z": -0.018646639 + }, + "yAxis": { + "x": 0.81136495, + "y": 0.5843463, + "z": -0.015043085 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.528698, + "y": 128.16959, + "z": 40.47553 + }, + "xAxis": { + "x": -0.4665527, + "y": 0.8839762, + "z": -0.030243078 + }, + "yAxis": { + "x": -0.8839937, + "y": -0.46716565, + "z": -0.017646333 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.019066, + "y": 125.13252, + "z": 40.47553 + }, + "xAxis": { + "x": 0.511728, + "y": -0.85861504, + "z": -0.030243082 + }, + "yAxis": { + "x": 0.8586008, + "y": 0.512341, + "z": -0.017646333 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.87792, + "y": 128.80577, + "z": 45.6313 + }, + "xAxis": { + "x": -0.38830623, + "y": 0.9205924, + "z": -0.0415672 + }, + "yAxis": { + "x": -0.9208372, + "y": -0.3893684, + "z": -0.02123767 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.703278, + "y": 124.47909, + "z": 45.6313 + }, + "xAxis": { + "x": 0.43548384, + "y": -0.8992363, + "z": -0.0415672 + }, + "yAxis": { + "x": 0.89942575, + "y": 0.4365573, + "z": -0.02123767 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.37448, + "y": 123.81085, + "z": 50.78436 + }, + "xAxis": { + "x": 0.35592952, + "y": -0.9330351, + "z": -0.05253303 + }, + "yAxis": { + "x": 0.93353003, + "y": 0.35757038, + "z": -0.025789829 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.031418, + "y": 123.129, + "z": 55.934704 + }, + "xAxis": { + "x": 0.27366897, + "y": -0.9597547, + "z": -0.06305732 + }, + "yAxis": { + "x": 0.9606547, + "y": 0.27597997, + "z": -0.031268254 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.66311, + "y": 120.11252, + "z": 9.429332 + }, + "xAxis": { + "x": -0.8425714, + "y": 0.53661156, + "z": 0.04606011 + }, + "yAxis": { + "x": -0.5366985, + "y": -0.84369564, + "z": 0.011506757 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.466022, + "y": 133.22362, + "z": 9.429332 + }, + "xAxis": { + "x": 0.8692434, + "y": -0.49223405, + "z": 0.046060115 + }, + "yAxis": { + "x": 0.49226266, + "y": 0.8703706, + "z": 0.011506757 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.560226, + "y": 120.57295, + "z": 14.647171 + }, + "xAxis": { + "x": -0.7934677, + "y": 0.607637, + "z": 0.03444238 + }, + "yAxis": { + "x": -0.6075551, + "y": -0.79415417, + "z": 0.01399647 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.59263, + "y": 132.76912, + "z": 14.647171 + }, + "xAxis": { + "x": 0.8238858, + "y": -0.56570834, + "z": 0.03444238 + }, + "yAxis": { + "x": 0.56559104, + "y": 0.8245671, + "z": 0.01399647 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.31077, + "y": 126.32232, + "z": 61.334106 + }, + "xAxis": { + "x": 0.18932389, + "y": -0.9796049, + "z": -0.06731045 + }, + "yAxis": { + "x": 0.98167795, + "y": 0.19033815, + "z": -0.008930331 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.45716, + "y": 121.08769, + "z": 19.859928 + }, + "xAxis": { + "x": -0.7383316, + "y": 0.6740574, + "z": 0.022649035 + }, + "yAxis": { + "x": -0.67389077, + "y": -0.738669, + "z": 0.015472455 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.722225, + "y": 132.2604, + "z": 19.859928 + }, + "xAxis": { + "x": 0.77226526, + "y": -0.6348964, + "z": 0.022649035 + }, + "yAxis": { + "x": 0.63471246, + "y": 0.7725935, + "z": 0.015472455 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.35864, + "y": 121.65652, + "z": 25.06715 + }, + "xAxis": { + "x": -0.67758167, + "y": 0.7353687, + "z": 0.010769615 + }, + "yAxis": { + "x": -0.7352019, + "y": -0.6776611, + "z": 0.015923508 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.850086, + "y": 131.69746, + "z": 25.06715 + }, + "xAxis": { + "x": 0.7147736, + "y": -0.699273, + "z": 0.010769615 + }, + "yAxis": { + "x": 0.6991023, + "y": 0.71484435, + "z": 0.015923508 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.269356, + "y": 122.27876, + "z": 30.268425 + }, + "xAxis": { + "x": -0.61167896, + "y": 0.79110533, + "z": -0.001105698 + }, + "yAxis": { + "x": -0.791023, + "y": -0.6115939, + "z": 0.015346201 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.97149, + "y": 131.08067, + "z": 30.268425 + }, + "xAxis": { + "x": 0.65184736, + "y": -0.75834936, + "z": -0.001105698 + }, + "yAxis": { + "x": 0.7582716, + "y": 0.65175813, + "z": 0.015346202 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.193928, + "y": 122.95339, + "z": 35.463387 + }, + "xAxis": { + "x": -0.541124, + "y": 0.8408441, + "z": -0.012886748 + }, + "yAxis": { + "x": -0.84093034, + "y": -0.54096884, + "z": 0.013744921 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.081776, + "y": 130.41086, + "z": 35.463387 + }, + "xAxis": { + "x": 0.5839643, + "y": -0.8116771, + "z": -0.01288675 + }, + "yAxis": { + "x": 0.8117712, + "y": 0.5838138, + "z": 0.013744922 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.136868, + "y": 123.678955, + "z": 40.651714 + }, + "xAxis": { + "x": -0.4664522, + "y": 0.8842075, + "z": -0.024484096 + }, + "yAxis": { + "x": -0.884545, + "y": -0.466322, + "z": 0.011131824 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.17635, + "y": 129.68922, + "z": 40.651714 + }, + "xAxis": { + "x": 0.5116396, + "y": -0.85885125, + "z": -0.024484102 + }, + "yAxis": { + "x": 0.85919505, + "y": 0.51152706, + "z": 0.011131824 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.10256, + "y": 124.453606, + "z": 45.833138 + }, + "xAxis": { + "x": -0.38823062, + "y": 0.92086625, + "z": -0.0358097 + }, + "yAxis": { + "x": -0.9215359, + "y": -0.38822025, + "z": 0.007526746 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.25075, + "y": 128.91739, + "z": 45.833138 + }, + "xAxis": { + "x": 0.4354225, + "y": -0.8995137, + "z": -0.035809703 + }, + "yAxis": { + "x": 0.90018296, + "y": 0.43544686, + "z": 0.007526746 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.0952, + "y": 125.27515, + "z": 51.007446 + }, + "xAxis": { + "x": -0.30705306, + "y": 0.9505421, + "z": -0.046777576 + }, + "yAxis": { + "x": -0.9516222, + "y": -0.30725643, + "z": 0.0029570565 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.30067, + "y": 128.09734, + "z": 51.007446 + }, + "xAxis": { + "x": 0.3558916, + "y": -0.9333558, + "z": -0.046777584 + }, + "yAxis": { + "x": 0.93442386, + "y": 0.35615063, + "z": 0.0029570565 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.32198, + "y": 127.23141, + "z": 56.17447 + }, + "xAxis": { + "x": 0.2736506, + "y": -0.9601206, + "z": -0.057304475 + }, + "yAxis": { + "x": 0.96165776, + "y": 0.27424046, + "z": -0.0025425532 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.568897, + "y": 118.573425, + "z": 10.189063 + }, + "xAxis": { + "x": -0.5366985, + "y": -0.84369564, + "z": 0.011506757 + }, + "yAxis": { + "x": 0.8425714, + "y": -0.53661156, + "z": -0.04606011 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 45.485737, + "y": 134.55826, + "z": 10.189063 + }, + "xAxis": { + "x": 0.49226266, + "y": 0.8703706, + "z": 0.011506757 + }, + "yAxis": { + "x": -0.8692434, + "y": 0.49223405, + "z": -0.046060115 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.31269, + "y": 118.70985, + "z": 15.452777 + }, + "xAxis": { + "x": -0.6075551, + "y": -0.79415417, + "z": 0.01399647 + }, + "yAxis": { + "x": 0.7934677, + "y": -0.607637, + "z": -0.03444238 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 46.86025, + "y": 134.64238, + "z": 15.4915285 + }, + "xAxis": { + "x": 0.8238858, + "y": -0.56570834, + "z": 0.03444238 + }, + "yAxis": { + "x": 0.56559104, + "y": 0.8245671, + "z": 0.01399647 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 49.72093, + "y": 129.47762, + "z": 62.510597 + }, + "xAxis": { + "x": 0.18932389, + "y": -0.9796049, + "z": -0.06731045 + }, + "yAxis": { + "x": 0.98167795, + "y": 0.19033815, + "z": -0.008930331 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.02858, + "y": 118.91543, + "z": 20.71281 + }, + "xAxis": { + "x": -0.67389077, + "y": -0.738669, + "z": 0.015472455 + }, + "yAxis": { + "x": 0.7383316, + "y": -0.6740574, + "z": -0.022649035 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.168633, + "y": 134.35486, + "z": 20.743307 + }, + "xAxis": { + "x": 0.77226526, + "y": -0.6348964, + "z": 0.022649035 + }, + "yAxis": { + "x": 0.63471246, + "y": 0.7725935, + "z": 0.015472455 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.722652, + "y": 119.19228, + "z": 25.96835 + }, + "xAxis": { + "x": -0.7352019, + "y": -0.6776611, + "z": 0.015923508 + }, + "yAxis": { + "x": 0.67758167, + "y": -0.7353687, + "z": -0.010769615 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.49401, + "y": 133.99654, + "z": 25.989704 + }, + "xAxis": { + "x": 0.7147736, + "y": -0.699273, + "z": 0.010769615 + }, + "yAxis": { + "x": 0.6991023, + "y": 0.71484435, + "z": 0.015923508 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.40118, + "y": 119.541985, + "z": 31.218616 + }, + "xAxis": { + "x": -0.791023, + "y": -0.6115939, + "z": 0.015346201 + }, + "yAxis": { + "x": 0.61167896, + "y": -0.79110533, + "z": 0.001105698 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 46.70207, + "y": 133.6515, + "z": 31.218616 + }, + "xAxis": { + "x": 0.7582716, + "y": 0.65175813, + "z": 0.015346202 + }, + "yAxis": { + "x": -0.65184736, + "y": 0.75834936, + "z": 0.001105698 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.070545, + "y": 119.965546, + "z": 36.46287 + }, + "xAxis": { + "x": -0.84093034, + "y": -0.54096884, + "z": 0.013744921 + }, + "yAxis": { + "x": 0.541124, + "y": -0.8408441, + "z": 0.012886748 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.05421, + "y": 133.24565, + "z": 36.46287 + }, + "xAxis": { + "x": 0.8117712, + "y": 0.5838138, + "z": 0.013744922 + }, + "yAxis": { + "x": -0.5839643, + "y": 0.8116771, + "z": 0.01288675 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 52.7372, + "y": 120.463425, + "z": 41.70042 + }, + "xAxis": { + "x": -0.884545, + "y": -0.466322, + "z": 0.011131824 + }, + "yAxis": { + "x": 0.4664522, + "y": -0.8842075, + "z": 0.024484096 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 48.50957, + "y": 132.48785, + "z": 41.68974 + }, + "xAxis": { + "x": 0.5116396, + "y": -0.85885125, + "z": -0.024484102 + }, + "yAxis": { + "x": 0.85919505, + "y": 0.51152706, + "z": 0.011131824 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 52.407623, + "y": 121.035515, + "z": 46.930626 + }, + "xAxis": { + "x": -0.9215359, + "y": -0.38822025, + "z": 0.007526746 + }, + "yAxis": { + "x": 0.38823062, + "y": -0.92086625, + "z": 0.0358097 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.771683, + "y": 132.21146, + "z": 46.930626 + }, + "xAxis": { + "x": 0.90018296, + "y": 0.43544686, + "z": 0.007526746 + }, + "yAxis": { + "x": -0.4354225, + "y": 0.8995137, + "z": 0.035809703 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 52.08825, + "y": 121.681145, + "z": 52.152893 + }, + "xAxis": { + "x": -0.9516222, + "y": -0.30725643, + "z": 0.0029570565 + }, + "yAxis": { + "x": 0.30705306, + "y": -0.9505421, + "z": 0.046777576 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 49.15633, + "y": 131.12148, + "z": 52.117836 + }, + "xAxis": { + "x": 0.3558916, + "y": -0.9333558, + "z": -0.046777584 + }, + "yAxis": { + "x": 0.93442386, + "y": 0.35615063, + "z": 0.0029570565 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.46367, + "y": 130.88194, + "z": 57.366703 + }, + "xAxis": { + "x": 0.96165776, + "y": 0.27424046, + "z": -0.0025425532 + }, + "yAxis": { + "x": -0.2736506, + "y": 0.9601206, + "z": 0.057304475 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 59.16143, + "y": 119.59288, + "z": 10.131856 + }, + "xAxis": { + "x": -0.5366819, + "y": -0.8436079, + "z": 0.017270565 + }, + "yAxis": { + "x": 0.8434475, + "y": -0.5369336, + "z": -0.017279446 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 40.95219, + "y": 133.30223, + "z": 10.131856 + }, + "xAxis": { + "x": 0.4922506, + "y": 0.8702822, + "z": 0.017270565 + }, + "yAxis": { + "x": -0.87013507, + "y": 0.4925103, + "z": -0.017279448 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.976357, + "y": 119.32908, + "z": 15.42598 + }, + "xAxis": { + "x": -0.6075755, + "y": -0.7940161, + "z": 0.01975928 + }, + "yAxis": { + "x": 0.79409057, + "y": -0.6077731, + "z": -0.0056536384 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.23546, + "y": 133.78215, + "z": 15.44631 + }, + "xAxis": { + "x": 0.82451487, + "y": -0.56581205, + "z": 0.005653639 + }, + "yAxis": { + "x": 0.5656185, + "y": 0.8244303, + "z": 0.01975928 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 44.892857, + "y": 132.7247, + "z": 62.95916 + }, + "xAxis": { + "x": 0.9818423, + "y": 0.1896719, + "z": -0.003206821 + }, + "yAxis": { + "x": -0.1884944, + "y": 0.97737014, + "z": 0.09600742 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.728344, + "y": 119.13009, + "z": 20.720362 + }, + "xAxis": { + "x": -0.67394364, + "y": -0.7384776, + "z": 0.021233534 + }, + "yAxis": { + "x": 0.7387181, + "y": -0.6739865, + "z": 0.0061440826 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.486656, + "y": 133.89691, + "z": 20.732433 + }, + "xAxis": { + "x": 0.77264756, + "y": -0.6348055, + "z": -0.006144083 + }, + "yAxis": { + "x": 0.63477516, + "y": 0.7724051, + "z": 0.021233534 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.423218, + "y": 119.00109, + "z": 26.013927 + }, + "xAxis": { + "x": -0.73528254, + "y": -0.6774138, + "z": 0.021682136 + }, + "yAxis": { + "x": 0.67775047, + "y": -0.735071, + "z": 0.01802415 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.79005, + "y": 133.94397, + "z": 26.016853 + }, + "xAxis": { + "x": 0.7149268, + "y": -0.6989669, + "z": -0.01802415 + }, + "yAxis": { + "x": 0.6991956, + "y": 0.7146016, + "z": 0.021682136 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.067234, + "y": 118.94674, + "z": 31.305609 + }, + "xAxis": { + "x": -0.7911265, + "y": -0.6112885, + "z": 0.021101676 + }, + "yAxis": { + "x": 0.6116505, + "y": -0.790563, + "z": 0.029896377 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 42.011444, + "y": 134.0042, + "z": 31.305609 + }, + "xAxis": { + "x": 0.7583907, + "y": 0.6514585, + "z": 0.021101678 + }, + "yAxis": { + "x": -0.65179086, + "y": 0.7578092, + "z": 0.029896377 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.66704, + "y": 118.971115, + "z": 36.594357 + }, + "xAxis": { + "x": -0.8410515, + "y": -0.54060364, + "z": 0.019496566 + }, + "yAxis": { + "x": 0.5409201, + "y": -0.84004104, + "z": 0.041670628 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 42.41236, + "y": 134.00058, + "z": 36.594357 + }, + "xAxis": { + "x": 0.81191117, + "y": 0.5834553, + "z": 0.019496566 + }, + "yAxis": { + "x": -0.5837191, + "y": 0.81088567, + "z": 0.041670628 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.22962, + "y": 119.07772, + "z": 41.879135 + }, + "xAxis": { + "x": -0.8846786, + "y": -0.46589574, + "z": 0.016878989 + }, + "yAxis": { + "x": 0.46609613, + "y": -0.88312966, + "z": 0.053257514 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 43.951183, + "y": 133.63943, + "z": 41.85003 + }, + "xAxis": { + "x": 0.51122814, + "y": -0.85779333, + "z": -0.05325752 + }, + "yAxis": { + "x": 0.85935056, + "y": 0.5111083, + "z": 0.016878989 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 56.762234, + "y": 119.2694, + "z": 47.158943 + }, + "xAxis": { + "x": -0.9216766, + "y": -0.3877321, + "z": 0.013268817 + }, + "yAxis": { + "x": 0.38774672, + "y": -0.91950166, + "z": 0.06456908 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 43.33141, + "y": 133.74957, + "z": 47.158943 + }, + "xAxis": { + "x": 0.9003488, + "y": 0.43496665, + "z": 0.013268817 + }, + "yAxis": { + "x": -0.43486854, + "y": 0.898176, + "z": 0.06456908 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 56.272373, + "y": 119.54838, + "z": 52.43282 + }, + "xAxis": { + "x": -0.9517646, + "y": -0.30670607, + "z": 0.008693458 + }, + "yAxis": { + "x": 0.3064666, + "y": -0.9488809, + "z": 0.075519435 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 44.86692, + "y": 133.03545, + "z": 52.37936 + }, + "xAxis": { + "x": 0.35521987, + "y": -0.93172723, + "z": -0.07551945 + }, + "yAxis": { + "x": 0.93459463, + "y": 0.3556084, + "z": 0.008693458 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 44.358124, + "y": 133.15515, + "z": 57.69985 + }, + "xAxis": { + "x": 0.96182805, + "y": 0.27363604, + "z": 0.0031876455 + }, + "yAxis": { + "x": -0.2728868, + "y": 0.9581923, + "z": 0.086025484 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 60.709457, + "y": 123.46501, + "z": 11.032606 + }, + "xAxis": { + "x": 0.8434475, + "y": -0.5369336, + "z": -0.017279446 + }, + "yAxis": { + "x": 0.5366819, + "y": 0.8436079, + "z": -0.017270565 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.606873, + "y": 129.35509, + "z": 11.032606 + }, + "xAxis": { + "x": -0.87013507, + "y": 0.4925103, + "z": -0.017279448 + }, + "yAxis": { + "x": -0.4922506, + "y": -0.8702822, + "z": -0.017270565 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 60.99487, + "y": 121.93992, + "z": 16.318768 + }, + "xAxis": { + "x": -0.6075755, + "y": -0.7940161, + "z": 0.01975928 + }, + "yAxis": { + "x": 0.79409057, + "y": -0.6077731, + "z": -0.0056536384 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.449947, + "y": 129.75114, + "z": 16.307484 + }, + "xAxis": { + "x": -0.82451487, + "y": 0.56581205, + "z": -0.005653639 + }, + "yAxis": { + "x": -0.5656185, + "y": -0.8244303, + "z": -0.01975928 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 41.054333, + "y": 131.08968, + "z": 63.84997 + }, + "xAxis": { + "x": -0.1884944, + "y": 0.97737014, + "z": 0.09600742 + }, + "yAxis": { + "x": -0.9818423, + "y": -0.1896719, + "z": 0.003206821 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 60.95761, + "y": 121.56518, + "z": 21.608408 + }, + "xAxis": { + "x": -0.67394364, + "y": -0.7384776, + "z": 0.021233534 + }, + "yAxis": { + "x": 0.7387181, + "y": -0.6739865, + "z": 0.0061440826 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.37092, + "y": 130.11372, + "z": 21.586506 + }, + "xAxis": { + "x": -0.77264756, + "y": 0.6348055, + "z": 0.006144083 + }, + "yAxis": { + "x": -0.63477516, + "y": -0.7724051, + "z": -0.021233534 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 60.893345, + "y": 122.37288, + "z": 26.868721 + }, + "xAxis": { + "x": 0.67775047, + "y": -0.735071, + "z": 0.01802415 + }, + "yAxis": { + "x": 0.73528254, + "y": 0.6774138, + "z": -0.021682136 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.366646, + "y": 130.43622, + "z": 26.868721 + }, + "xAxis": { + "x": -0.7149268, + "y": 0.6989669, + "z": 0.01802415 + }, + "yAxis": { + "x": -0.6991956, + "y": -0.7146016, + "z": -0.021682136 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 60.668777, + "y": 120.979164, + "z": 32.193943 + }, + "xAxis": { + "x": -0.7911265, + "y": -0.6112885, + "z": 0.021101676 + }, + "yAxis": { + "x": 0.6116505, + "y": -0.790563, + "z": 0.029896377 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.43342, + "y": 130.71228, + "z": 32.153145 + }, + "xAxis": { + "x": -0.65179086, + "y": 0.7578092, + "z": 0.029896377 + }, + "yAxis": { + "x": -0.7583907, + "y": -0.6514585, + "z": -0.021101678 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 60.427284, + "y": 120.77968, + "z": 37.487717 + }, + "xAxis": { + "x": -0.8410515, + "y": -0.54060364, + "z": 0.019496566 + }, + "yAxis": { + "x": 0.5409201, + "y": -0.84004104, + "z": 0.041670628 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.56698, + "y": 130.93596, + "z": 37.43878 + }, + "xAxis": { + "x": -0.5837191, + "y": 0.81088567, + "z": 0.041670628 + }, + "yAxis": { + "x": -0.81191117, + "y": -0.5834553, + "z": -0.019496566 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 60.46348, + "y": 121.72884, + "z": 42.72462 + }, + "xAxis": { + "x": 0.46609613, + "y": -0.88312966, + "z": 0.053257514 + }, + "yAxis": { + "x": 0.8846786, + "y": 0.46589574, + "z": -0.016878989 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 39.762566, + "y": 131.10167, + "z": 42.72462 + }, + "xAxis": { + "x": -0.51122814, + "y": 0.85779333, + "z": 0.05325752 + }, + "yAxis": { + "x": -0.85935056, + "y": -0.5111083, + "z": -0.016878989 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 60.206123, + "y": 121.639435, + "z": 48.009655 + }, + "xAxis": { + "x": 0.38774672, + "y": -0.91950166, + "z": 0.06456908 + }, + "yAxis": { + "x": 0.9216766, + "y": 0.3877321, + "z": -0.013268817 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 40.014946, + "y": 131.20428, + "z": 48.009655 + }, + "xAxis": { + "x": -0.43486854, + "y": 0.898176, + "z": 0.06456908 + }, + "yAxis": { + "x": -0.9003488, + "y": -0.43496665, + "z": -0.013268817 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 59.384975, + "y": 120.61586, + "z": 53.360252 + }, + "xAxis": { + "x": -0.9517646, + "y": -0.30670607, + "z": 0.008693458 + }, + "yAxis": { + "x": 0.3064666, + "y": -0.9488809, + "z": 0.075519435 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 40.31846, + "y": 131.23915, + "z": 53.29288 + }, + "xAxis": { + "x": -0.35521987, + "y": 0.93172723, + "z": 0.07551945 + }, + "yAxis": { + "x": -0.93459463, + "y": -0.3556084, + "z": -0.008693458 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 40.667053, + "y": 131.20215, + "z": 58.573307 + }, + "xAxis": { + "x": -0.2728868, + "y": 0.9581923, + "z": 0.086025484 + }, + "yAxis": { + "x": -0.96182805, + "y": -0.27363604, + "z": -0.0031876455 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 59.692253, + "y": 128.05644, + "z": 11.166971 + }, + "xAxis": { + "x": 0.8434106, + "y": -0.53714603, + "z": -0.011518981 + }, + "yAxis": { + "x": 0.53725797, + "y": 0.8433393, + "z": 0.011518218 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 40.86061, + "y": 124.82253, + "z": 11.166971 + }, + "xAxis": { + "x": -0.8701092, + "y": 0.49272436, + "z": -0.011518982 + }, + "yAxis": { + "x": -0.4928398, + "y": -0.8700438, + "z": 0.011518218 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 60.3762, + "y": 126.60288, + "z": 16.38778 + }, + "xAxis": { + "x": -0.6079039, + "y": -0.7939592, + "z": -0.009034589 + }, + "yAxis": { + "x": 0.79399097, + "y": -0.6079295, + "z": 0.00010787936 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 40.309048, + "y": 125.126396, + "z": 16.39492 + }, + "xAxis": { + "x": -0.8244235, + "y": 0.5659734, + "z": 0.00010787926 + }, + "yAxis": { + "x": -0.5659495, + "y": -0.8243904, + "z": 0.009034589 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 38.419304, + "y": 127.19609, + "z": 63.675102 + }, + "xAxis": { + "x": -0.1880753, + "y": 0.9768714, + "z": 0.10173499 + }, + "yAxis": { + "x": -0.9808457, + "y": -0.19216031, + "z": 0.031877585 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 60.743004, + "y": 126.26455, + "z": 21.63328 + }, + "xAxis": { + "x": -0.6740436, + "y": -0.7386528, + "z": -0.007561558 + }, + "yAxis": { + "x": 0.7385609, + "y": -0.6740816, + "z": 0.011905654 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 39.828533, + "y": 125.431564, + "z": 21.629805 + }, + "xAxis": { + "x": -0.77249545, + "y": 0.6349087, + "z": 0.011905654 + }, + "yAxis": { + "x": -0.63486594, + "y": -0.77258533, + "z": 0.0075615575 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 61.084846, + "y": 127.07365, + "z": 26.870998 + }, + "xAxis": { + "x": 0.6775412, + "y": -0.73510015, + "z": 0.023784777 + }, + "yAxis": { + "x": 0.7351749, + "y": 0.6778402, + "z": 0.0071103075 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 39.41897, + "y": 125.73184, + "z": 26.870998 + }, + "xAxis": { + "x": -0.7147193, + "y": 0.69900686, + "z": 0.023784777 + }, + "yAxis": { + "x": -0.69906604, + "y": -0.7150217, + "z": 0.0071103065 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 61.265102, + "y": 125.64523, + "z": 32.14021 + }, + "xAxis": { + "x": -0.7908337, + "y": -0.6119828, + "z": -0.007684263 + }, + "yAxis": { + "x": 0.611395, + "y": -0.79052186, + "z": 0.035655063 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 39.07972, + "y": 126.021065, + "z": 32.117836 + }, + "xAxis": { + "x": -0.6515336, + "y": 0.75778145, + "z": 0.035655063 + }, + "yAxis": { + "x": -0.7580624, + "y": -0.65213674, + "z": 0.007684262 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 61.6643, + "y": 126.481514, + "z": 37.3696 + }, + "xAxis": { + "x": 0.5406247, + "y": -0.839926, + "z": 0.0474264 + }, + "yAxis": { + "x": 0.8405975, + "y": 0.5415808, + "z": 0.009279067 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 38.809616, + "y": 126.29316, + "z": 37.3696 + }, + "xAxis": { + "x": -0.5834181, + "y": 0.8107861, + "z": 0.047426403 + }, + "yAxis": { + "x": -0.81140715, + "y": -0.5844077, + "z": 0.009279067 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 61.853783, + "y": 126.222305, + "z": 42.62554 + }, + "xAxis": { + "x": 0.46576726, + "y": -0.88293755, + "z": 0.059009418 + }, + "yAxis": { + "x": 0.88408846, + "y": 0.46716854, + "z": 0.011882613 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 38.606956, + "y": 126.542206, + "z": 42.62554 + }, + "xAxis": { + "x": -0.51088977, + "y": 0.8576185, + "z": 0.059009425 + }, + "yAxis": { + "x": -0.8586952, + "y": -0.51234883, + "z": 0.0118826125 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 61.97961, + "y": 125.99525, + "z": 47.88488 + }, + "xAxis": { + "x": 0.38739124, + "y": -0.9192299, + "z": 0.07031619 + }, + "yAxis": { + "x": 0.92097634, + "y": 0.38931102, + "z": 0.015475135 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 38.469532, + "y": 126.76243, + "z": 47.88488 + }, + "xAxis": { + "x": -0.43449947, + "y": 0.89792305, + "z": 0.07031619 + }, + "yAxis": { + "x": -0.89956766, + "y": -0.43650717, + "z": 0.015475135 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 61.52886, + "y": 124.80005, + "z": 53.195793 + }, + "xAxis": { + "x": -0.95098126, + "y": -0.30859926, + "z": -0.02002936 + }, + "yAxis": { + "x": 0.30609155, + "y": -0.94852763, + "z": 0.08126086 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 38.394646, + "y": 126.94829, + "z": 53.146805 + }, + "xAxis": { + "x": -0.354827, + "y": 0.93139386, + "z": 0.08126087 + }, + "yAxis": { + "x": -0.9337142, + "y": -0.35745847, + "z": 0.02002936 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 38.379112, + "y": 127.094505, + "z": 58.410492 + }, + "xAxis": { + "x": -0.2724772, + "y": 0.9577767, + "z": 0.091760375 + }, + "yAxis": { + "x": -0.96087563, + "y": -0.27580288, + "z": 0.025510713 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 55.149784, + "y": 124.10224, + "z": 9.15 + }, + "xAxis": { + "x": 0.5371817, + "y": 0.8434666, + "z": 0.0 + }, + "yAxis": { + "x": -0.8431169, + "y": 0.53695893, + "z": 0.028793845 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 45.192097, + "y": 129.00677, + "z": 9.15 + }, + "xAxis": { + "x": -0.49275705, + "y": -0.87016696, + "z": 0.0 + }, + "yAxis": { + "x": 0.8698061, + "y": -0.49255273, + "z": 0.028793845 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 55.376385, + "y": 124.158394, + "z": 14.372591 + }, + "xAxis": { + "x": 0.60792786, + "y": 0.7939884, + "z": -0.0024845223 + }, + "yAxis": { + "x": -0.79384786, + "y": 0.607874, + "z": 0.017169813 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.96871, + "y": 128.93895, + "z": 14.372591 + }, + "xAxis": { + "x": -0.56597185, + "y": -0.8244208, + "z": -0.0024845225 + }, + "yAxis": { + "x": 0.8242777, + "y": -0.5659253, + "z": 0.017169813 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 44.323532, + "y": 126.85007, + "z": 61.36033 + }, + "xAxis": { + "x": -0.9813645, + "y": -0.19106719, + "z": 0.020422136 + }, + "yAxis": { + "x": 0.18872777, + "y": -0.9783842, + "z": -0.08453534 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 55.566654, + "y": 124.24202, + "z": 19.596264 + }, + "xAxis": { + "x": 0.67415893, + "y": 0.73857576, + "z": -0.0039567803 + }, + "yAxis": { + "x": -0.7385565, + "y": 0.67417014, + "z": 0.0053724926 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.78303, + "y": 128.84558, + "z": 19.596264 + }, + "xAxis": { + "x": -0.6349851, + "y": -0.7725143, + "z": -0.003956781 + }, + "yAxis": { + "x": 0.7724957, + "y": -0.6349973, + "z": 0.0053724926 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 55.723087, + "y": 124.356155, + "z": 24.820482 + }, + "xAxis": { + "x": 0.73537207, + "y": 0.67764926, + "z": -0.0044055968 + }, + "yAxis": { + "x": -0.6776626, + "y": 0.7353442, + "z": -0.0065085525 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.63272, + "y": 128.7235, + "z": 24.820482 + }, + "xAxis": { + "x": -0.6992728, + "y": -0.7148413, + "z": -0.004405597 + }, + "yAxis": { + "x": 0.71485317, + "y": -0.6992443, + "z": -0.006508553 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 55.848442, + "y": 124.50361, + "z": 30.044704 + }, + "xAxis": { + "x": 0.7911026, + "y": 0.6116715, + "z": -0.0038275647 + }, + "yAxis": { + "x": -0.6116283, + "y": 0.79093164, + "z": -0.018383125 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.515175, + "y": 128.56975, + "z": 30.044704 + }, + "xAxis": { + "x": -0.75834703, + "y": -0.6518398, + "z": -0.0038275653 + }, + "yAxis": { + "x": 0.6517878, + "y": -0.75817853, + "z": -0.018383125 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 55.94571, + "y": 124.686935, + "z": 35.26839 + }, + "xAxis": { + "x": 0.84092736, + "y": 0.5411434, + "z": -0.0022270724 + }, + "yAxis": { + "x": -0.54095507, + "y": 0.84051055, + "z": -0.030161077 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.42754, + "y": 128.38162, + "z": 35.26839 + }, + "xAxis": { + "x": -0.81175923, + "y": -0.583988, + "z": -0.0022270728 + }, + "yAxis": { + "x": 0.5837783, + "y": -0.81135267, + "z": -0.030161077 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 56.018093, + "y": 124.90842, + "z": 40.491 + }, + "xAxis": { + "x": 0.8844682, + "y": 0.46660036, + "z": 0.00038372987 + }, + "yAxis": { + "x": -0.46617934, + "y": 0.8837044, + "z": -0.04175299 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.36673, + "y": 128.1567, + "z": 40.491 + }, + "xAxis": { + "x": -0.8591039, + "y": -0.51180106, + "z": 0.00038372952 + }, + "yAxis": { + "x": 0.51134104, + "y": -0.858363, + "z": -0.041752994 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 56.068985, + "y": 125.17004, + "z": 45.71201 + }, + "xAxis": { + "x": 0.92139447, + "y": 0.38860828, + "z": 0.0039850213 + }, + "yAxis": { + "x": -0.38786882, + "y": 0.92018545, + "z": -0.053070866 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.32946, + "y": 127.892784, + "z": 45.71201 + }, + "xAxis": { + "x": -0.9000216, + "y": -0.43582702, + "z": 0.0039850213 + }, + "yAxis": { + "x": 0.43502593, + "y": -0.8988526, + "z": -0.05307087 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 56.101944, + "y": 125.47349, + "z": 50.930897 + }, + "xAxis": { + "x": 0.95142585, + "y": 0.30775926, + "z": 0.008549462 + }, + "yAxis": { + "x": -0.30661806, + "y": 0.94967663, + "z": -0.06402878 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.31227, + "y": 127.58803, + "z": 50.930897 + }, + "xAxis": { + "x": -0.9342018, + "y": -0.35664263, + "z": 0.008549462 + }, + "yAxis": { + "x": 0.35541233, + "y": -0.932514, + "z": -0.064028785 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 44.311543, + "y": 127.24087, + "z": 56.147163 + }, + "xAxis": { + "x": -0.96138483, + "y": -0.27484903, + "z": 0.014042401 + }, + "yAxis": { + "x": 0.27310467, + "y": -0.9590918, + "z": -0.07454355 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 101.2, + "y": 119.075, + "z": 0.0 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 91.99491, + "y": 126.74579, + "z": 26.682161 + }, + "xAxis": { + "x": 0.12590496, + "y": -0.9919688, + "z": -0.012075071 + }, + "yAxis": { + "x": 0.99193007, + "y": 0.12606451, + "z": -0.0135107115 + } + }, + "center": { + "x": -0.12357646, + "y": 10.494074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 96.52992, + "y": 126.21855, + "z": 49.31322 + }, + "xAxis": { + "x": -0.38740072, + "y": -0.91957605, + "z": 0.06557865 + }, + "yAxis": { + "x": 0.92076, + "y": -0.3894908, + "z": -0.022314297 + } + }, + "center": { + "x": -0.12357646, + "y": 22.374077 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 101.05683, + "y": 125.0312, + "z": 71.92088 + }, + "xAxis": { + "x": -0.7923719, + "y": -0.594497, + "z": 0.13682096 + }, + "yAxis": { + "x": 0.6011221, + "y": -0.7991053, + "z": 0.009110642 + } + }, + "center": { + "x": -0.12357646, + "y": 34.254074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.026794, + "y": 125.22138, + "z": 96.103264 + }, + "xAxis": { + "x": -0.9771284, + "y": -0.14635797, + "z": -0.15427057 + }, + "yAxis": { + "x": 0.1611262, + "y": -0.98300594, + "z": -0.08796381 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 94.54741, + "y": 120.86131, + "z": 80.787476 + }, + "xAxis": { + "x": -0.86661094, + "y": -0.48056614, + "z": 0.13431926 + }, + "yAxis": { + "x": 0.48804355, + "y": -0.87238306, + "z": 0.027591923 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 98.18389, + "y": 122.92312, + "z": 11.227978 + }, + "xAxis": { + "x": 0.4587785, + "y": -0.8882858, + "z": -0.021692503 + }, + "yAxis": { + "x": 0.8882468, + "y": 0.45784643, + "z": 0.037340768 + } + }, + "center": { + "x": -0.93696856, + "y": 0.7832468 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 82.433914, + "y": 124.785225, + "z": 11.227978 + }, + "xAxis": { + "x": -0.54955333, + "y": 0.83517694, + "z": -0.021692501 + }, + "yAxis": { + "x": -0.835236, + "y": -0.5486223, + "z": 0.037340768 + } + }, + "center": { + "x": 1.124723, + "y": 3.1688933 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 98.78062, + "y": 121.416695, + "z": 18.855726 + }, + "xAxis": { + "x": 0.2970282, + "y": -0.95486856, + "z": -0.0005512466 + }, + "yAxis": { + "x": 0.9546484, + "y": 0.2969472, + "z": 0.02165308 + } + }, + "center": { + "x": -0.93696856, + "y": 4.743247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.682236, + "y": 126.22063, + "z": 18.855726 + }, + "xAxis": { + "x": -0.3956924, + "y": 0.91838294, + "z": -0.0005512457 + }, + "yAxis": { + "x": -0.9181725, + "y": -0.39558873, + "z": 0.02165308 + } + }, + "center": { + "x": 1.124723, + "y": 7.1288934 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.29862, + "y": 131.82632, + "z": 88.61575 + }, + "xAxis": { + "x": 0.9048665, + "y": 0.3729544, + "z": 0.20523554 + }, + "yAxis": { + "x": -0.3938915, + "y": 0.91638064, + "z": 0.07138653 + } + }, + "center": { + "x": 1.124723, + "y": 42.76889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 99.17258, + "y": 120.0194, + "z": 26.51744 + }, + "xAxis": { + "x": 0.12635095, + "y": -0.9917189, + "z": 0.023000693 + }, + "yAxis": { + "x": 0.9919043, + "y": 0.12660348, + "z": 0.009869877 + } + }, + "center": { + "x": -0.93696856, + "y": 8.703246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.14566, + "y": 127.569016, + "z": 26.51744 + }, + "xAxis": { + "x": -0.22983058, + "y": 0.9729588, + "z": 0.023000695 + }, + "yAxis": { + "x": -0.97311664, + "y": -0.23010118, + "z": 0.00986988 + } + }, + "center": { + "x": 1.124723, + "y": 11.088894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 99.38218, + "y": 118.766045, + "z": 34.211143 + }, + "xAxis": { + "x": -0.047922853, + "y": -0.9976861, + "z": 0.048227765 + }, + "yAxis": { + "x": 0.99885106, + "y": -0.04786477, + "z": 0.0023591632 + } + }, + "center": { + "x": -0.93696856, + "y": 12.663246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.80555, + "y": 128.79343, + "z": 34.211143 + }, + "xAxis": { + "x": -0.05714786, + "y": 0.9972002, + "z": 0.04822777 + }, + "yAxis": { + "x": -0.9983526, + "y": -0.057328, + "z": 0.0023591653 + } + }, + "center": { + "x": 1.124723, + "y": 15.048893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 99.43754, + "y": 117.68691, + "z": 41.93386 + }, + "xAxis": { + "x": -0.22035046, + "y": -0.97258365, + "z": 0.07434211 + }, + "yAxis": { + "x": 0.97527164, + "y": -0.22100872, + "z": -0.0006444971 + } + }, + "center": { + "x": -0.93696856, + "y": 16.623247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.637146, + "y": 129.86076, + "z": 41.93386 + }, + "xAxis": { + "x": 0.116962686, + "y": 0.99034995, + "z": 0.07434211 + }, + "yAxis": { + "x": -0.9930922, + "y": 0.11733493, + "z": -0.0006444952 + } + }, + "center": { + "x": 1.124723, + "y": 19.008894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 99.37157, + "y": 116.80688, + "z": 49.681705 + }, + "xAxis": { + "x": -0.38554677, + "y": -0.9171956, + "z": 0.100528136 + }, + "yAxis": { + "x": 0.9219025, + "y": -0.38742092, + "z": 0.000952705 + } + }, + "center": { + "x": -0.93696856, + "y": 20.583248 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.610306, + "y": 130.74286, + "z": 49.681705 + }, + "xAxis": { + "x": 0.28706345, + "y": 0.952622, + "z": 0.100528136 + }, + "yAxis": { + "x": -0.9574997, + "y": 0.28843275, + "z": 0.0009527056 + } + }, + "center": { + "x": 1.124723, + "y": 22.968895 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 99.220985, + "y": 116.1446, + "z": 57.450016 + }, + "xAxis": { + "x": -0.5383526, + "y": -0.8332518, + "z": 0.12596804 + }, + "yAxis": { + "x": 0.8404103, + "y": -0.54190415, + "z": 0.0071008853 + } + }, + "center": { + "x": -0.93696856, + "y": 24.543247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.69048, + "y": 131.41728, + "z": 57.450016 + }, + "xAxis": { + "x": 0.44784194, + "y": 0.8851947, + "z": 0.12596804 + }, + "yAxis": { + "x": -0.89268667, + "y": 0.45062184, + "z": 0.0071008857 + } + }, + "center": { + "x": 1.124723, + "y": 26.928894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 99.02515, + "y": 115.711914, + "z": 65.23348 + }, + "xAxis": { + "x": -0.6739956, + "y": -0.72337383, + "z": 0.14986731 + }, + "yAxis": { + "x": 0.73334026, + "y": -0.67963374, + "z": 0.01760803 + } + }, + "center": { + "x": -0.93696856, + "y": 28.503246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.839775, + "y": 131.86815, + "z": 65.23348 + }, + "xAxis": { + "x": 0.594277, + "y": 0.7901738, + "z": 0.14986731 + }, + "yAxis": { + "x": -0.80067736, + "y": 0.59883696, + "z": 0.017608032 + } + }, + "center": { + "x": 1.124723, + "y": 30.888893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 98.82483, + "y": 115.513504, + "z": 73.02633 + }, + "xAxis": { + "x": -0.7882396, + "y": -0.59099334, + "z": 0.17147955 + }, + "yAxis": { + "x": 0.6040362, + "y": -0.7963083, + "z": 0.032145992 + } + }, + "center": { + "x": -0.93696856, + "y": 32.463245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.01814, + "y": 132.0865, + "z": 73.02633 + }, + "xAxis": { + "x": 0.72179526, + "y": 0.6705269, + "z": 0.17147955 + }, + "yAxis": { + "x": -0.68434525, + "y": 0.72844917, + "z": 0.032145992 + } + }, + "center": { + "x": 1.124723, + "y": 34.848892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 81.18462, + "y": 132.07068, + "z": 80.82247 + }, + "xAxis": { + "x": 0.8264142, + "y": 0.5299908, + "z": 0.19012979 + }, + "yAxis": { + "x": -0.5473235, + "y": 0.83541054, + "z": 0.05026074 + } + }, + "center": { + "x": 1.124723, + "y": 38.80889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.86146, + "y": 125.64213, + "z": 11.500563 + }, + "xAxis": { + "x": -0.0057597873, + "y": -0.9967727, + "z": -0.0800684 + }, + "yAxis": { + "x": 0.99975044, + "y": -0.00746834, + "z": 0.021055596 + } + }, + "center": { + "x": -0.4242164, + "y": 1.8345448 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 87.01806, + "y": 122.535324, + "z": 11.500563 + }, + "xAxis": { + "x": -0.098981686, + "y": 0.9918627, + "z": -0.0800684 + }, + "yAxis": { + "x": -0.9950034, + "y": -0.097595386, + "z": 0.021055596 + } + }, + "center": { + "x": 0.45382434, + "y": 2.2107508 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 94.99971, + "y": 124.85283, + "z": 19.075933 + }, + "xAxis": { + "x": -0.17979074, + "y": -0.9822154, + "z": -0.054112572 + }, + "yAxis": { + "x": 0.98334837, + "y": -0.18093425, + "z": 0.016991828 + } + }, + "center": { + "x": -0.4242164, + "y": 5.7945447 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 85.803185, + "y": 123.20068, + "z": 19.075933 + }, + "xAxis": { + "x": 0.0756156, + "y": 0.9956677, + "z": -0.05411257 + }, + "yAxis": { + "x": -0.9969145, + "y": 0.07663376, + "z": 0.016991828 + } + }, + "center": { + "x": 0.45382434, + "y": 6.170751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 78.28713, + "y": 127.77571, + "z": 87.79463 + }, + "xAxis": { + "x": 0.99035496, + "y": -0.0894147, + "z": 0.10583974 + }, + "yAxis": { + "x": 0.07218154, + "y": 0.98500043, + "z": 0.15672913 + } + }, + "center": { + "x": 0.45382434, + "y": 41.81075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 96.049225, + "y": 124.065865, + "z": 26.664352 + }, + "xAxis": { + "x": -0.34840196, + "y": -0.93693274, + "z": -0.027804134 + }, + "yAxis": { + "x": 0.9369816, + "y": -0.3489397, + "z": 0.01750714 + } + }, + "center": { + "x": -0.4242164, + "y": 9.754545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 97.01189, + "y": 123.29698, + "z": 34.266125 + }, + "xAxis": { + "x": -0.50632757, + "y": -0.862339, + "z": -0.001964731 + }, + "yAxis": { + "x": 0.8620982, + "y": -0.5062376, + "z": 0.022585439 + } + }, + "center": { + "x": -0.4242164, + "y": 13.714545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 83.6387, + "y": 124.53655, + "z": 34.266125 + }, + "xAxis": { + "x": 0.41293857, + "y": 0.91075677, + "z": -0.001964731 + }, + "yAxis": { + "x": -0.91050786, + "y": 0.41287443, + "z": 0.022585442 + } + }, + "center": { + "x": 0.45382434, + "y": 14.090751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 97.892265, + "y": 122.56135, + "z": 41.881153 + }, + "xAxis": { + "x": -0.6486353, + "y": -0.76076376, + "z": 0.022598648 + }, + "yAxis": { + "x": 0.7610368, + "y": -0.64791554, + "z": 0.032068126 + } + }, + "center": { + "x": -0.4242164, + "y": 17.674545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 82.68592, + "y": 125.17563, + "z": 41.881153 + }, + "xAxis": { + "x": 0.5651293, + "y": 0.8246928, + "z": 0.022598648 + }, + "yAxis": { + "x": -0.8248887, + "y": 0.5643848, + "z": 0.03206813 + } + }, + "center": { + "x": 0.45382434, + "y": 18.050749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 98.69753, + "y": 121.87309, + "z": 49.50891 + }, + "xAxis": { + "x": -0.77088094, + "y": -0.6353793, + "z": 0.04511886 + }, + "yAxis": { + "x": 0.6369537, + "y": -0.7695487, + "z": 0.045659047 + } + }, + "center": { + "x": -0.4242164, + "y": 21.634546 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.43718, + "y": 121.2449, + "z": 57.14849 + }, + "xAxis": { + "x": -0.8692464, + "y": -0.4901016, + "z": 0.06489259 + }, + "yAxis": { + "x": 0.49372405, + "y": -0.8673384, + "z": 0.06293374 + } + }, + "center": { + "x": -0.4242164, + "y": 25.594545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 81.01125, + "y": 126.322495, + "z": 57.14849 + }, + "xAxis": { + "x": 0.81295246, + "y": 0.5787031, + "z": 0.06489259 + }, + "yAxis": { + "x": -0.58210504, + "y": 0.8106744, + "z": 0.06293374 + } + }, + "center": { + "x": 0.45382434, + "y": 25.970749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 100.12278, + "y": 120.68753, + "z": 64.7986 + }, + "xAxis": { + "x": -0.9406598, + "y": -0.32946777, + "z": 0.08130227 + }, + "yAxis": { + "x": 0.33582115, + "y": -0.9382305, + "z": 0.08335271 + } + }, + "center": { + "x": -0.4242164, + "y": 29.554544 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 80.2709, + "y": 126.804756, + "z": 64.7986 + }, + "xAxis": { + "x": 0.9008451, + "y": 0.42645988, + "z": 0.08130228 + }, + "yAxis": { + "x": -0.43252292, + "y": 0.8977618, + "z": 0.08335271 + } + }, + "center": { + "x": 0.45382434, + "y": 29.930748 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 100.76757, + "y": 120.20957, + "z": 72.45763 + }, + "xAxis": { + "x": -0.98289084, + "y": -0.1584945, + "z": 0.09383543 + }, + "yAxis": { + "x": 0.16817638, + "y": -0.98001105, + "z": 0.10627823 + } + }, + "center": { + "x": -0.4242164, + "y": 33.51454 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 78.92319, + "y": 127.53766, + "z": 80.12367 + }, + "xAxis": { + "x": 0.99095345, + "y": 0.08710174, + "z": 0.102100626 + }, + "yAxis": { + "x": -0.10019008, + "y": 0.98630744, + "z": 0.13099435 + } + }, + "center": { + "x": 0.45382434, + "y": 37.85075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 88.59746, + "y": 124.38115, + "z": 11.453598 + }, + "xAxis": { + "x": -0.45886725, + "y": 0.88489187, + "z": 0.08004549 + }, + "yAxis": { + "x": -0.88847876, + "y": -0.45629728, + "z": -0.048972722 + } + }, + "center": { + "x": -0.7832468, + "y": 2.8772452 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 92.12047, + "y": 124.3423, + "z": 11.453598 + }, + "xAxis": { + "x": 0.54928505, + "y": -0.8317924, + "z": 0.08004549 + }, + "yAxis": { + "x": 0.83562946, + "y": 0.5471061, + "z": -0.048972722 + } + }, + "center": { + "x": 0.6453203, + "y": 1.124723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.5964, + "y": 124.52707, + "z": 19.084135 + }, + "xAxis": { + "x": -0.2971978, + "y": 0.95299304, + "z": 0.05897258 + }, + "yAxis": { + "x": -0.9547086, + "y": -0.2956709, + "z": -0.03332027 + } + }, + "center": { + "x": -0.7832468, + "y": 6.837245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.14238, + "y": 124.092255, + "z": 19.084135 + }, + "xAxis": { + "x": 0.395664, + "y": -0.9165, + "z": 0.05897258 + }, + "yAxis": { + "x": 0.91836643, + "y": 0.3943258, + "z": -0.03332027 + } + }, + "center": { + "x": 0.6453203, + "y": 5.0847235 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 79.16659, + "y": 122.46009, + "z": 87.272354 + }, + "xAxis": { + "x": -0.91296846, + "y": -0.38031372, + "z": -0.1478178 + }, + "yAxis": { + "x": 0.39463568, + "y": -0.91507876, + "z": -0.083027296 + } + }, + "center": { + "x": 0.6453203, + "y": 40.72472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.08954, + "y": 123.820854, + "z": 26.703989 + }, + "xAxis": { + "x": 0.2297767, + "y": -0.97259754, + "z": 0.03544984 + }, + "yAxis": { + "x": 0.9731585, + "y": 0.22912318, + "z": -0.021565938 + } + }, + "center": { + "x": 0.6453203, + "y": 9.044723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.825096, + "y": 124.845245, + "z": 34.312485 + }, + "xAxis": { + "x": 0.048383906, + "y": 0.9987766, + "z": 0.010211917 + }, + "yAxis": { + "x": -0.99872273, + "y": 0.048525225, + "z": -0.014076815 + } + }, + "center": { + "x": -0.7832468, + "y": 14.757245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 88.959435, + "y": 123.54172, + "z": 34.312485 + }, + "xAxis": { + "x": 0.056803916, + "y": -0.99833316, + "z": 0.010211916 + }, + "yAxis": { + "x": 0.9982944, + "y": 0.056657724, + "z": -0.014076817 + } + }, + "center": { + "x": 0.6453203, + "y": 13.004723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.05456, + "y": 124.98989, + "z": 41.909313 + }, + "xAxis": { + "x": 0.22150326, + "y": 0.9750291, + "z": -0.015952991 + }, + "yAxis": { + "x": -0.97513247, + "y": 0.22134534, + "z": -0.0110868 + } + }, + "center": { + "x": -0.7832468, + "y": 18.717243 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.75197, + "y": 123.268715, + "z": 41.909313 + }, + "xAxis": { + "x": -0.117852226, + "y": -0.992903, + "z": -0.01595299 + }, + "yAxis": { + "x": 0.9929892, + "y": -0.11768432, + "z": -0.011086802 + } + }, + "center": { + "x": 0.6453203, + "y": 16.964722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 86.46947, + "y": 123.015526, + "z": 49.49452 + }, + "xAxis": { + "x": -0.28873706, + "y": -0.95647675, + "z": -0.042227723 + }, + "yAxis": { + "x": 0.9574084, + "y": -0.28845808, + "z": -0.012689275 + } + }, + "center": { + "x": 0.6453203, + "y": 20.924723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 95.725105, + "y": 125.183945, + "z": 57.06852 + }, + "xAxis": { + "x": 0.5415345, + "y": 0.83794075, + "z": -0.06779169 + }, + "yAxis": { + "x": -0.84041786, + "y": 0.5416116, + "z": -0.018834187 + } + }, + "center": { + "x": -0.7832468, + "y": 26.637245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.116585, + "y": 122.79519, + "z": 57.06852 + }, + "xAxis": { + "x": -0.45051363, + "y": -0.890192, + "z": -0.06779169 + }, + "yAxis": { + "x": 0.8926635, + "y": -0.4503301, + "z": -0.018834187 + } + }, + "center": { + "x": 0.6453203, + "y": 24.884722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 97.15209, + "y": 125.20962, + "z": 64.63207 + }, + "xAxis": { + "x": 0.67845136, + "y": 0.7288813, + "z": -0.09184652 + }, + "yAxis": { + "x": -0.73350084, + "y": 0.67905545, + "z": -0.029329628 + } + }, + "center": { + "x": -0.7832468, + "y": 30.597244 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 83.700195, + "y": 122.61976, + "z": 64.63207 + }, + "xAxis": { + "x": -0.5981296, + "y": -0.79611886, + "z": -0.09184652 + }, + "yAxis": { + "x": 0.80077624, + "y": -0.598245, + "z": -0.02932963 + } + }, + "center": { + "x": 0.6453203, + "y": 28.84472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 82.22913, + "y": 122.49983, + "z": 72.186264 + }, + "xAxis": { + "x": -0.72697467, + "y": -0.67719537, + "z": -0.11364095 + }, + "yAxis": { + "x": 0.6846166, + "y": -0.7275833, + "z": -0.043847814 + } + }, + "center": { + "x": 0.6453203, + "y": 32.80472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 80.71395, + "y": 122.44432, + "z": 79.73248 + }, + "xAxis": { + "x": -0.833025, + "y": -0.53713554, + "z": -0.13249432 + }, + "yAxis": { + "x": 0.5478122, + "y": -0.8343056, + "z": -0.061935335 + } + }, + "center": { + "x": 0.6453203, + "y": 36.76472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 85.98369, + "y": 119.9893, + "z": 11.288734 + }, + "xAxis": { + "x": 0.0067373263, + "y": 0.995762, + "z": 0.09172082 + }, + "yAxis": { + "x": -0.99930054, + "y": 0.003330339, + "z": 0.037247688 + } + }, + "center": { + "x": -1.8345448, + "y": 3.3899975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 94.258415, + "y": 128.98442, + "z": 11.288734 + }, + "xAxis": { + "x": 0.09790338, + "y": -0.99096024, + "z": 0.09172082 + }, + "yAxis": { + "x": 0.9941213, + "y": 0.10166323, + "z": 0.037247688 + } + }, + "center": { + "x": 1.603463, + "y": 0.45382434 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.25705, + "y": 120.65479, + "z": 19.044575 + }, + "xAxis": { + "x": 0.18067898, + "y": 0.98133975, + "z": 0.06578305 + }, + "yAxis": { + "x": -0.98311746, + "y": 0.17823128, + "z": 0.04139686 + } + }, + "center": { + "x": -1.8345448, + "y": 7.3499975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 94.05647, + "y": 128.2939, + "z": 19.044575 + }, + "xAxis": { + "x": -0.07659091, + "y": -0.99489015, + "z": 0.06578305 + }, + "yAxis": { + "x": 0.9964009, + "y": -0.07397001, + "z": 0.04139686 + } + }, + "center": { + "x": 1.603463, + "y": 4.4138246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 83.314766, + "y": 119.48522, + "z": 87.57249 + }, + "xAxis": { + "x": -0.99157834, + "y": 0.08889774, + "z": -0.09417817 + }, + "yAxis": { + "x": -0.07950876, + "y": -0.991891, + "z": -0.09914936 + } + }, + "center": { + "x": 1.603463, + "y": 40.05382 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.70958, + "y": 121.45505, + "z": 26.77927 + }, + "xAxis": { + "x": 0.34922594, + "y": 0.9362061, + "z": 0.039489552 + }, + "yAxis": { + "x": -0.93671584, + "y": 0.34768963, + "z": 0.04093056 + } + }, + "center": { + "x": -1.8345448, + "y": 11.309998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 93.69051, + "y": 127.45054, + "z": 26.77927 + }, + "xAxis": { + "x": -0.24894653, + "y": -0.96771187, + "z": 0.039489552 + }, + "yAxis": { + "x": 0.9680574, + "y": -0.24736518, + "z": 0.04093056 + } + }, + "center": { + "x": 1.603463, + "y": 8.373823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.3618, + "y": 122.356224, + "z": 34.48856 + }, + "xAxis": { + "x": 0.5071143, + "y": 0.8617706, + "z": 0.01366148 + }, + "yAxis": { + "x": -0.86154497, + "y": 0.506413, + "z": 0.035863355 + } + }, + "center": { + "x": -1.8345448, + "y": 15.269998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 93.136566, + "y": 126.48583, + "z": 34.48856 + }, + "xAxis": { + "x": -0.41378066, + "y": -0.9102741, + "z": 0.01366148 + }, + "yAxis": { + "x": 0.90997607, + "y": -0.41310695, + "z": 0.03586335 + } + }, + "center": { + "x": 1.603463, + "y": 12.333823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.22799, + "y": 123.321335, + "z": 42.168987 + }, + "xAxis": { + "x": 0.64941305, + "y": 0.76035786, + "z": -0.010894529 + }, + "yAxis": { + "x": -0.75995237, + "y": 0.64944434, + "z": 0.02635349 + } + }, + "center": { + "x": -1.8345448, + "y": 19.229996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.37656, + "y": 125.43506, + "z": 42.168987 + }, + "xAxis": { + "x": -0.5659453, + "y": -0.8243708, + "z": -0.010894528 + }, + "yAxis": { + "x": 0.82397085, + "y": -0.56601906, + "z": 0.026353488 + } + }, + "center": { + "x": 1.603463, + "y": 16.293823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.31576, + "y": 124.31142, + "z": 49.817986 + }, + "xAxis": { + "x": 0.77167803, + "y": 0.6351352, + "z": -0.03341156 + }, + "yAxis": { + "x": -0.6351109, + "y": 0.7723166, + "z": 0.012697972 + } + }, + "center": { + "x": -1.8345448, + "y": 23.189997 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.39882, + "y": 124.33619, + "z": 49.817986 + }, + "xAxis": { + "x": -0.70068836, + "y": -0.71268475, + "z": -0.03341156 + }, + "yAxis": { + "x": 0.7127277, + "y": -0.7013259, + "z": 0.0126979705 + } + }, + "center": { + "x": 1.603463, + "y": 20.253824 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 90.62578, + "y": 125.286705, + "z": 57.43398 + }, + "xAxis": { + "x": 0.8700909, + "y": 0.49001333, + "z": -0.053186387 + }, + "yAxis": { + "x": -0.49091953, + "y": 0.87119234, + "z": -0.004676723 + } + }, + "center": { + "x": -1.8345448, + "y": 27.149996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 90.1985, + "y": 123.22868, + "z": 57.43398 + }, + "xAxis": { + "x": -0.81380147, + "y": -0.578704, + "z": -0.05318639 + }, + "yAxis": { + "x": 0.5797209, + "y": -0.8148017, + "z": -0.0046767252 + } + }, + "center": { + "x": 1.603463, + "y": 24.213823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.151794, + "y": 126.2079, + "z": 65.01642 + }, + "xAxis": { + "x": 0.941578, + "y": 0.32952473, + "z": -0.069601424 + }, + "yAxis": { + "x": -0.33188152, + "y": 0.9429837, + "z": -0.025227968 + } + }, + "center": { + "x": -1.8345448, + "y": 31.109995 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.777695, + "y": 122.152275, + "z": 65.01642 + }, + "xAxis": { + "x": -0.9017522, + "y": -0.42661297, + "z": -0.06960143 + }, + "yAxis": { + "x": 0.4291044, + "y": -0.90290254, + "z": -0.02522797 + } + }, + "center": { + "x": 1.603463, + "y": 28.173822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 93.8808, + "y": 127.03741, + "z": 72.565796 + }, + "xAxis": { + "x": 0.9839068, + "y": 0.15868144, + "z": -0.08214402 + }, + "yAxis": { + "x": -0.16296369, + "y": 0.9854484, + "z": -0.048313927 + } + }, + "center": { + "x": -1.8345448, + "y": 35.069996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.14539, + "y": 121.14573, + "z": 72.565796 + }, + "xAxis": { + "x": -0.96179366, + "y": -0.26116154, + "z": -0.08214403 + }, + "yAxis": { + "x": 0.26558205, + "y": -0.9628769, + "z": -0.048313927 + } + }, + "center": { + "x": 1.603463, + "y": 32.133823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 85.317184, + "y": 120.24563, + "z": 80.08364 + }, + "xAxis": { + "x": -0.9920507, + "y": -0.08751695, + "z": -0.09042245 + }, + "yAxis": { + "x": 0.09426082, + "y": -0.9928518, + "z": -0.07321361 + } + }, + "center": { + "x": 1.603463, + "y": 36.093822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.05583, + "y": 114.48703, + "z": 11.829715 + }, + "xAxis": { + "x": -0.8876095, + "y": -0.46050245, + "z": 0.009321013 + }, + "yAxis": { + "x": 0.45782214, + "y": -0.8842998, + "z": -0.09172082 + } + }, + "center": { + "x": -2.8772452, + "y": 3.030967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 92.614204, + "y": 134.34363, + "z": 11.829715 + }, + "xAxis": { + "x": 0.8343233, + "y": 0.5511967, + "z": 0.009321013 + }, + "yAxis": { + "x": -0.54818356, + "y": 0.8313135, + "z": -0.09172082 + } + }, + "center": { + "x": 2.6894908, + "y": 0.6453203 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 86.36021, + "y": 115.06506, + "z": 19.723799 + }, + "xAxis": { + "x": -0.95407647, + "y": -0.2985132, + "z": 0.025058834 + }, + "yAxis": { + "x": 0.29616997, + "y": -0.9525184, + "z": -0.0706548 + } + }, + "center": { + "x": -2.8772452, + "y": 6.990967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.10429, + "y": 133.94568, + "z": 19.704657 + }, + "xAxis": { + "x": 0.39459202, + "y": -0.9161359, + "z": 0.0706548 + }, + "yAxis": { + "x": 0.9174393, + "y": 0.39708596, + "z": 0.025058834 + } + }, + "center": { + "x": 2.6894908, + "y": 4.6053205 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 88.77093, + "y": 120.22615, + "z": 89.29478 + }, + "xAxis": { + "x": -0.9146013, + "y": -0.38072744, + "z": -0.13620235 + }, + "yAxis": { + "x": 0.38740495, + "y": -0.92156, + "z": -0.025387825 + } + }, + "center": { + "x": 2.6894908, + "y": 40.245316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.84456, + "y": 115.95139, + "z": 27.603083 + }, + "xAxis": { + "x": -0.9912067, + "y": -0.12708382, + "z": 0.036864102 + }, + "yAxis": { + "x": 0.12530403, + "y": -0.990998, + "z": -0.047135975 + } + }, + "center": { + "x": -2.8772452, + "y": 10.950967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.732376, + "y": 133.16298, + "z": 27.586283 + }, + "xAxis": { + "x": 0.22871372, + "y": -0.9723519, + "z": 0.047135975 + }, + "yAxis": { + "x": 0.9723725, + "y": 0.23050559, + "z": 0.036864102 + } + }, + "center": { + "x": 2.6894908, + "y": 8.565319 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.55964, + "y": 117.109505, + "z": 35.458794 + }, + "xAxis": { + "x": -0.9978406, + "y": 0.048431788, + "z": 0.04436813 + }, + "yAxis": { + "x": -0.049439307, + "y": -0.998537, + "z": -0.021898864 + } + }, + "center": { + "x": -2.8772452, + "y": 14.910967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.16697, + "y": 132.08115, + "z": 35.445538 + }, + "xAxis": { + "x": 0.055729188, + "y": -0.9982057, + "z": 0.021898864 + }, + "yAxis": { + "x": 0.9974073, + "y": 0.05665797, + "z": 0.044368125 + } + }, + "center": { + "x": 2.6894908, + "y": 12.52532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.548996, + "y": 118.4944, + "z": 43.282894 + }, + "xAxis": { + "x": -0.9737709, + "y": 0.2225521, + "z": 0.047336552 + }, + "yAxis": { + "x": -0.22260265, + "y": -0.9748999, + "z": 0.0042683566 + } + }, + "center": { + "x": -2.8772452, + "y": 18.870966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.53366, + "y": 130.51672, + "z": 43.282894 + }, + "xAxis": { + "x": 0.9917619, + "y": -0.11902744, + "z": 0.047336552 + }, + "yAxis": { + "x": 0.1189591, + "y": 0.99289, + "z": 0.004268356 + } + }, + "center": { + "x": 2.6894908, + "y": 16.48532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.847626, + "y": 120.05397, + "z": 51.068336 + }, + "xAxis": { + "x": -0.91974944, + "y": 0.3898392, + "z": 0.04567667 + }, + "yAxis": { + "x": -0.38877794, + "y": -0.9208249, + "z": 0.030548453 + } + }, + "center": { + "x": -2.8772452, + "y": 22.830967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.40053, + "y": 128.9344, + "z": 51.068336 + }, + "xAxis": { + "x": 0.9556126, + "y": -0.29106385, + "z": 0.04567667 + }, + "yAxis": { + "x": 0.28989547, + "y": 0.9565706, + "z": 0.030548455 + } + }, + "center": { + "x": 2.6894908, + "y": 20.44532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 86.480835, + "y": 121.7307, + "z": 58.80928 + }, + "xAxis": { + "x": -0.83746326, + "y": 0.54506856, + "z": 0.039440323 + }, + "yAxis": { + "x": -0.5427754, + "y": -0.8380008, + "z": 0.05612068 + } + }, + "center": { + "x": -2.8772452, + "y": 26.790966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 93.85928, + "y": 127.46932, + "z": 58.812614 + }, + "xAxis": { + "x": -0.4517414, + "y": -0.89038205, + "z": -0.056120683 + }, + "yAxis": { + "x": 0.8900884, + "y": -0.45407832, + "z": 0.039440323 + } + }, + "center": { + "x": 2.6894908, + "y": 24.40532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 87.463524, + "y": 123.46336, + "z": 66.501274 + }, + "xAxis": { + "x": -0.72948235, + "y": 0.6833921, + "z": 0.028822273 + }, + "yAxis": { + "x": -0.67978543, + "y": -0.72901434, + "z": 0.08018639 + } + }, + "center": { + "x": -2.8772452, + "y": 30.750965 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.15171, + "y": 125.37412, + "z": 66.501274 + }, + "xAxis": { + "x": 0.7972356, + "y": -0.60297984, + "z": 0.028822271 + }, + "yAxis": { + "x": 0.5994423, + "y": 0.7963913, + "z": 0.0801864 + } + }, + "center": { + "x": 2.6894908, + "y": 28.365318 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 88.79965, + "y": 125.189026, + "z": 74.141396 + }, + "xAxis": { + "x": -0.5991789, + "y": 0.80049, + "z": 0.014154137 + }, + "yAxis": { + "x": -0.79552925, + "y": -0.5972692, + "z": 0.10199399 + } + }, + "center": { + "x": -2.8772452, + "y": 34.710964 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 92.01395, + "y": 123.79978, + "z": 74.15896 + }, + "xAxis": { + "x": -0.7283853, + "y": -0.6775338, + "z": -0.10199399 + }, + "yAxis": { + "x": 0.6799541, + "y": -0.73311806, + "z": 0.014154137 + } + }, + "center": { + "x": 2.6894908, + "y": 32.325317 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.50504, + "y": 121.694145, + "z": 81.72833 + }, + "xAxis": { + "x": 0.5419068, + "y": -0.8404286, + "z": -0.004105992 + }, + "yAxis": { + "x": 0.83454347, + "y": 0.5375216, + "z": 0.12086241 + } + }, + "center": { + "x": 2.6894908, + "y": 36.285316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.45021, + "y": 111.877174, + "z": 11.670573 + }, + "xAxis": { + "x": -0.998794, + "y": 0.0034823334, + "z": 0.048972722 + }, + "yAxis": { + "x": -0.0051225345, + "y": -0.9994287, + "z": -0.03340662 + } + }, + "center": { + "x": -3.3899975, + "y": 1.979669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.96997, + "y": 136.47742, + "z": 11.670573 + }, + "xAxis": { + "x": 0.9936336, + "y": 0.10145888, + "z": 0.048972722 + }, + "yAxis": { + "x": -0.09989442, + "y": 0.9944371, + "z": -0.03340662 + } + }, + "center": { + "x": 3.3603892, + "y": 1.603463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 90.23194, + "y": 111.72667, + "z": 19.613853 + }, + "xAxis": { + "x": -0.9824901, + "y": 0.17858408, + "z": 0.053111725 + }, + "yAxis": { + "x": -0.17921886, + "y": -0.9837814, + "z": -0.007400656 + } + }, + "center": { + "x": -3.3899975, + "y": 5.939669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 88.9815, + "y": 136.96938, + "z": 19.601751 + }, + "xAxis": { + "x": -0.07488237, + "y": -0.9971649, + "z": 0.0074006557 + }, + "yAxis": { + "x": 0.99581414, + "y": -0.07438675, + "z": 0.053111725 + } + }, + "center": { + "x": 3.3603892, + "y": 5.5634627 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.55297, + "y": 124.084114, + "z": 90.18351 + }, + "xAxis": { + "x": -0.08191633, + "y": -0.9927735, + "z": -0.08769594 + }, + "yAxis": { + "x": 0.9838684, + "y": -0.0945941, + "z": 0.15183844 + } + }, + "center": { + "x": 3.3603892, + "y": 41.203457 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.07532, + "y": 111.98807, + "z": 27.56347 + }, + "xAxis": { + "x": -0.9359347, + "y": 0.3482188, + "z": 0.05262953 + }, + "yAxis": { + "x": -0.34770438, + "y": -0.9374131, + "z": 0.018929847 + } + }, + "center": { + "x": -3.3899975, + "y": 9.899668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 90.19936, + "y": 136.85995, + "z": 27.55673 + }, + "xAxis": { + "x": -0.24730659, + "y": -0.9687523, + "z": -0.018929847 + }, + "yAxis": { + "x": 0.9673362, + "y": -0.24797347, + "z": 0.052629527 + } + }, + "center": { + "x": 3.3603892, + "y": 9.523462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.0511, + "y": 112.64437, + "z": 35.508453 + }, + "xAxis": { + "x": -0.86058176, + "y": 0.5070886, + "z": 0.04754119 + }, + "yAxis": { + "x": -0.5053171, + "y": -0.861772, + "z": 0.04476256 + } + }, + "center": { + "x": -3.3899975, + "y": 13.859668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 91.33144, + "y": 136.33633, + "z": 35.507896 + }, + "xAxis": { + "x": -0.41199327, + "y": -0.91008675, + "z": -0.04476256 + }, + "yAxis": { + "x": 0.9090892, + "y": -0.41388, + "z": 0.04754119 + } + }, + "center": { + "x": 3.3603892, + "y": 13.483462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.225945, + "y": 113.666245, + "z": 43.43798 + }, + "xAxis": { + "x": -0.75878465, + "y": 0.65023184, + "z": 0.038005624 + }, + "yAxis": { + "x": -0.64713466, + "y": -0.75922036, + "z": 0.069290705 + } + }, + "center": { + "x": -3.3899975, + "y": 17.819668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.3588, + "y": 135.142, + "z": 43.43798 + }, + "xAxis": { + "x": 0.8228923, + "y": -0.56692487, + "z": 0.038005624 + }, + "yAxis": { + "x": 0.563799, + "y": 0.82300025, + "z": 0.069290705 + } + }, + "center": { + "x": 3.3603892, + "y": 17.443464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.66026, + "y": 115.012924, + "z": 51.341713 + }, + "xAxis": { + "x": -0.63372254, + "y": 0.77317804, + "z": 0.024320636 + }, + "yAxis": { + "x": -0.7687279, + "y": -0.63296103, + "z": 0.09174824 + } + }, + "center": { + "x": -3.3899975, + "y": 21.779669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 93.06283, + "y": 133.86218, + "z": 51.341713 + }, + "xAxis": { + "x": 0.71143746, + "y": -0.70232844, + "z": 0.024320634 + }, + "yAxis": { + "x": 0.6979829, + "y": 0.7102127, + "z": 0.09174824 + } + }, + "center": { + "x": 3.3603892, + "y": 21.403465 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.40637, + "y": 116.63354, + "z": 59.21011 + }, + "xAxis": { + "x": -0.48930126, + "y": 0.8720874, + "z": 0.0069136205 + }, + "yAxis": { + "x": -0.8662994, + "y": -0.4869372, + "z": 0.1114338 + } + }, + "center": { + "x": -3.3899975, + "y": 25.739668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.53198, + "y": 132.55544, + "z": 59.231014 + }, + "xAxis": { + "x": -0.8103541, + "y": -0.57524663, + "z": -0.1114338 + }, + "yAxis": { + "x": 0.57820565, + "y": -0.81586176, + "z": 0.006913618 + } + }, + "center": { + "x": 3.3603892, + "y": 25.363464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.506874, + "y": 118.46861, + "z": 67.034744 + }, + "xAxis": { + "x": -0.3300313, + "y": 0.94387096, + "z": -0.013671784 + }, + "yAxis": { + "x": -0.9368019, + "y": -0.32570934, + "z": 0.12773257 + } + }, + "center": { + "x": -3.3899975, + "y": 29.699667 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 93.57838, + "y": 130.44173, + "z": 67.034744 + }, + "xAxis": { + "x": 0.4273576, + "y": -0.9039793, + "z": -0.0136717865 + }, + "yAxis": { + "x": 0.89740336, + "y": 0.422317, + "z": 0.12773257 + } + }, + "center": { + "x": 3.3603892, + "y": 29.323463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.99327, + "y": 120.45203, + "z": 74.80855 + }, + "xAxis": { + "x": -0.1608867, + "y": 0.9862869, + "z": -0.036792677 + }, + "yAxis": { + "x": -0.97803354, + "y": -0.15431274, + "z": 0.14013556 + } + }, + "center": { + "x": -3.3899975, + "y": 33.659668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.44159, + "y": 128.66223, + "z": 74.84393 + }, + "xAxis": { + "x": -0.95641184, + "y": -0.25620005, + "z": -0.14013556 + }, + "yAxis": { + "x": 0.26360464, + "y": -0.9639289, + "z": -0.036792677 + } + }, + "center": { + "x": 3.3603892, + "y": 33.28346 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.63271, + "y": 126.27497, + "z": 82.52604 + }, + "xAxis": { + "x": 0.09206083, + "y": -0.9938383, + "z": -0.061726972 + }, + "yAxis": { + "x": 0.9855367, + "y": 0.08208374, + "z": 0.14825538 + } + }, + "center": { + "x": 3.3603892, + "y": 37.243458 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 96.924164, + "y": 112.89082, + "z": 12.522325 + }, + "xAxis": { + "x": 0.45950451, + "y": -0.88754785, + "z": -0.03338371 + }, + "yAxis": { + "x": 0.88752234, + "y": 0.4602833, + "z": -0.021055596 + } + }, + "center": { + "x": -3.030967, + "y": 0.93696856 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 82.63279, + "y": 134.89435, + "z": 12.522325 + }, + "xAxis": { + "x": -0.5501978, + "y": 0.8343668, + "z": -0.03338371 + }, + "yAxis": { + "x": -0.8342596, + "y": -0.5509696, + "z": -0.021055596 + } + }, + "center": { + "x": 3.1688933, + "y": 2.6894908 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 95.937195, + "y": 112.04291, + "z": 20.41079 + }, + "xAxis": { + "x": -0.9538503, + "y": -0.29802105, + "z": 0.03678328 + }, + "yAxis": { + "x": 0.29776967, + "y": -0.954559, + "z": -0.012260664 + } + }, + "center": { + "x": -3.030967, + "y": 4.896969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 83.629395, + "y": 136.10416, + "z": 20.415693 + }, + "xAxis": { + "x": -0.39639723, + "y": 0.91799724, + "z": -0.012260663 + }, + "yAxis": { + "x": -0.9172661, + "y": -0.3965728, + "z": -0.03678328 + } + }, + "center": { + "x": 3.1688933, + "y": 6.6494904 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.77251, + "y": 129.48822, + "z": 91.56328 + }, + "xAxis": { + "x": 0.90648186, + "y": 0.37513432, + "z": 0.1938165 + }, + "yAxis": { + "x": -0.3849009, + "y": 0.9228518, + "z": 0.013994101 + } + }, + "center": { + "x": 3.1688933, + "y": 42.289486 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 94.755295, + "y": 111.32562, + "z": 28.327656 + }, + "xAxis": { + "x": -0.99079627, + "y": -0.12634738, + "z": 0.048570734 + }, + "yAxis": { + "x": 0.12703292, + "y": -0.99183434, + "z": 0.011284139 + } + }, + "center": { + "x": -3.030967, + "y": 8.856968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 84.77353, + "y": 136.91927, + "z": 28.339626 + }, + "xAxis": { + "x": -0.23052089, + "y": 0.97300196, + "z": 0.011284141 + }, + "yAxis": { + "x": -0.97204167, + "y": -0.2297301, + "z": -0.04857073 + } + }, + "center": { + "x": 3.1688933, + "y": 10.60949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.32672, + "y": 110.83231, + "z": 36.283955 + }, + "xAxis": { + "x": -0.04737345, + "y": -0.9982096, + "z": 0.036515374 + }, + "yAxis": { + "x": 0.99720633, + "y": -0.04937619, + "z": -0.056049816 + } + }, + "center": { + "x": -3.030967, + "y": 12.816968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 85.99408, + "y": 137.31937, + "z": 36.283955 + }, + "xAxis": { + "x": -0.057749216, + "y": 0.9976631, + "z": 0.036515377 + }, + "yAxis": { + "x": -0.99687576, + "y": -0.055652168, + "z": -0.056049813 + } + }, + "center": { + "x": 3.1688933, + "y": 14.56949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 92.35096, + "y": 111.132935, + "z": 44.213547 + }, + "xAxis": { + "x": -0.97288024, + "y": 0.22366162, + "z": 0.05898695 + }, + "yAxis": { + "x": -0.22000256, + "y": -0.9734857, + "z": 0.06264505 + } + }, + "center": { + "x": -3.030967, + "y": 16.77697 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 87.21752, + "y": 137.29712, + "z": 44.237873 + }, + "xAxis": { + "x": 0.11652196, + "y": 0.99121046, + "z": 0.06264505 + }, + "yAxis": { + "x": -0.9909928, + "y": 0.12022437, + "z": -0.058986947 + } + }, + "center": { + "x": 3.1688933, + "y": 18.529491 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.27293, + "y": 111.645874, + "z": 52.161053 + }, + "xAxis": { + "x": -0.9185779, + "y": 0.39106584, + "z": 0.05729041 + }, + "yAxis": { + "x": -0.38546306, + "y": -0.9184349, + "z": 0.08885709 + } + }, + "center": { + "x": -3.030967, + "y": 20.736969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 88.37027, + "y": 136.85834, + "z": 52.19028 + }, + "xAxis": { + "x": 0.28685, + "y": 0.9538456, + "z": 0.0888571 + }, + "yAxis": { + "x": -0.9545764, + "y": 0.29240674, + "z": -0.057290405 + } + }, + "center": { + "x": 3.1688933, + "y": 22.489492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.09492, + "y": 112.47838, + "z": 60.130127 + }, + "xAxis": { + "x": -0.53858745, + "y": -0.83477634, + "z": 0.1143329 + }, + "yAxis": { + "x": 0.8359951, + "y": -0.5463606, + "z": -0.05101317 + } + }, + "center": { + "x": -3.030967, + "y": 24.696968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 89.38092, + "y": 136.02191, + "z": 60.130127 + }, + "xAxis": { + "x": 0.44791532, + "y": 0.8867355, + "z": 0.1143329 + }, + "yAxis": { + "x": -0.888764, + "y": 0.45551747, + "z": -0.05101317 + } + }, + "center": { + "x": 3.1688933, + "y": 26.449492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.42411, + "y": 113.75876, + "z": 68.046745 + }, + "xAxis": { + "x": -0.67459345, + "y": -0.72512287, + "z": 0.13827682 + }, + "yAxis": { + "x": 0.72771096, + "y": -0.68469596, + "z": -0.040351294 + } + }, + "center": { + "x": -3.030967, + "y": 28.656967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.18252, + "y": 134.81908, + "z": 68.046745 + }, + "xAxis": { + "x": 0.5946878, + "y": 0.791976, + "z": 0.13827683 + }, + "yAxis": { + "x": -0.79561096, + "y": 0.6044625, + "z": -0.04035129 + } + }, + "center": { + "x": 3.1688933, + "y": 30.40949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 89.33255, + "y": 115.29096, + "z": 75.89307 + }, + "xAxis": { + "x": -0.59710735, + "y": 0.8017515, + "z": 0.025637744 + }, + "yAxis": { + "x": -0.78923357, + "y": -0.592899, + "z": 0.15994108 + } + }, + "center": { + "x": -3.030967, + "y": 32.616966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.71465, + "y": 133.29256, + "z": 75.93018 + }, + "xAxis": { + "x": 0.72258353, + "y": 0.6725265, + "z": 0.15994108 + }, + "yAxis": { + "x": -0.67802656, + "y": 0.7345902, + "z": -0.025637744 + } + }, + "center": { + "x": 3.1688933, + "y": 34.369488 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.92531, + "y": 131.49518, + "z": 83.77156 + }, + "xAxis": { + "x": 0.8276082, + "y": 0.53211755, + "z": 0.17864907 + }, + "yAxis": { + "x": -0.539683, + "y": 0.8418364, + "z": -0.007332042 + } + }, + "center": { + "x": 3.1688933, + "y": 38.329487 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 99.539276, + "y": 117.27706, + "z": 12.785699 + }, + "xAxis": { + "x": -0.00578096, + "y": -0.999748, + "z": -0.021692503 + }, + "yAxis": { + "x": 0.9999378, + "y": -0.0059863245, + "z": 0.0094140945 + } + }, + "center": { + "x": -1.979669, + "y": 0.4242164 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 80.49291, + "y": 130.25766, + "z": 12.785699 + }, + "xAxis": { + "x": -0.099273175, + "y": 0.99482375, + "z": -0.021692501 + }, + "yAxis": { + "x": -0.99503404, + "y": -0.099088885, + "z": 0.0094140945 + } + }, + "center": { + "x": 2.2107508, + "y": 3.3603892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.379234, + "y": 115.822136, + "z": 20.55407 + }, + "xAxis": { + "x": -0.9836893, + "y": 0.17979728, + "z": -0.0053150533 + }, + "yAxis": { + "x": -0.17982072, + "y": -0.9836899, + "z": 0.0043204958 + } + }, + "center": { + "x": -1.979669, + "y": 4.3842163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 80.71375, + "y": 131.90569, + "z": 20.553871 + }, + "xAxis": { + "x": 0.07549051, + "y": 0.9971372, + "z": 0.0043204967 + }, + "yAxis": { + "x": -0.9971341, + "y": 0.07546726, + "z": 0.0053150537 + } + }, + "center": { + "x": 2.2107508, + "y": 7.3203893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 86.61064, + "y": 132.45215, + "z": 91.36026 + }, + "xAxis": { + "x": 0.9818436, + "y": -0.09667079, + "z": 0.16321136 + }, + "yAxis": { + "x": 0.073022194, + "y": 0.9867116, + "z": 0.14514807 + } + }, + "center": { + "x": 2.2107508, + "y": 42.960384 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 98.80348, + "y": 114.45004, + "z": 28.35804 + }, + "xAxis": { + "x": -0.93741345, + "y": 0.34816998, + "z": -0.0058034174 + }, + "yAxis": { + "x": -0.348179, + "y": -0.93692696, + "z": 0.030647116 + } + }, + "center": { + "x": -1.979669, + "y": 8.344215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 81.17099, + "y": 133.29044, + "z": 28.363008 + }, + "xAxis": { + "x": 0.24782968, + "y": 0.96831876, + "z": 0.030647116 + }, + "yAxis": { + "x": -0.9688016, + "y": 0.24776958, + "z": 0.00580342 + } + }, + "center": { + "x": 2.2107508, + "y": 11.28039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 97.79215, + "y": 113.32253, + "z": 36.206528 + }, + "xAxis": { + "x": -0.50559783, + "y": -0.8609196, + "z": 0.056465153 + }, + "yAxis": { + "x": 0.8625554, + "y": -0.50584596, + "z": 0.010863937 + } + }, + "center": { + "x": -1.979669, + "y": 12.304215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 81.81495, + "y": 134.37384, + "z": 36.206528 + }, + "xAxis": { + "x": 0.41236198, + "y": 0.90926856, + "z": 0.056465153 + }, + "yAxis": { + "x": -0.9109214, + "y": 0.4124369, + "z": 0.01086394 + } + }, + "center": { + "x": 2.2107508, + "y": 15.24039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 97.22385, + "y": 112.67681, + "z": 44.064648 + }, + "xAxis": { + "x": -0.76145303, + "y": 0.64790094, + "z": -0.020338567 + }, + "yAxis": { + "x": -0.6471608, + "y": -0.75804156, + "z": 0.08096828 + } + }, + "center": { + "x": -1.979669, + "y": 16.264217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 82.59013, + "y": 135.1272, + "z": 44.076775 + }, + "xAxis": { + "x": 0.5639489, + "y": 0.82183075, + "z": 0.080968276 + }, + "yAxis": { + "x": -0.8253011, + "y": 0.5643265, + "z": 0.020338569 + } + }, + "center": { + "x": 2.2107508, + "y": 19.20039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 96.05747, + "y": 112.34105, + "z": 51.96526 + }, + "xAxis": { + "x": -0.76844686, + "y": -0.63150585, + "z": 0.10339124 + }, + "yAxis": { + "x": 0.63726395, + "y": -0.7698983, + "z": 0.033931404 + } + }, + "center": { + "x": -1.979669, + "y": 20.224218 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 83.436935, + "y": 135.53212, + "z": 51.96526 + }, + "xAxis": { + "x": 0.6978563, + "y": 0.70873606, + "z": 0.10339124 + }, + "yAxis": { + "x": -0.71461475, + "y": 0.69869477, + "z": 0.033931404 + } + }, + "center": { + "x": 2.2107508, + "y": 23.16039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 95.20047, + "y": 112.3823, + "z": 59.862923 + }, + "xAxis": { + "x": -0.8656681, + "y": -0.4852643, + "z": 0.12303375 + }, + "yAxis": { + "x": 0.49386656, + "y": -0.868028, + "z": 0.05121793 + } + }, + "center": { + "x": -1.979669, + "y": 24.184217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 84.29352, + "y": 135.58112, + "z": 59.862923 + }, + "xAxis": { + "x": 0.8099021, + "y": 0.57351667, + "z": 0.12303375 + }, + "yAxis": { + "x": -0.5823192, + "y": 0.8113452, + "z": 0.051217932 + } + }, + "center": { + "x": 2.2107508, + "y": 27.12039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 94.432556, + "y": 112.76842, + "z": 67.76042 + }, + "xAxis": { + "x": -0.93578815, + "y": -0.32388425, + "z": 0.13928235 + }, + "yAxis": { + "x": 0.33573946, + "y": -0.93922526, + "z": 0.07165827 + } + }, + "center": { + "x": -1.979669, + "y": 28.144217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 85.09775, + "y": 135.2778, + "z": 67.76042 + }, + "xAxis": { + "x": 0.8965869, + "y": 0.4203955, + "z": 0.13928235 + }, + "yAxis": { + "x": -0.43254617, + "y": 0.89875966, + "z": 0.071658276 + } + }, + "center": { + "x": 2.2107508, + "y": 31.080389 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 94.04124, + "y": 113.31273, + "z": 75.637 + }, + "xAxis": { + "x": -0.16782099, + "y": 0.9812667, + "z": -0.09461406 + }, + "yAxis": { + "x": -0.9766171, + "y": -0.15240562, + "z": 0.15162958 + } + }, + "center": { + "x": -1.979669, + "y": 32.104214 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 85.789116, + "y": 134.63681, + "z": 75.64841 + }, + "xAxis": { + "x": 0.9552036, + "y": 0.25415468, + "z": 0.15162958 + }, + "yAxis": { + "x": -0.2699732, + "y": 0.958208, + "z": 0.09461406 + } + }, + "center": { + "x": 2.2107508, + "y": 35.040386 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 86.31064, + "y": 133.68327, + "z": 83.517845 + }, + "xAxis": { + "x": 0.9839214, + "y": 0.07998611, + "z": 0.15968983 + }, + "yAxis": { + "x": -0.09967756, + "y": 0.9878338, + "z": 0.11936836 + } + }, + "center": { + "x": 2.2107508, + "y": 39.000385 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 92.74527, + "y": 118.70076, + "z": 10.85 + }, + "xAxis": { + "x": 0.9724026, + "y": 0.23330937, + "z": 0.0 + }, + "yAxis": { + "x": -0.2329107, + "y": 0.9707409, + "z": 0.05843533 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 87.39889, + "y": 129.55554, + "z": 10.85 + }, + "xAxis": { + "x": -0.9425135, + "y": -0.33416805, + "z": 0.0 + }, + "yAxis": { + "x": 0.33359703, + "y": -0.94090295, + "z": 0.05843533 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.68724, + "y": 118.19792, + "z": 18.610731 + }, + "xAxis": { + "x": 0.9981265, + "y": 0.06032806, + "z": -0.010197392 + }, + "yAxis": { + "x": -0.05994803, + "y": 0.9976162, + "z": 0.03417823 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.40377, + "y": 130.06169, + "z": 18.610731 + }, + "xAxis": { + "x": -0.9862666, + "y": -0.16484609, + "z": -0.010197392 + }, + "yAxis": { + "x": 0.16441455, + "y": -0.985799, + "z": 0.03417823 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 85.12774, + "y": 126.100464, + "z": 88.29603 + }, + "xAxis": { + "x": -0.1611262, + "y": 0.98300594, + "z": 0.08796381 + }, + "yAxis": { + "x": -0.9771284, + "y": -0.14635797, + "z": -0.15427057 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.61022, + "y": 117.90589, + "z": 26.382086 + }, + "xAxis": { + "x": 0.9932725, + "y": -0.11468894, + "z": -0.016005274 + }, + "yAxis": { + "x": 0.11483459, + "y": 0.9933483, + "z": 0.008495756 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.449684, + "y": 130.3602, + "z": 26.382086 + }, + "xAxis": { + "x": -0.99982476, + "y": 0.009712463, + "z": -0.016005272 + }, + "yAxis": { + "x": -0.009849345, + "y": -0.9999154, + "z": 0.0084957555 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.55127, + "y": 117.82495, + "z": 34.15866 + }, + "xAxis": { + "x": 0.95799214, + "y": -0.28627568, + "z": -0.017242258 + }, + "yAxis": { + "x": 0.28597856, + "y": 0.9580705, + "z": -0.01781001 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.49981, + "y": 130.44688, + "z": 34.15866 + }, + "xAxis": { + "x": -0.98276454, + "y": 0.18405598, + "z": -0.017242257 + }, + "yAxis": { + "x": -0.18375225, + "y": -0.9828112, + "z": -0.01781001 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.546875, + "y": 117.94879, + "z": 41.934895 + }, + "xAxis": { + "x": 0.89338726, + "y": -0.44907334, + "z": -0.013869714 + }, + "yAxis": { + "x": 0.44813883, + "y": 0.89288455, + "z": -0.04391751 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.51719, + "y": 130.32419, + "z": 41.934895 + }, + "xAxis": { + "x": -0.93561876, + "y": 0.35273954, + "z": -0.013869712 + }, + "yAxis": { + "x": -0.35186303, + "y": -0.9350207, + "z": -0.04391751 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.631836, + "y": 118.2647, + "z": 49.70523 + }, + "xAxis": { + "x": 0.8014755, + "y": -0.5979976, + "z": -0.0059929686 + }, + "yAxis": { + "x": 0.5962511, + "y": 0.7998263, + "z": -0.06901138 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.46589, + "y": 130.0011, + "z": 49.70523 + }, + "xAxis": { + "x": -0.8598598, + "y": 0.510495, + "z": -0.005992967 + }, + "yAxis": { + "x": -0.5089314, + "y": -0.8580363, + "z": -0.06901138 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 92.83814, + "y": 118.75399, + "z": 57.464302 + }, + "xAxis": { + "x": 0.6851274, + "y": -0.72839737, + "z": 0.006141979 + }, + "yAxis": { + "x": 0.7256895, + "y": 0.68180203, + "z": -0.09230792 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.31212, + "y": 129.49284, + "z": 57.464302 + }, + "xAxis": { + "x": -0.7578538, + "y": 0.6523955, + "z": 0.00614198 + }, + "yAxis": { + "x": -0.65005195, + "y": -0.7542624, + "z": -0.092307925 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 93.194016, + "y": 119.39253, + "z": 65.20709 + }, + "xAxis": { + "x": 0.5479766, + "y": -0.8362002, + "z": 0.022156142 + }, + "yAxis": { + "x": 0.8324117, + "y": 0.54249775, + "z": -0.113079555 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 87.02529, + "y": 128.82045, + "z": 65.20709 + }, + "xAxis": { + "x": -0.6327864, + "y": 0.77400935, + "z": 0.022156144 + }, + "yAxis": { + "x": -0.77081734, + "y": -0.6269399, + "z": -0.113079555 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 93.72299, + "y": 120.15156, + "z": 72.929085 + }, + "xAxis": { + "x": 0.39430648, + "y": -0.91803926, + "z": 0.041549385 + }, + "yAxis": { + "x": 0.91308457, + "y": 0.3862641, + "z": -0.13067757 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 86.57898, + "y": 128.01006, + "z": 72.929085 + }, + "xAxis": { + "x": -0.4885636, + "y": 0.87153846, + "z": 0.041549385 + }, + "yAxis": { + "x": -0.867456, + "y": -0.4800452, + "z": -0.13067757 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 85.95173, + "y": 127.092125, + "z": 80.62643 + }, + "xAxis": { + "x": -0.3296896, + "y": 0.94193685, + "z": 0.06371604 + }, + "yAxis": { + "x": -0.93694985, + "y": -0.31816602, + "z": -0.14455235 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 119.075, + "y": 36.3, + "z": 0.0 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.57396, + "y": 49.13143, + "z": 19.849815 + }, + "xAxis": { + "x": -0.9279951, + "y": -0.37254122, + "z": -0.0061748414 + }, + "yAxis": { + "x": 0.372569, + "y": -0.9279951, + "z": -0.004176444 + } + }, + "center": { + "x": 0.018135905, + "y": 10.147437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.10919, + "y": 46.348312, + "z": 35.20459 + }, + "xAxis": { + "x": -0.99939984, + "y": -0.017566908, + "z": 0.029856544 + }, + "yAxis": { + "x": 0.017268762, + "y": -0.9997987, + "z": -0.0102146445 + } + }, + "center": { + "x": 0.018135905, + "y": 22.027437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.17262, + "y": 43.47406, + "z": 50.551777 + }, + "xAxis": { + "x": -0.9383632, + "y": 0.33936155, + "z": 0.06563715 + }, + "yAxis": { + "x": -0.34027952, + "y": -0.94031954, + "z": -0.003008777 + } + }, + "center": { + "x": 0.018135905, + "y": 33.907433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.66327, + "y": 50.315296, + "z": 67.56342 + }, + "xAxis": { + "x": -0.7077361, + "y": 0.7016579, + "z": -0.08237634 + }, + "yAxis": { + "x": -0.7020273, + "y": -0.71154743, + "z": -0.029289836 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.404465, + "y": 46.795784, + "z": 57.154465 + }, + "xAxis": { + "x": -0.8574576, + "y": 0.51042897, + "z": 0.06502872 + }, + "yAxis": { + "x": -0.51096195, + "y": -0.8595518, + "z": 0.009410263 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 124.33364, + "y": 43.1704, + "z": 9.385871 + }, + "xAxis": { + "x": -0.7158154, + "y": -0.6982454, + "z": -0.007847478 + }, + "yAxis": { + "x": 0.6980192, + "y": -0.7158058, + "z": 0.019777037 + } + }, + "center": { + "x": -1.4286158, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.52017, + "y": 53.761414, + "z": 9.385871 + }, + "xAxis": { + "x": 0.6786757, + "y": 0.73439616, + "z": -0.007847479 + }, + "yAxis": { + "x": -0.7341698, + "y": 0.67867786, + "z": 0.019777037 + } + }, + "center": { + "x": 1.4286158, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.75082, + "y": 42.945297, + "z": 14.577543 + }, + "xAxis": { + "x": -0.79514647, + "y": -0.60641515, + "z": 0.0016794568 + }, + "yAxis": { + "x": 0.6063878, + "y": -0.7950771, + "z": 0.012094411 + } + }, + "center": { + "x": -1.4286158, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.09056, + "y": 54.01641, + "z": 14.577543 + }, + "xAxis": { + "x": 0.7626582, + "y": 0.64679956, + "z": 0.0016794568 + }, + "yAxis": { + "x": -0.6467687, + "y": 0.76259035, + "z": 0.012094411 + } + }, + "center": { + "x": 1.4286158, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.70204, + "y": 53.833473, + "z": 61.52997 + }, + "xAxis": { + "x": 0.9197393, + "y": -0.377938, + "z": 0.106030375 + }, + "yAxis": { + "x": 0.37962434, + "y": 0.92512935, + "z": 0.00458469 + } + }, + "center": { + "x": 1.4286158, + "y": 42.912548 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.20857, + "y": 42.790703, + "z": 19.776188 + }, + "xAxis": { + "x": -0.86265045, + "y": -0.5056566, + "z": 0.012066586 + }, + "yAxis": { + "x": 0.5057439, + "y": -0.86266536, + "z": 0.0056201825 + } + }, + "center": { + "x": -1.4286158, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.62405, + "y": 54.198887, + "z": 19.776188 + }, + "xAxis": { + "x": 0.8352921, + "y": 0.549674, + "z": 0.012066586 + }, + "yAxis": { + "x": -0.54976195, + "y": 0.8353025, + "z": 0.0056201825 + } + }, + "center": { + "x": 1.4286158, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.71525, + "y": 42.70119, + "z": 24.981228 + }, + "xAxis": { + "x": -0.9173237, + "y": -0.39746806, + "z": 0.023159452 + }, + "yAxis": { + "x": 0.39758423, + "y": -0.9175656, + "z": 0.00045062578 + } + }, + "center": { + "x": -1.4286158, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.11208, + "y": 54.31384, + "z": 24.981228 + }, + "xAxis": { + "x": 0.8954975, + "y": 0.44446355, + "z": 0.023159452 + }, + "yAxis": { + "x": -0.44459212, + "y": 0.895733, + "z": 0.00045062593 + } + }, + "center": { + "x": 1.4286158, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.27844, + "y": 42.67035, + "z": 30.191992 + }, + "xAxis": { + "x": -0.95835316, + "y": -0.28345835, + "z": 0.0347931 + }, + "yAxis": { + "x": 0.2835171, + "y": -0.95896137, + "z": -0.0033373872 + } + }, + "center": { + "x": -1.4286158, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.54669, + "y": 54.367275, + "z": 30.191992 + }, + "xAxis": { + "x": 0.94237906, + "y": 0.33273286, + "z": 0.0347931 + }, + "yAxis": { + "x": -0.332823, + "y": 0.9429834, + "z": -0.0033373865 + } + }, + "center": { + "x": 1.4286158, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 121.9049, + "y": 42.6909, + "z": 35.407726 + }, + "xAxis": { + "x": -0.98512876, + "y": -0.16532283, + "z": 0.04679454 + }, + "yAxis": { + "x": 0.1652387, + "y": -0.9862372, + "z": -0.0056875274 + } + }, + "center": { + "x": -1.4286158, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.9208, + "y": 54.366104, + "z": 35.407726 + }, + "xAxis": { + "x": 0.97523963, + "y": 0.21614332, + "z": 0.04679454 + }, + "yAxis": { + "x": -0.21611673, + "y": 0.97635096, + "z": -0.005687528 + } + }, + "center": { + "x": 1.4286158, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 121.60043, + "y": 42.7548, + "z": 40.627594 + }, + "xAxis": { + "x": -0.9972523, + "y": -0.04481816, + "z": 0.058985304 + }, + "yAxis": { + "x": 0.044507846, + "y": -0.99898744, + "z": -0.006564848 + } + }, + "center": { + "x": -1.4286158, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.22818, + "y": 54.318066, + "z": 40.627594 + }, + "xAxis": { + "x": 0.9935906, + "y": 0.09642868, + "z": 0.058985304 + }, + "yAxis": { + "x": -0.096208684, + "y": 0.9953395, + "z": -0.0065648477 + } + }, + "center": { + "x": 1.4286158, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 121.369835, + "y": 42.853367, + "z": 45.850708 + }, + "xAxis": { + "x": -0.99454343, + "y": 0.07626372, + "z": 0.07118411 + }, + "yAxis": { + "x": -0.07688014, + "y": -0.99702257, + "z": -0.005956304 + } + }, + "center": { + "x": -1.4286158, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.46358, + "y": 54.23158, + "z": 45.850708 + }, + "xAxis": { + "x": 0.99715906, + "y": -0.02463091, + "z": 0.07118411 + }, + "yAxis": { + "x": 0.025118057, + "y": 0.99966675, + "z": -0.005956304 + } + }, + "center": { + "x": 1.4286158, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 121.2168, + "y": 42.9774, + "z": 51.07613 + }, + "xAxis": { + "x": -0.97704256, + "y": 0.1961223, + "z": 0.08320957 + }, + "yAxis": { + "x": -0.19712022, + "y": -0.98037165, + "z": -0.0038709426 + } + }, + "center": { + "x": -1.4286158, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.62285, + "y": 54.115646, + "z": 51.07613 + }, + "xAxis": { + "x": 0.98589194, + "y": -0.14523526, + "z": 0.08320957 + }, + "yAxis": { + "x": 0.14605933, + "y": 0.98926824, + "z": -0.0038709422 + } + }, + "center": { + "x": 1.4286158, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.70296, + "y": 53.9797, + "z": 56.30288 + }, + "xAxis": { + "x": 0.9599568, + "y": -0.26359093, + "z": 0.09488285 + }, + "yAxis": { + "x": 0.26481673, + "y": 0.9642987, + "z": -0.0003397745 + } + }, + "center": { + "x": 1.4286158, + "y": 38.95255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 125.56948, + "y": 46.078873, + "z": 9.464581 + }, + "xAxis": { + "x": -0.006671767, + "y": -0.9999679, + "z": 0.004440975 + }, + "yAxis": { + "x": 0.9991555, + "y": -0.0064861565, + "z": 0.040573336 + } + }, + "center": { + "x": -0.5593769, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.4367, + "y": 50.792812, + "z": 9.464581 + }, + "xAxis": { + "x": -0.045148615, + "y": 0.9989704, + "z": 0.0044409744 + }, + "yAxis": { + "x": -0.9981495, + "y": -0.045291886, + "z": 0.040573336 + } + }, + "center": { + "x": 0.5593769, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 125.33064, + "y": 45.682674, + "z": 14.637838 + }, + "xAxis": { + "x": -0.12766331, + "y": -0.9918013, + "z": 0.0056734527 + }, + "yAxis": { + "x": 0.99143773, + "y": -0.12745403, + "z": 0.028402956 + } + }, + "center": { + "x": -0.5593769, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 127.654686, + "y": 51.200855, + "z": 14.637838 + }, + "xAxis": { + "x": 0.076103546, + "y": 0.9970838, + "z": 0.0056734527 + }, + "yAxis": { + "x": -0.9967098, + "y": 0.075913385, + "z": 0.028402956 + } + }, + "center": { + "x": 0.5593769, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.54976, + "y": 53.811913, + "z": 61.294666 + }, + "xAxis": { + "x": 0.9169477, + "y": 0.39213982, + "z": 0.07371026 + }, + "yAxis": { + "x": -0.38921267, + "y": 0.91972464, + "z": -0.051186565 + } + }, + "center": { + "x": 0.5593769, + "y": 42.129883 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 125.10889, + "y": 45.31659, + "z": 19.814075 + }, + "xAxis": { + "x": -0.24675125, + "y": -0.9690427, + "z": 0.008370728 + }, + "yAxis": { + "x": 0.96897924, + "y": -0.24659285, + "z": 0.016466834 + } + }, + "center": { + "x": -0.5593769, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.90778, + "y": 44.978336, + "z": 24.993048 + }, + "xAxis": { + "x": -0.36216468, + "y": -0.9320304, + "z": 0.012492691 + }, + "yAxis": { + "x": 0.9321141, + "y": -0.36213097, + "z": 0.0049424577 + } + }, + "center": { + "x": -0.5593769, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.04047, + "y": 51.92615, + "z": 24.993048 + }, + "xAxis": { + "x": 0.31338686, + "y": 0.94954336, + "z": 0.012492691 + }, + "yAxis": { + "x": -0.94962525, + "y": 0.31334883, + "z": 0.0049424577 + } + }, + "center": { + "x": 0.5593769, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.730576, + "y": 44.665203, + "z": 30.174473 + }, + "xAxis": { + "x": -0.47218743, + "y": -0.8813148, + "z": 0.017978048 + }, + "yAxis": { + "x": 0.88139045, + "y": -0.47235033, + "z": -0.0059988024 + } + }, + "center": { + "x": -0.5593769, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.20122, + "y": 52.248047, + "z": 30.174473 + }, + "xAxis": { + "x": 0.42588955, + "y": 0.9045965, + "z": 0.017978048 + }, + "yAxis": { + "x": -0.90468055, + "y": 0.4260483, + "z": -0.005998802 + } + }, + "center": { + "x": 0.5593769, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.58017, + "y": 44.37411, + "z": 35.358032 + }, + "xAxis": { + "x": -0.57518345, + "y": -0.81765014, + "z": 0.024745231 + }, + "yAxis": { + "x": 0.8175626, + "y": -0.57561195, + "z": -0.016194247 + } + }, + "center": { + "x": -0.5593769, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.45904, + "y": 44.101654, + "z": 40.54337 + }, + "xAxis": { + "x": -0.6696211, + "y": -0.741983, + "z": 0.03269361 + }, + "yAxis": { + "x": 0.74157965, + "y": -0.67038035, + "z": -0.025492268 + } + }, + "center": { + "x": -0.5593769, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.4432, + "y": 52.824905, + "z": 40.54337 + }, + "xAxis": { + "x": 0.6302772, + "y": 0.7756815, + "z": 0.03269361 + }, + "yAxis": { + "x": -0.775318, + "y": 0.63105637, + "z": -0.025492268 + } + }, + "center": { + "x": 0.5593769, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.36926, + "y": 43.84415, + "z": 45.730106 + }, + "xAxis": { + "x": -0.7540961, + "y": -0.6554386, + "z": 0.04170499 + }, + "yAxis": { + "x": 0.6545715, + "y": -0.7552462, + "z": -0.033754602 + } + }, + "center": { + "x": -0.5593769, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.51952, + "y": 53.08672, + "z": 45.730106 + }, + "xAxis": { + "x": 0.7191229, + "y": 0.6936303, + "z": 0.041704994 + }, + "yAxis": { + "x": -0.6928239, + "y": 0.7203164, + "z": -0.033754602 + } + }, + "center": { + "x": 0.5593769, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.31242, + "y": 43.597687, + "z": 50.917847 + }, + "xAxis": { + "x": -0.82735234, + "y": -0.5593039, + "z": 0.051645372 + }, + "yAxis": { + "x": 0.5578319, + "y": -0.82894766, + "z": -0.040858384 + } + }, + "center": { + "x": -0.5593769, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.57387, + "y": 53.57615, + "z": 56.106174 + }, + "xAxis": { + "x": 0.8635318, + "y": 0.5004229, + "z": 0.062366944 + }, + "yAxis": { + "x": -0.49832508, + "y": 0.8657317, + "z": -0.046697985 + } + }, + "center": { + "x": 0.5593769, + "y": 38.169884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 124.43094, + "y": 48.903374, + "z": 9.4502325 + }, + "xAxis": { + "x": 0.6975386, + "y": -0.7159306, + "z": 0.029720347 + }, + "yAxis": { + "x": 0.7150601, + "y": 0.6981628, + "z": 0.03546512 + } + }, + "center": { + "x": -0.5016618, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.72005, + "y": 48.031094, + "z": 9.4502325 + }, + "xAxis": { + "x": -0.7336963, + "y": 0.6788273, + "z": 0.029720347 + }, + "yAxis": { + "x": -0.67792565, + "y": -0.7342745, + "z": 0.03546512 + } + }, + "center": { + "x": 0.5016618, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 124.542435, + "y": 48.62427, + "z": 14.634112 + }, + "xAxis": { + "x": 0.6060173, + "y": -0.795146, + "z": 0.022042975 + }, + "yAxis": { + "x": 0.7947246, + "y": 0.6064154, + "z": 0.025945418 + } + }, + "center": { + "x": -0.5016618, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.59424, + "y": 48.304047, + "z": 14.634112 + }, + "xAxis": { + "x": -0.64640224, + "y": 0.7626783, + "z": 0.022042975 + }, + "yAxis": { + "x": -0.7622369, + "y": -0.646778, + "z": 0.025945418 + } + }, + "center": { + "x": 0.5016618, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.41298, + "y": 51.64448, + "z": 61.19117 + }, + "xAxis": { + "x": 0.37893707, + "y": 0.9253086, + "z": 0.014515022 + }, + "yAxis": { + "x": -0.92211634, + "y": 0.3788615, + "z": -0.07852022 + } + }, + "center": { + "x": 0.5016618, + "y": 41.028614 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.439, + "y": 48.58866, + "z": 19.816566 + }, + "xAxis": { + "x": -0.54950935, + "y": 0.8353424, + "z": 0.015572595 + }, + "yAxis": { + "x": -0.83520937, + "y": -0.5497119, + "z": 0.015561358 + } + }, + "center": { + "x": 0.5016618, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 124.84998, + "y": 48.023155, + "z": 24.99726 + }, + "xAxis": { + "x": 0.3974503, + "y": -0.9175647, + "z": 0.010405423 + }, + "yAxis": { + "x": 0.91758674, + "y": 0.3975105, + "z": 0.0044673574 + } + }, + "center": { + "x": -0.5016618, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.25595, + "y": 48.888416, + "z": 24.99726 + }, + "xAxis": { + "x": -0.4444583, + "y": 0.89573914, + "z": 0.010405423 + }, + "yAxis": { + "x": -0.895758, + "y": -0.44451958, + "z": 0.004467357 + } + }, + "center": { + "x": 0.5016618, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.041985, + "y": 47.694614, + "z": 30.175882 + }, + "xAxis": { + "x": 0.28350604, + "y": -0.9589476, + "z": 0.006618296 + }, + "yAxis": { + "x": 0.95895743, + "y": 0.28345945, + "z": -0.007171616 + } + }, + "center": { + "x": -0.5016618, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.0472, + "y": 49.206573, + "z": 30.175882 + }, + "xAxis": { + "x": -0.33281127, + "y": 0.9429702, + "z": 0.0066182967 + }, + "yAxis": { + "x": -0.94298244, + "y": -0.33276525, + "z": -0.0071716155 + } + }, + "center": { + "x": 0.5016618, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 127.81515, + "y": 49.546104, + "z": 35.352158 + }, + "xAxis": { + "x": -0.21622849, + "y": 0.97633344, + "z": 0.004267528 + }, + "yAxis": { + "x": -0.9761804, + "y": -0.21611074, + "z": -0.019182488 + } + }, + "center": { + "x": 0.5016618, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.4895, + "y": 46.96734, + "z": 40.525837 + }, + "xAxis": { + "x": 0.044742733, + "y": -0.9989928, + "z": 0.0033880777 + }, + "yAxis": { + "x": 0.9985111, + "y": 0.04461471, + "z": -0.03138665 + } + }, + "center": { + "x": -0.5016618, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 127.56261, + "y": 49.909683, + "z": 40.525837 + }, + "xAxis": { + "x": -0.096443534, + "y": 0.9953327, + "z": 0.0033880784 + }, + "yAxis": { + "x": -0.99485826, + "y": -0.09629072, + "z": -0.03138665 + } + }, + "center": { + "x": 0.5016618, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.73888, + "y": 46.563953, + "z": 45.69672 + }, + "xAxis": { + "x": -0.076525874, + "y": -0.9970596, + "z": 0.003993021 + }, + "yAxis": { + "x": 0.99610597, + "y": -0.0766273, + "z": -0.043602634 + } + }, + "center": { + "x": -0.5016618, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 127.29266, + "y": 50.299606, + "z": 45.69672 + }, + "xAxis": { + "x": 0.024762345, + "y": 0.9996854, + "z": 0.003993021 + }, + "yAxis": { + "x": -0.9987383, + "y": 0.024913047, + "z": -0.043602634 + } + }, + "center": { + "x": 0.5016618, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 127.008675, + "y": 50.717793, + "z": 50.864643 + }, + "xAxis": { + "x": 0.14558679, + "y": 0.98932683, + "z": 0.006073363 + }, + "yAxis": { + "x": -0.98776275, + "y": 0.14569825, + "z": -0.055648774 + } + }, + "center": { + "x": 0.5016618, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.71421, + "y": 51.165733, + "z": 56.029484 + }, + "xAxis": { + "x": 0.2642331, + "y": 0.9644111, + "z": 0.009598169 + }, + "yAxis": { + "x": -0.96209484, + "y": 0.2642688, + "z": -0.067345954 + } + }, + "center": { + "x": 0.5016618, + "y": 37.068615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.52244, + "y": 50.140648, + "z": 9.40022 + }, + "xAxis": { + "x": 0.9990946, + "y": -0.00671609, + "z": 0.04201085 + }, + "yAxis": { + "x": 0.005674167, + "y": 0.99967456, + "z": 0.024871536 + } + }, + "center": { + "x": -1.284328, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.68875, + "y": 46.94618, + "z": 9.40022 + }, + "xAxis": { + "x": -0.9981006, + "y": -0.045059104, + "z": 0.04201085 + }, + "yAxis": { + "x": 0.046129677, + "y": -0.9986258, + "z": 0.024871536 + } + }, + "center": { + "x": 1.284328, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.80478, + "y": 50.20469, + "z": 14.618119 + }, + "xAxis": { + "x": 0.991367, + "y": -0.12767537, + "z": 0.02984137 + }, + "yAxis": { + "x": 0.12699623, + "y": 0.99162126, + "z": 0.023649355 + } + }, + "center": { + "x": -1.284328, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.41011, + "y": 46.8676, + "z": 14.618119 + }, + "xAxis": { + "x": -0.99665064, + "y": 0.076138094, + "z": 0.02984137 + }, + "yAxis": { + "x": -0.0754467, + "y": -0.9968693, + "z": 0.023649355 + } + }, + "center": { + "x": 1.284328, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 126.42459, + "y": 48.48617, + "z": 61.324127 + }, + "xAxis": { + "x": -0.38912153, + "y": 0.9198427, + "z": -0.04973716 + }, + "yAxis": { + "x": -0.91920584, + "y": -0.39125717, + "z": -0.044479694 + } + }, + "center": { + "x": 1.284328, + "y": 40.15937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 122.15662, + "y": 50.232327, + "z": 19.832113 + }, + "xAxis": { + "x": 0.96889985, + "y": -0.24680448, + "z": 0.017906258 + }, + "yAxis": { + "x": 0.24642608, + "y": 0.96893495, + "z": 0.020958219 + } + }, + "center": { + "x": -1.284328, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.06018, + "y": 46.821766, + "z": 19.832113 + }, + "xAxis": { + "x": -0.98038614, + "y": 0.19627127, + "z": 0.017906258 + }, + "yAxis": { + "x": -0.19589157, + "y": -0.9804016, + "z": 0.02095822 + } + }, + "center": { + "x": 1.284328, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 122.572975, + "y": 50.215416, + "z": 25.041397 + }, + "xAxis": { + "x": 0.9320273, + "y": -0.3623319, + "z": 0.0063829846 + }, + "yAxis": { + "x": 0.36218774, + "y": 0.9319531, + "z": 0.016838146 + } + }, + "center": { + "x": -1.284328, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 130.6435, + "y": 46.817078, + "z": 25.041397 + }, + "xAxis": { + "x": -0.9495489, + "y": 0.313554, + "z": 0.0063829846 + }, + "yAxis": { + "x": -0.3134139, + "y": -0.94946736, + "z": 0.016838146 + } + }, + "center": { + "x": 1.284328, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 123.04793, + "y": 50.14648, + "z": 30.245237 + }, + "xAxis": { + "x": 0.8812976, + "y": -0.47253975, + "z": -0.004557094 + }, + "yAxis": { + "x": 0.4725598, + "y": 0.8812255, + "z": 0.0113504 + } + }, + "center": { + "x": -1.284328, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 130.1656, + "y": 46.861317, + "z": 30.245237 + }, + "xAxis": { + "x": -0.9045976, + "y": 0.4262423, + "z": -0.004557093 + }, + "yAxis": { + "x": -0.42626604, + "y": -0.90452665, + "z": 0.0113504 + } + }, + "center": { + "x": 1.284328, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 123.57467, + "y": 50.0188, + "z": 35.44298 + }, + "xAxis": { + "x": 0.81746507, + "y": -0.5757892, + "z": -0.0147512965 + }, + "yAxis": { + "x": 0.57590103, + "y": 0.8175066, + "z": 0.0045765853 + } + }, + "center": { + "x": -1.284328, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 129.63297, + "y": 46.961533, + "z": 35.44298 + }, + "xAxis": { + "x": -0.84620047, + "y": 0.5326604, + "z": -0.014751297 + }, + "yAxis": { + "x": -0.5327699, + "y": -0.84624773, + "z": 0.004576585 + } + }, + "center": { + "x": 1.284328, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.14562, + "y": 49.826534, + "z": 40.634064 + }, + "xAxis": { + "x": 0.74147904, + "y": -0.6705449, + "z": -0.024048032 + }, + "yAxis": { + "x": 0.67067474, + "y": 0.74174386, + "z": -0.003382569 + } + }, + "center": { + "x": -1.284328, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 129.05283, + "y": 47.123955, + "z": 40.634064 + }, + "xAxis": { + "x": -0.7752261, + "y": 0.63122594, + "z": -0.024048032 + }, + "yAxis": { + "x": -0.6313418, + "y": -0.77549726, + "z": -0.003382569 + } + }, + "center": { + "x": 1.284328, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 124.75256, + "y": 49.56482, + "z": 45.81802 + }, + "xAxis": { + "x": 0.6544693, + "y": -0.7553979, + "z": -0.03230906 + }, + "yAxis": { + "x": 0.7554716, + "y": 0.6550639, + "z": -0.012408709 + } + }, + "center": { + "x": -1.284328, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.43314, + "y": 47.353874, + "z": 45.81802 + }, + "xAxis": { + "x": -0.6927298, + "y": 0.7204732, + "z": -0.03230906 + }, + "yAxis": { + "x": -0.72051597, + "y": -0.6933273, + "z": -0.012408709 + } + }, + "center": { + "x": 1.284328, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.38673, + "y": 49.2298, + "z": 50.994495 + }, + "xAxis": { + "x": 0.55772984, + "y": -0.82908636, + "z": -0.039411534 + }, + "yAxis": { + "x": 0.82903063, + "y": 0.55875564, + "z": -0.022367613 + } + }, + "center": { + "x": -1.284328, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.78247, + "y": 47.655586, + "z": 50.994495 + }, + "xAxis": { + "x": -0.5999382, + "y": 0.799075, + "z": -0.039411534 + }, + "yAxis": { + "x": -0.7989662, + "y": -0.6009598, + "z": -0.022367615 + } + }, + "center": { + "x": 1.284328, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.10985, + "y": 48.03232, + "z": 56.163242 + }, + "xAxis": { + "x": -0.49823135, + "y": 0.86586255, + "z": -0.04524984 + }, + "yAxis": { + "x": -0.8655261, + "y": -0.49976817, + "z": -0.033111196 + } + }, + "center": { + "x": 1.284328, + "y": 36.19937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.67517, + "y": 48.99248, + "z": 10.214472 + }, + "xAxis": { + "x": 0.71481186, + "y": 0.69784075, + "z": 0.045412514 + }, + "yAxis": { + "x": -0.6984912, + "y": 0.7156155, + "z": -0.0021104768 + } + }, + "center": { + "x": -2.385598, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 134.47272, + "y": 48.240334, + "z": 10.214472 + }, + "xAxis": { + "x": -0.67769444, + "y": -0.73394, + "z": 0.045412514 + }, + "yAxis": { + "x": 0.73463124, + "y": -0.67846334, + "z": -0.0021104768 + } + }, + "center": { + "x": 2.385598, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.8496, + "y": 49.40952, + "z": 15.468327 + }, + "xAxis": { + "x": 0.7945609, + "y": 0.60612243, + "z": 0.03589546 + }, + "yAxis": { + "x": -0.60666317, + "y": 0.79493946, + "z": 0.005576797 + } + }, + "center": { + "x": -2.385598, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 134.32011, + "y": 47.81482, + "z": 15.468327 + }, + "xAxis": { + "x": -0.7620886, + "y": -0.646477, + "z": 0.03589546 + }, + "yAxis": { + "x": 0.64703655, + "y": -0.7624386, + "z": 0.005576797 + } + }, + "center": { + "x": 2.385598, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.50845, + "y": 46.38286, + "z": 62.47385 + }, + "xAxis": { + "x": -0.9227144, + "y": 0.37933227, + "z": -0.068593666 + }, + "yAxis": { + "x": -0.3810235, + "y": -0.92447364, + "z": 0.013021522 + } + }, + "center": { + "x": 2.385598, + "y": 40.101658 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 119.13751, + "y": 49.80061, + "z": 20.719181 + }, + "xAxis": { + "x": 0.8624936, + "y": 0.50542444, + "z": 0.025512986 + }, + "yAxis": { + "x": -0.5058177, + "y": 0.8625562, + "z": 0.012053216 + } + }, + "center": { + "x": -2.385598, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 134.05286, + "y": 47.409332, + "z": 20.719181 + }, + "xAxis": { + "x": -0.8351475, + "y": -0.54943407, + "z": 0.025512986 + }, + "yAxis": { + "x": 0.54982996, + "y": -0.83518964, + "z": 0.012053216 + } + }, + "center": { + "x": 2.385598, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 119.53489, + "y": 50.15221, + "z": 25.965685 + }, + "xAxis": { + "x": 0.9175997, + "y": 0.39724416, + "z": 0.014419484 + }, + "yAxis": { + "x": -0.39745444, + "y": 0.91746026, + "z": 0.017222473 + } + }, + "center": { + "x": -2.385598, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 133.67422, + "y": 47.037613, + "z": 25.965685 + }, + "xAxis": { + "x": -0.8957847, + "y": -0.44425425, + "z": 0.014419484 + }, + "yAxis": { + "x": 0.44445702, + "y": -0.8956346, + "z": 0.017222473 + } + }, + "center": { + "x": 2.385598, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 120.03609, + "y": 50.451355, + "z": 31.206549 + }, + "xAxis": { + "x": 0.9590597, + "y": 0.2831902, + "z": 0.002779915 + }, + "yAxis": { + "x": -0.2831848, + "y": 0.95883524, + "z": 0.021007702 + } + }, + "center": { + "x": -2.385598, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 133.1892, + "y": 46.712902, + "z": 31.206549 + }, + "xAxis": { + "x": -0.9430986, + "y": -0.33250165, + "z": 0.0027799155 + }, + "yAxis": { + "x": 0.33248463, + "y": -0.94287467, + "z": 0.021007702 + } + }, + "center": { + "x": 2.385598, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 120.6339, + "y": 50.68586, + "z": 36.440567 + }, + "xAxis": { + "x": 0.98625726, + "y": 0.16495857, + "z": -0.009232638 + }, + "yAxis": { + "x": -0.16470794, + "y": 0.9860659, + "z": 0.023352616 + } + }, + "center": { + "x": -2.385598, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 132.60434, + "y": 46.44774, + "z": 36.440567 + }, + "xAxis": { + "x": -0.97638553, + "y": -0.21583803, + "z": -0.00923264 + }, + "yAxis": { + "x": 0.21557783, + "y": -0.9762074, + "z": 0.023352616 + } + }, + "center": { + "x": 2.385598, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.31971, + "y": 50.844494, + "z": 41.66664 + }, + "xAxis": { + "x": 0.9987879, + "y": 0.04430741, + "z": -0.021439547 + }, + "yAxis": { + "x": -0.04378566, + "y": 0.9987473, + "z": 0.024222342 + } + }, + "center": { + "x": -2.385598, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 131.92769, + "y": 46.253784, + "z": 41.66664 + }, + "xAxis": { + "x": -0.99515057, + "y": -0.095998175, + "z": -0.021439547 + }, + "yAxis": { + "x": 0.095475025, + "y": -0.9951371, + "z": 0.024222342 + } + }, + "center": { + "x": 2.385598, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 122.08357, + "y": 50.91717, + "z": 46.88378 + }, + "xAxis": { + "x": 0.99646515, + "y": -0.07696917, + "z": -0.03365929 + }, + "yAxis": { + "x": 0.077783905, + "y": 0.9966908, + "z": 0.023603952 + } + }, + "center": { + "x": -2.385598, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 131.16861, + "y": 46.141624, + "z": 46.88378 + }, + "xAxis": { + "x": -0.9991147, + "y": 0.025235841, + "z": -0.03365929 + }, + "yAxis": { + "x": -0.026037795, + "y": -0.99938226, + "z": 0.023603952 + } + }, + "center": { + "x": 2.385598, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 122.91438, + "y": 50.895073, + "z": 52.091145 + }, + "xAxis": { + "x": 0.9793237, + "y": -0.19706777, + "z": -0.04571016 + }, + "yAxis": { + "x": 0.198193, + "y": 0.97992706, + "z": 0.02150664 + } + }, + "center": { + "x": -2.385598, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.33777, + "y": 46.12065, + "z": 52.091145 + }, + "xAxis": { + "x": -0.98821896, + "y": 0.14606126, + "z": -0.04571016 + }, + "yAxis": { + "x": -0.14715372, + "y": -0.9888798, + "z": 0.021506637 + } + }, + "center": { + "x": 2.385598, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 129.44687, + "y": 46.19888, + "z": 57.288017 + }, + "xAxis": { + "x": -0.9626253, + "y": 0.26468137, + "z": -0.05741296 + }, + "yAxis": { + "x": -0.26607174, + "y": -0.9637859, + "z": 0.01796159 + } + }, + "center": { + "x": 2.385598, + "y": 36.14166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.43856, + "y": 46.083694, + "z": 10.164458 + }, + "xAxis": { + "x": 0.005850043, + "y": 0.99963653, + "z": 0.026317444 + }, + "yAxis": { + "x": -0.9999003, + "y": 0.0061858282, + "z": -0.012695765 + } + }, + "center": { + "x": -3.2548368, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.55695, + "y": 51.209282, + "z": 10.164458 + }, + "xAxis": { + "x": 0.045952067, + "y": -0.9985969, + "z": 0.026317444 + }, + "yAxis": { + "x": 0.9988777, + "y": 0.0456304, + "z": -0.012695765 + } + }, + "center": { + "x": 3.2548368, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.269325, + "y": 46.671917, + "z": 15.436734 + }, + "xAxis": { + "x": 0.1271839, + "y": 0.9915617, + "z": 0.025093056 + }, + "yAxis": { + "x": -0.99187225, + "y": 0.12723683, + "z": -0.0005180546 + } + }, + "center": { + "x": -3.2548368, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.75642, + "y": 50.63062, + "z": 15.436734 + }, + "xAxis": { + "x": -0.07563719, + "y": -0.9968196, + "z": 0.025093056 + }, + "yAxis": { + "x": 0.9971325, + "y": -0.07567397, + "z": -0.0005180546 + } + }, + "center": { + "x": 3.2548368, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.65846, + "y": 46.405483, + "z": 62.737747 + }, + "xAxis": { + "x": -0.91938376, + "y": -0.39099818, + "z": -0.043056916 + }, + "yAxis": { + "x": 0.3870048, + "y": -0.91868997, + "z": 0.078968905 + } + }, + "center": { + "x": 3.2548368, + "y": 40.884323 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.237076, + "y": 47.274548, + "z": 20.710001 + }, + "xAxis": { + "x": 0.24662279, + "y": 0.96885264, + "z": 0.022399595 + }, + "yAxis": { + "x": -0.9690957, + "y": 0.24642059, + "z": 0.011421525 + } + }, + "center": { + "x": -3.2548368, + "y": 10.449885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.81985, + "y": 50.030468, + "z": 20.710001 + }, + "xAxis": { + "x": -0.19609228, + "y": -0.9803296, + "z": 0.022399595 + }, + "yAxis": { + "x": 0.9805618, + "y": -0.19587776, + "z": 0.011421525 + } + }, + "center": { + "x": 3.2548368, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.34257, + "y": 47.874897, + "z": 25.98257 + }, + "xAxis": { + "x": 0.36239064, + "y": 0.9318471, + "z": 0.01827711 + }, + "yAxis": { + "x": -0.9319093, + "y": 0.36196482, + "z": 0.022945428 + } + }, + "center": { + "x": -3.2548368, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.7456, + "y": 49.42546, + "z": 25.98257 + }, + "xAxis": { + "x": -0.313622, + "y": -0.949372, + "z": 0.01827711 + }, + "yAxis": { + "x": 0.9494121, + "y": -0.31319353, + "z": 0.022945428 + } + }, + "center": { + "x": 3.2548368, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.58449, + "y": 48.456295, + "z": 31.252768 + }, + "xAxis": { + "x": 0.47276598, + "y": 0.88109523, + "z": 0.012786906 + }, + "yAxis": { + "x": -0.8808661, + "y": 0.4721513, + "z": 0.033882298 + } + }, + "center": { + "x": -3.2548368, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.53413, + "y": 48.832306, + "z": 31.252768 + }, + "xAxis": { + "x": -0.42647868, + "y": -0.9044072, + "z": 0.012786906 + }, + "yAxis": { + "x": 0.90414655, + "y": -0.42587674, + "z": 0.033882294 + } + }, + "center": { + "x": 3.2548368, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.9595, + "y": 49.002365, + "z": 36.518955 + }, + "xAxis": { + "x": 0.5761075, + "y": 0.8173518, + "z": 0.006010622 + }, + "yAxis": { + "x": -0.8167251, + "y": 0.57534164, + "z": 0.04406949 + } + }, + "center": { + "x": -3.2548368, + "y": 22.329885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.18793, + "y": 48.26754, + "z": 36.518955 + }, + "xAxis": { + "x": -0.53298414, + "y": -0.8461039, + "z": 0.0060106213 + }, + "yAxis": { + "x": 0.8454383, + "y": -0.5322518, + "z": 0.04406949 + } + }, + "center": { + "x": 3.2548368, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.46228, + "y": 49.49725, + "z": 41.77955 + }, + "xAxis": { + "x": 0.67087847, + "y": 0.74156475, + "z": -0.0019509771 + }, + "yAxis": { + "x": -0.74044, + "y": 0.67000127, + "z": 0.05335553 + } + }, + "center": { + "x": -3.2548368, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 134.71147, + "y": 47.747272, + "z": 41.77955 + }, + "xAxis": { + "x": -0.63155454, + "y": -0.775329, + "z": -0.0019509773 + }, + "yAxis": { + "x": 0.7741603, + "y": -0.6307369, + "z": 0.05335553 + } + }, + "center": { + "x": 3.2548368, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.08562, + "y": 49.925854, + "z": 47.03305 + }, + "xAxis": { + "x": 0.7556696, + "y": 0.654861, + "z": -0.010979501 + }, + "yAxis": { + "x": -0.6531453, + "y": 0.7547227, + "z": 0.061602328 + } + }, + "center": { + "x": -3.2548368, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 134.11118, + "y": 47.28695, + "z": 47.03305 + }, + "xAxis": { + "x": -0.7207242, + "y": -0.69313496, + "z": -0.010979501 + }, + "yAxis": { + "x": 0.6913725, + "y": -0.71986747, + "z": 0.061602328 + } + }, + "center": { + "x": 3.2548368, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.820496, + "y": 50.274067, + "z": 52.278072 + }, + "xAxis": { + "x": 0.8292201, + "y": 0.55852973, + "z": -0.020940691 + }, + "yAxis": { + "x": -0.55613905, + "y": 0.828246, + "z": 0.06868725 + } + }, + "center": { + "x": -3.2548368, + "y": 34.209885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 133.39532, + "y": 46.901127, + "z": 52.278072 + }, + "xAxis": { + "x": -0.79916716, + "y": -0.600744, + "z": -0.020940693 + }, + "yAxis": { + "x": 0.59830606, + "y": -0.7983182, + "z": 0.06868725 + } + }, + "center": { + "x": 3.2548368, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.57391, + "y": 46.60326, + "z": 57.513344 + }, + "xAxis": { + "x": -0.8657169, + "y": -0.49953008, + "z": -0.03168643 + }, + "yAxis": { + "x": 0.49634472, + "y": -0.8649225, + "z": 0.07450495 + } + }, + "center": { + "x": 3.2548368, + "y": 36.924324 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.55339, + "y": 43.249634, + "z": 11.066397 + }, + "xAxis": { + "x": -0.6985422, + "y": 0.71552587, + "z": 0.007844687 + }, + "yAxis": { + "x": -0.71553206, + "y": -0.6983531, + "z": -0.01779856 + } + }, + "center": { + "x": -3.312552, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.29677, + "y": 53.981777, + "z": 11.066397 + }, + "xAxis": { + "x": 0.7346775, + "y": -0.67837113, + "z": 0.007844687 + }, + "yAxis": { + "x": 0.67838717, + "y": 0.734489, + "z": -0.01779856 + } + }, + "center": { + "x": 3.312552, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.04369, + "y": 43.7234, + "z": 16.328285 + }, + "xAxis": { + "x": -0.6066028, + "y": 0.7948533, + "z": 0.01553194 + }, + "yAxis": { + "x": -0.79499996, + "y": -0.606553, + "z": -0.008274209 + } + }, + "center": { + "x": -3.312552, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.83032, + "y": 53.535053, + "z": 16.328285 + }, + "xAxis": { + "x": 0.6469718, + "y": -0.7623557, + "z": 0.01553194 + }, + "yAxis": { + "x": 0.76250476, + "y": 0.64692974, + "z": -0.008274209 + } + }, + "center": { + "x": 3.312552, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 133.72495, + "y": 48.60586, + "z": 63.725803 + }, + "xAxis": { + "x": -0.38191217, + "y": -0.9239143, + "z": 0.02292169 + }, + "yAxis": { + "x": 0.9207172, + "y": -0.37820575, + "z": 0.09612644 + } + }, + "center": { + "x": 3.312552, + "y": 41.98559 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 117.65954, + "y": 44.25366, + "z": 21.595444 + }, + "xAxis": { + "x": -0.5056464, + "y": 0.8624601, + "z": 0.022006977 + }, + "yAxis": { + "x": -0.86264354, + "y": -0.5058079, + "z": 0.00211204 + } + }, + "center": { + "x": -3.312552, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.24144, + "y": 53.025414, + "z": 21.595444 + }, + "xAxis": { + "x": 0.54965395, + "y": -0.8351025, + "z": 0.022006977 + }, + "yAxis": { + "x": 0.8352774, + "y": 0.5498247, + "z": 0.00211204 + } + }, + "center": { + "x": 3.312552, + "y": 10.305597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.40689, + "y": 44.824783, + "z": 26.866278 + }, + "xAxis": { + "x": -0.39717433, + "y": 0.9173408, + "z": 0.027173514 + }, + "yAxis": { + "x": -0.917457, + "y": -0.3976158, + "z": 0.0132057415 + } + }, + "center": { + "x": -3.312552, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.52333, + "y": 52.46814, + "z": 26.866278 + }, + "xAxis": { + "x": 0.4441711, + "y": -0.8955298, + "z": 0.027173514 + }, + "yAxis": { + "x": 0.8956229, + "y": 0.444618, + "z": 0.0132057415 + } + }, + "center": { + "x": 3.312552, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 117.28978, + "y": 45.42055, + "z": 32.139137 + }, + "xAxis": { + "x": -0.28279948, + "y": 0.95867944, + "z": 0.03095472 + }, + "yAxis": { + "x": -0.95862514, + "y": -0.28358555, + "z": 0.02484193 + } + }, + "center": { + "x": -3.312552, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.67116, + "y": 51.879246, + "z": 32.139137 + }, + "xAxis": { + "x": 0.33209175, + "y": -0.942739, + "z": 0.03095472 + }, + "yAxis": { + "x": 0.94264406, + "y": 0.33287397, + "z": 0.02484193 + } + }, + "center": { + "x": 3.312552, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 117.3102, + "y": 46.02436, + "z": 37.412346 + }, + "xAxis": { + "x": -0.16422264, + "y": 0.98586124, + "z": 0.033294372 + }, + "yAxis": { + "x": -0.9855358, + "y": -0.16541286, + "z": 0.036847573 + } + }, + "center": { + "x": -3.312552, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.68205, + "y": 51.27519, + "z": 37.412346 + }, + "xAxis": { + "x": 0.21508259, + "y": -0.97602814, + "z": 0.033294372 + }, + "yAxis": { + "x": 0.9756415, + "y": 0.21625432, + "z": 0.036847576 + } + }, + "center": { + "x": 3.312552, + "y": 22.185598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.4681, + "y": 46.6195, + "z": 42.684216 + }, + "xAxis": { + "x": -0.043207124, + "y": 0.99848205, + "z": 0.03415768 + }, + "yAxis": { + "x": -0.9977889, + "y": -0.044854913, + "z": 0.049044147 + } + }, + "center": { + "x": -3.312552, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.5552, + "y": 50.67267, + "z": 42.684216 + }, + "xAxis": { + "x": 0.094883524, + "y": -0.9949022, + "z": 0.03415768 + }, + "yAxis": { + "x": 0.9941246, + "y": 0.096493185, + "z": 0.049044147 + } + }, + "center": { + "x": 3.312552, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.761406, + "y": 47.18938, + "z": 47.953075 + }, + "xAxis": { + "x": 0.07844758, + "y": 0.99635416, + "z": 0.0335318 + }, + "yAxis": { + "x": -0.9952022, + "y": 0.07629553, + "z": 0.06125028 + } + }, + "center": { + "x": -3.312552, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.29182, + "y": 50.088352, + "z": 47.953075 + }, + "xAxis": { + "x": -0.026718022, + "y": -0.9990805, + "z": 0.0335318 + }, + "yAxis": { + "x": 0.9978185, + "y": -0.024628552, + "z": 0.06125028 + } + }, + "center": { + "x": 3.312552, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.186005, + "y": 47.7178, + "z": 53.217316 + }, + "xAxis": { + "x": 0.19893244, + "y": 0.97950923, + "z": 0.031426042 + }, + "yAxis": { + "x": -0.97781414, + "y": 0.19623695, + "z": 0.07328447 + } + }, + "center": { + "x": -3.312552, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.89519, + "y": 49.53865, + "z": 53.217316 + }, + "xAxis": { + "x": -0.14791381, + "y": -0.98850083, + "z": 0.031426042 + }, + "yAxis": { + "x": 0.98666835, + "y": -0.14530978, + "z": 0.07328447 + } + }, + "center": { + "x": 3.312552, + "y": 34.065594 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.37051, + "y": 49.03944, + "z": 58.47538 + }, + "xAxis": { + "x": -0.26690164, + "y": -0.9633207, + "z": 0.027871722 + }, + "yAxis": { + "x": 0.96083987, + "y": -0.26375595, + "z": 0.08496777 + } + }, + "center": { + "x": 3.312552, + "y": 38.025593 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.46112, + "y": 42.01205, + "z": 11.145105 + }, + "xAxis": { + "x": -0.9999163, + "y": 0.006384726, + "z": -0.011252431 + }, + "yAxis": { + "x": -0.006418928, + "y": -0.9999749, + "z": 0.0030060343 + } + }, + "center": { + "x": -2.5298858, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.32883, + "y": 55.06704, + "z": 11.145105 + }, + "xAxis": { + "x": 0.99890405, + "y": 0.045432597, + "z": -0.011252431 + }, + "yAxis": { + "x": -0.045401476, + "y": 0.9989643, + "z": 0.0030060343 + } + }, + "center": { + "x": 2.5298858, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 120.7809, + "y": 42.14276, + "z": 16.372982 + }, + "xAxis": { + "x": -0.9918464, + "y": 0.12743573, + "z": 0.0009251377 + }, + "yAxis": { + "x": -0.12743075, + "y": -0.99183846, + "z": 0.004235547 + } + }, + "center": { + "x": -2.5298858, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.0149, + "y": 54.971745, + "z": 16.372982 + }, + "xAxis": { + "x": 0.997117, + "y": -0.075873934, + "z": 0.0009251378 + }, + "yAxis": { + "x": 0.07586938, + "y": 0.99710876, + "z": 0.004235547 + } + }, + "center": { + "x": 2.5298858, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 133.71106, + "y": 51.765232, + "z": 63.621445 + }, + "xAxis": { + "x": 0.3866855, + "y": -0.9187011, + "z": 0.080390505 + }, + "yAxis": { + "x": 0.91699797, + "y": 0.3922919, + "z": 0.072262034 + } + }, + "center": { + "x": 2.5298858, + "y": 42.854836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 120.185524, + "y": 42.35315, + "z": 21.608604 + }, + "xAxis": { + "x": -0.9690283, + "y": 0.24661441, + "z": 0.012864065 + }, + "yAxis": { + "x": -0.2465425, + "y": -0.9691072, + "z": 0.006930139 + } + }, + "center": { + "x": -2.5298858, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.62038, + "y": 54.79249, + "z": 21.608604 + }, + "xAxis": { + "x": 0.9805046, + "y": -0.19607481, + "z": 0.012864065 + }, + "yAxis": { + "x": 0.1959989, + "y": 0.9805796, + "z": 0.0069301385 + } + }, + "center": { + "x": 2.5298858, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.684105, + "y": 42.63235, + "z": 26.850847 + }, + "xAxis": { + "x": -0.9318013, + "y": 0.36214858, + "z": 0.024386818 + }, + "yAxis": { + "x": -0.36198294, + "y": -0.93211925, + "z": 0.011049741 + } + }, + "center": { + "x": -2.5298858, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 133.13557, + "y": 54.53964, + "z": 26.850847 + }, + "xAxis": { + "x": 0.94931376, + "y": -0.31338263, + "z": 0.024386818 + }, + "yAxis": { + "x": 0.31320074, + "y": 0.9496227, + "z": 0.011049741 + } + }, + "center": { + "x": 2.5298858, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 119.28438, + "y": 42.96848, + "z": 32.098484 + }, + "xAxis": { + "x": -0.880719, + "y": 0.47232017, + "z": 0.035322048 + }, + "yAxis": { + "x": -0.47203544, + "y": -0.88142455, + "z": 0.016533094 + } + }, + "center": { + "x": -2.5298858, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 133.55219, + "y": 54.224678, + "z": 32.098484 + }, + "xAxis": { + "x": 0.9040084, + "y": -0.426053, + "z": 0.035322048 + }, + "yAxis": { + "x": 0.42573208, + "y": 0.9046982, + "z": 0.016533094 + } + }, + "center": { + "x": 2.5298858, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.99252, + "y": 43.348797, + "z": 37.350216 + }, + "xAxis": { + "x": -0.816541, + "y": 0.57549095, + "z": 0.045507148 + }, + "yAxis": { + "x": -0.5750635, + "y": -0.8177769, + "z": 0.023298658 + } + }, + "center": { + "x": -2.5298858, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 133.86336, + "y": 53.85999, + "z": 37.350216 + }, + "xAxis": { + "x": 0.8452622, + "y": -0.53241044, + "z": 0.04550715 + }, + "yAxis": { + "x": 0.53191954, + "y": 0.8464743, + "z": 0.02329866 + } + }, + "center": { + "x": 2.5298858, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.81315, + "y": 43.75991, + "z": 42.604668 + }, + "xAxis": { + "x": -0.7402217, + "y": 0.67012674, + "z": 0.054790664 + }, + "yAxis": { + "x": -0.66953516, + "y": -0.7421229, + "z": 0.031245831 + } + }, + "center": { + "x": -2.5298858, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 134.0638, + "y": 53.45872, + "z": 42.604668 + }, + "xAxis": { + "x": 0.7739487, + "y": -0.63087344, + "z": 0.054790664 + }, + "yAxis": { + "x": 0.6301841, + "y": 0.77581674, + "z": 0.031245831 + } + }, + "center": { + "x": 2.5298858, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.74918, + "y": 44.187977, + "z": 47.86044 + }, + "xAxis": { + "x": -0.65289587, + "y": 0.7548203, + "z": 0.06303455 + }, + "yAxis": { + "x": -0.7540455, + "y": -0.65558743, + "z": 0.040256433 + } + }, + "center": { + "x": -2.5298858, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 134.14986, + "y": 53.03455, + "z": 47.86044 + }, + "xAxis": { + "x": 0.69112843, + "y": -0.71997786, + "z": 0.06303455 + }, + "yAxis": { + "x": 0.7190646, + "y": 0.69377625, + "z": 0.040256437 + } + }, + "center": { + "x": 2.5298858, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 118.801834, + "y": 44.618893, + "z": 53.116108 + }, + "xAxis": { + "x": -0.55586207, + "y": 0.82831216, + "z": 0.070116214 + }, + "yAxis": { + "x": -0.8273378, + "y": -0.5594573, + "z": 0.05019648 + } + }, + "center": { + "x": -2.5298858, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 134.11961, + "y": 52.601486, + "z": 53.116108 + }, + "xAxis": { + "x": 0.5980329, + "y": -0.7983987, + "z": 0.070116214 + }, + "yAxis": { + "x": 0.7972393, + "y": 0.60157275, + "z": 0.05019648 + } + }, + "center": { + "x": 2.5298858, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 133.97284, + "y": 52.17369, + "z": 58.370243 + }, + "xAxis": { + "x": 0.49604636, + "y": -0.86496973, + "z": 0.07593035 + }, + "yAxis": { + "x": 0.8635458, + "y": 0.5005774, + "z": 0.060918156 + } + }, + "center": { + "x": 2.5298858, + "y": 38.894836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 121.521774, + "y": 46.088444, + "z": 9.15 + }, + "xAxis": { + "x": 0.3739909, + "y": -0.92743236, + "z": -4.3368087e-19 + }, + "yAxis": { + "x": 0.92704785, + "y": 0.37383583, + "z": 0.028793845 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 131.47946, + "y": 50.992977, + "z": 9.15 + }, + "xAxis": { + "x": -0.4215417, + "y": 0.90680903, + "z": 0.0 + }, + "yAxis": { + "x": -0.90643305, + "y": -0.4213669, + "z": 0.028793845 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.31034, + "y": 46.182472, + "z": 14.372592 + }, + "xAxis": { + "x": 0.2588988, + "y": -0.96589816, + "z": -0.0034891297 + }, + "yAxis": { + "x": 0.96577877, + "y": 0.25880516, + "z": 0.017065028 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.69548, + "y": 50.91003, + "z": 14.372592 + }, + "xAxis": { + "x": -0.3085972, + "y": 0.9511864, + "z": -0.0034891297 + }, + "yAxis": { + "x": -0.95107204, + "y": -0.30849752, + "z": 0.017065028 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 130.15674, + "y": 50.084034, + "z": 61.35396 + }, + "xAxis": { + "x": 0.7020273, + "y": 0.71154743, + "z": 0.029289836 + }, + "yAxis": { + "x": -0.7077361, + "y": 0.7016579, + "z": -0.08237634 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.17576, + "y": 46.299675, + "z": 19.597261 + }, + "xAxis": { + "x": 0.13996153, + "y": -0.9901415, + "z": -0.0055312943 + }, + "yAxis": { + "x": 0.9901481, + "y": 0.13993455, + "z": 0.0049976134 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.83595, + "y": 50.799957, + "z": 19.597261 + }, + "xAxis": { + "x": -0.19107582, + "y": 0.9815597, + "z": -0.0055312943 + }, + "yAxis": { + "x": -0.98156774, + "y": -0.19104922, + "z": 0.0049976134 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.12029, + "y": 46.430576, + "z": 24.823044 + }, + "xAxis": { + "x": 0.01894772, + "y": -0.9998019, + "z": -0.006096126 + }, + "yAxis": { + "x": 0.9997935, + "y": 0.01899164, + "z": -0.0072289547 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.89812, + "y": 50.672104, + "z": 24.823044 + }, + "xAxis": { + "x": -0.0707251, + "y": 0.99747723, + "z": -0.006096126 + }, + "yAxis": { + "x": -0.99746656, + "y": -0.07076852, + "z": -0.0072289547 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.145035, + "y": 46.565495, + "z": 30.04896 + }, + "xAxis": { + "x": -0.10234312, + "y": -0.9947357, + "z": -0.0051752264 + }, + "yAxis": { + "x": 0.99457145, + "y": -0.102225125, + "z": -0.019432865 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.8804, + "y": 50.536087, + "z": 30.04896 + }, + "xAxis": { + "x": 0.050665323, + "y": 0.9987023, + "z": -0.005175226 + }, + "yAxis": { + "x": -0.9985322, + "y": 0.05055599, + "z": -0.019432865 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.24987, + "y": 46.694683, + "z": 35.27403 + }, + "xAxis": { + "x": -0.22210738, + "y": -0.97501826, + "z": -0.0027822885 + }, + "yAxis": { + "x": 0.97455966, + "y": -0.22191322, + "z": -0.031432644 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.78241, + "y": 50.401638, + "z": 35.27403 + }, + "xAxis": { + "x": 0.17129034, + "y": 0.9852167, + "z": -0.0027822882 + }, + "yAxis": { + "x": -0.9847486, + "y": 0.1711202, + "z": -0.031432644 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.433495, + "y": 46.808487, + "z": 40.49728 + }, + "xAxis": { + "x": -0.33856413, + "y": -0.9409427, + "z": 0.0010471037 + }, + "yAxis": { + "x": 0.94005567, + "y": -0.33829287, + "z": -0.04304985 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.60493, + "y": 50.278473, + "z": 40.49728 + }, + "xAxis": { + "x": 0.28935623, + "y": 0.9572209, + "z": 0.001047104 + }, + "yAxis": { + "x": -0.956321, + "y": 0.28913128, + "z": -0.04304985 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 121.69344, + "y": 46.89748, + "z": 45.71777 + }, + "xAxis": { + "x": -0.44998166, + "y": -0.89301586, + "z": 0.006256006 + }, + "yAxis": { + "x": 0.8915726, + "y": -0.44963348, + "z": -0.054111734 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.34995, + "y": 50.176132, + "z": 45.71777 + }, + "xAxis": { + "x": 0.40310735, + "y": 0.91513133, + "z": 0.0062560067 + }, + "yAxis": { + "x": -0.9136719, + "y": 0.40283442, + "z": -0.054111734 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 122.02611, + "y": 46.952602, + "z": 50.9346 + }, + "xAxis": { + "x": -0.5547032, + "y": -0.83195037, + "z": 0.012766962 + }, + "yAxis": { + "x": 0.82983136, + "y": -0.5542794, + "z": -0.0644538 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.02058, + "y": 50.10385, + "z": 50.9346 + }, + "xAxis": { + "x": 0.51085216, + "y": 0.8595738, + "z": 0.012766963 + }, + "yAxis": { + "x": -0.85743564, + "y": 0.51053876, + "z": -0.0644538 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 130.6211, + "y": 50.070415, + "z": 56.146923 + }, + "xAxis": { + "x": 0.6109885, + "y": 0.79137444, + "z": 0.020483153 + }, + "yAxis": { + "x": -0.7884484, + "y": 0.6106428, + "z": -0.07392227 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 128.425, + "y": 73.7, + "z": 0.0 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 128.91367, + "y": 86.06781, + "z": 26.680897 + }, + "xAxis": { + "x": -0.72170043, + "y": -0.692105, + "z": -0.011797038 + }, + "yAxis": { + "x": 0.6922028, + "y": -0.7215448, + "z": -0.015110787 + } + }, + "center": { + "x": -0.12357646, + "y": 10.494074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 131.14578, + "y": 82.09022, + "z": 49.305794 + }, + "xAxis": { + "x": -0.9801896, + "y": -0.18619472, + "z": 0.067526385 + }, + "yAxis": { + "x": 0.1850798, + "y": -0.98246676, + "z": -0.022462765 + } + }, + "center": { + "x": -0.12357646, + "y": 22.374077 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 132.64288, + "y": 77.70938, + "z": 71.91678 + }, + "xAxis": { + "x": -0.9149432, + "y": 0.379385, + "z": 0.13764435 + }, + "yAxis": { + "x": -0.3810946, + "y": -0.92441833, + "z": 0.014752167 + } + }, + "center": { + "x": -0.12357646, + "y": 34.254074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 123.05865, + "y": 90.49553, + "z": 96.079475 + }, + "xAxis": { + "x": -0.5968413, + "y": 0.7884812, + "z": -0.14858644 + }, + "yAxis": { + "x": -0.78467274, + "y": -0.6122576, + "z": -0.09710498 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 125.76346, + "y": 81.227875, + "z": 80.78643 + }, + "xAxis": { + "x": -0.85476935, + "y": 0.5013125, + "z": 0.13436954 + }, + "yAxis": { + "x": -0.5017206, + "y": -0.8643888, + "z": 0.033293 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 129.73996, + "y": 78.808136, + "z": 11.223541 + }, + "xAxis": { + "x": -0.40885016, + "y": -0.9123437, + "z": -0.021692501 + }, + "yAxis": { + "x": 0.91159034, + "y": -0.4094004, + "z": 0.037340768 + } + }, + "center": { + "x": -0.93696856, + "y": 0.7832468 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 121.70974, + "y": 92.28305, + "z": 11.223541 + }, + "xAxis": { + "x": 0.31074712, + "y": 0.9502451, + "z": -0.021692503 + }, + "yAxis": { + "x": -0.9495537, + "y": 0.31137344, + "z": 0.037340768 + } + }, + "center": { + "x": 1.124723, + "y": 3.1688933 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 128.74857, + "y": 77.41031, + "z": 18.846754 + }, + "xAxis": { + "x": -0.5759059, + "y": -0.81751573, + "z": -0.0006092446 + }, + "yAxis": { + "x": 0.8173344, + "y": -0.57579356, + "z": 0.020645274 + } + }, + "center": { + "x": -0.93696856, + "y": 4.743247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 122.54881, + "y": 93.77729, + "z": 18.846754 + }, + "xAxis": { + "x": 0.48684013, + "y": 0.87349087, + "z": -0.00060924876 + }, + "yAxis": { + "x": -0.87329876, + "y": 0.48674744, + "z": 0.020645274 + } + }, + "center": { + "x": 1.124723, + "y": 7.1288934 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.591576, + "y": 96.054695, + "z": 88.67356 + }, + "xAxis": { + "x": 0.7607453, + "y": -0.61684805, + "z": 0.20190366 + }, + "yAxis": { + "x": 0.6145584, + "y": 0.78463745, + "z": 0.08162164 + } + }, + "center": { + "x": 1.124723, + "y": 42.76889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.70559, + "y": 76.285835, + "z": 26.508213 + }, + "xAxis": { + "x": -0.7211881, + "y": -0.69234806, + "z": 0.023277868 + }, + "yAxis": { + "x": 0.6926509, + "y": -0.72122556, + "z": 0.008269554 + } + }, + "center": { + "x": -0.93696856, + "y": 8.703246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.4679, + "y": 95.0051, + "z": 26.508213 + }, + "xAxis": { + "x": 0.64446723, + "y": 0.7642775, + "z": 0.023277864 + }, + "yAxis": { + "x": -0.76458263, + "y": 0.64447266, + "z": 0.008269553 + } + }, + "center": { + "x": 1.124723, + "y": 11.088894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 126.66517, + "y": 75.43981, + "z": 34.20574 + }, + "xAxis": { + "x": -0.8392408, + "y": -0.5415412, + "z": 0.04907177 + }, + "yAxis": { + "x": 0.5422223, + "y": -0.8402348, + "z": 0.0006783723 + } + }, + "center": { + "x": -0.93696856, + "y": 12.663246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 124.413704, + "y": 95.955734, + "z": 34.20574 + }, + "xAxis": { + "x": 0.7777088, + "y": 0.6267064, + "z": 0.049071766 + }, + "yAxis": { + "x": -0.62748814, + "y": 0.7786258, + "z": 0.0006783702 + } + }, + "center": { + "x": 1.124723, + "y": 15.048893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 125.68133, + "y": 74.86689, + "z": 41.93581 + }, + "xAxis": { + "x": -0.9256305, + "y": -0.37075868, + "z": 0.07580378 + }, + "yAxis": { + "x": 0.3716978, + "y": -0.92835194, + "z": -0.0018431896 + } + }, + "center": { + "x": -0.93696856, + "y": 16.623247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 125.3319, + "y": 96.62884, + "z": 41.93581 + }, + "xAxis": { + "x": 0.8815611, + "y": 0.46594396, + "z": 0.07580378 + }, + "yAxis": { + "x": -0.4671638, + "y": 0.88416886, + "z": -0.0018431924 + } + }, + "center": { + "x": 1.124723, + "y": 19.008894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 124.806, + "y": 74.55145, + "z": 49.693672 + }, + "xAxis": { + "x": -0.97711295, + "y": -0.18641406, + "z": 0.10247 + }, + "yAxis": { + "x": 0.18748137, + "y": -0.98226786, + "z": 0.0007995643 + } + }, + "center": { + "x": -0.93696856, + "y": 20.583248 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 126.16926, + "y": 97.034485, + "z": 49.693672 + }, + "xAxis": { + "x": 0.95212394, + "y": 0.28802752, + "z": 0.10247 + }, + "yAxis": { + "x": -0.28963044, + "y": 0.95713824, + "z": 0.0007995622 + } + }, + "center": { + "x": 1.124723, + "y": 22.968895 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 124.087, + "y": 74.46822, + "z": 57.473537 + }, + "xAxis": { + "x": -0.9917547, + "y": 0.0045696166, + "z": 0.128069 + }, + "yAxis": { + "x": -0.0035088216, + "y": -0.9999577, + "z": 0.008507389 + } + }, + "center": { + "x": -0.93696856, + "y": 24.543247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 126.875534, + "y": 97.19278, + "z": 57.473537 + }, + "xAxis": { + "x": 0.98674744, + "y": 0.09963865, + "z": 0.128069 + }, + "yAxis": { + "x": -0.10155529, + "y": 0.99479353, + "z": 0.008507386 + } + }, + "center": { + "x": 1.124723, + "y": 26.928894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.56629, + "y": 74.58319, + "z": 65.26878 + }, + "xAxis": { + "x": -0.969006, + "y": 0.19502012, + "z": 0.1516394 + }, + "yAxis": { + "x": -0.19410028, + "y": -0.9807571, + "z": 0.020990817 + } + }, + "center": { + "x": -0.93696856, + "y": 28.503246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.405426, + "y": 97.13314, + "z": 65.26878 + }, + "xAxis": { + "x": 0.9841312, + "y": -0.092147835, + "z": 0.1516394 + }, + "yAxis": { + "x": 0.08999863, + "y": 0.9957207, + "z": 0.020990815 + } + }, + "center": { + "x": 1.124723, + "y": 30.888893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 123.278404, + "y": 74.85493, + "z": 73.072205 + }, + "xAxis": { + "x": -0.9097211, + "y": 0.37778515, + "z": 0.17229606 + }, + "yAxis": { + "x": -0.3771354, + "y": -0.9253872, + "z": 0.037781045 + } + }, + "center": { + "x": -0.93696856, + "y": 32.463245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.72027, + "y": 96.89316, + "z": 73.072205 + }, + "xAxis": { + "x": 0.9443736, + "y": -0.2801295, + "z": 0.17229606 + }, + "yAxis": { + "x": 0.2778376, + "y": 0.9598848, + "z": 0.03778104 + } + }, + "center": { + "x": 1.124723, + "y": 34.848892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 127.789444, + "y": 96.51718, + "z": 80.87631 + }, + "xAxis": { + "x": 0.8689677, + "y": -0.45724675, + "z": 0.18926321 + }, + "yAxis": { + "x": 0.45490745, + "y": 0.88863176, + "z": 0.05824752 + } + }, + "center": { + "x": 1.124723, + "y": 38.80889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 129.16542, + "y": 83.94425, + "z": 11.498676 + }, + "xAxis": { + "x": -0.7831726, + "y": -0.6166277, + "z": -0.0800684 + }, + "yAxis": { + "x": 0.61714697, + "y": -0.78656614, + "z": 0.021055596 + } + }, + "center": { + "x": -0.4242164, + "y": 1.8345448 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.82065, + "y": 87.2357, + "z": 11.498676 + }, + "xAxis": { + "x": 0.71406317, + "y": 0.6954875, + "z": -0.0800684 + }, + "yAxis": { + "x": -0.69636035, + "y": 0.7173834, + "z": 0.021055594 + } + }, + "center": { + "x": 0.45382434, + "y": 2.2107508 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 129.17229, + "y": 82.56349, + "z": 19.0718 + }, + "xAxis": { + "x": -0.888277, + "y": -0.45615858, + "z": -0.053696696 + }, + "yAxis": { + "x": 0.45598963, + "y": -0.88983995, + "z": 0.016072523 + } + }, + "center": { + "x": -0.4242164, + "y": 5.7945447 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.66878, + "y": 88.60811, + "z": 19.0718 + }, + "xAxis": { + "x": 0.83544314, + "y": 0.54694736, + "z": -0.053696703 + }, + "yAxis": { + "x": -0.54694355, + "y": 0.8370152, + "z": 0.016072521 + } + }, + "center": { + "x": 0.45382434, + "y": 6.170751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.535446, + "y": 96.76833, + "z": 87.82991 + }, + "xAxis": { + "x": 0.3965403, + "y": -0.9127561, + "z": 0.098143354 + }, + "yAxis": { + "x": 0.8981525, + "y": 0.40785596, + "z": 0.16424263 + } + }, + "center": { + "x": 0.45382434, + "y": 41.81075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 129.11086, + "y": 81.26459, + "z": 26.659145 + }, + "xAxis": { + "x": -0.9601016, + "y": -0.27836266, + "z": -0.026816012 + }, + "yAxis": { + "x": 0.27800828, + "y": -0.96044177, + "z": 0.016219052 + } + }, + "center": { + "x": -0.4242164, + "y": 9.754545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.99837, + "y": 80.05918, + "z": 34.261322 + }, + "xAxis": { + "x": -0.99594915, + "y": -0.089916974, + "z": -0.00043583394 + }, + "yAxis": { + "x": 0.08988689, + "y": -0.9957201, + "z": 0.021489682 + } + }, + "center": { + "x": -0.4242164, + "y": 13.714545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.57867, + "y": 91.11682, + "z": 34.261322 + }, + "xAxis": { + "x": 0.9809929, + "y": 0.19404308, + "z": -0.000435836 + }, + "yAxis": { + "x": -0.19398911, + "y": 0.98076826, + "z": 0.021489678 + } + }, + "center": { + "x": 0.45382434, + "y": 14.090751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.85403, + "y": 78.95542, + "z": 41.878384 + }, + "xAxis": { + "x": -0.9944734, + "y": 0.10210151, + "z": 0.024453143 + }, + "yAxis": { + "x": -0.101309724, + "y": -0.9943502, + "z": 0.031686474 + } + }, + "center": { + "x": -0.4242164, + "y": 17.674545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.60625, + "y": 92.22964, + "z": 41.878384 + }, + "xAxis": { + "x": 0.9996967, + "y": 0.0029320011, + "z": 0.024453145 + }, + "yAxis": { + "x": -0.0037064666, + "y": 0.999491, + "z": 0.031686474 + } + }, + "center": { + "x": 0.45382434, + "y": 18.050749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.69824, + "y": 77.957634, + "z": 49.509823 + }, + "xAxis": { + "x": -0.9557297, + "y": 0.29048166, + "z": 0.046916228 + }, + "yAxis": { + "x": -0.28840128, + "y": -0.95638347, + "z": 0.046426497 + } + }, + "center": { + "x": -0.4242164, + "y": 21.634546 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.5518, + "y": 77.066154, + "z": 57.1546 + }, + "xAxis": { + "x": -0.88117313, + "y": 0.46814892, + "z": 0.06610983 + }, + "yAxis": { + "x": -0.46436167, + "y": -0.88324565, + "z": 0.0651562 + } + }, + "center": { + "x": -0.4242164, + "y": 25.594545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.708336, + "y": 94.1402, + "z": 57.1546 + }, + "xAxis": { + "x": 0.92547625, + "y": -0.37299216, + "z": 0.06610983 + }, + "yAxis": { + "x": 0.36900818, + "y": 0.9271395, + "z": 0.06515619 + } + }, + "center": { + "x": 0.45382434, + "y": 25.970749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.43517, + "y": 76.27734, + "z": 64.81116 + }, + "xAxis": { + "x": -0.77360356, + "y": 0.62843114, + "z": 0.08131315 + }, + "yAxis": { + "x": -0.6225828, + "y": -0.77768356, + "z": 0.08717219 + } + }, + "center": { + "x": -0.4242164, + "y": 29.554544 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.74146, + "y": 94.9369, + "z": 64.81116 + }, + "xAxis": { + "x": 0.8353394, + "y": -0.54368764, + "z": 0.08131315 + }, + "yAxis": { + "x": 0.5374431, + "y": 0.8387824, + "z": 0.08717218 + } + }, + "center": { + "x": 0.45382434, + "y": 29.930748 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 128.36768, + "y": 75.58369, + "z": 72.477516 + }, + "xAxis": { + "x": -0.63706076, + "y": 0.765309, + "z": 0.09195524 + }, + "yAxis": { + "x": -0.75712276, + "y": -0.6436614, + "z": 0.11164767 + } + }, + "center": { + "x": -0.4242164, + "y": 33.51454 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 122.6725, + "y": 96.24008, + "z": 80.151306 + }, + "xAxis": { + "x": 0.56581044, + "y": -0.8187342, + "z": 0.09763642 + }, + "yAxis": { + "x": 0.80707824, + "y": 0.57417196, + "z": 0.13766348 + } + }, + "center": { + "x": 0.45382434, + "y": 37.85075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.018684, + "y": 87.1821, + "z": 11.451711 + }, + "xAxis": { + "x": 0.4061404, + "y": 0.91029817, + "z": 0.08004549 + }, + "yAxis": { + "x": -0.9105233, + "y": 0.41054717, + "z": -0.048972722 + } + }, + "center": { + "x": -0.7832468, + "y": 2.8772452 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 127.28458, + "y": 84.451385, + "z": 11.451711 + }, + "xAxis": { + "x": -0.3082672, + "y": -0.94792616, + "z": 0.08004549 + }, + "yAxis": { + "x": 0.94861305, + "y": -0.31262597, + "z": -0.048972722 + } + }, + "center": { + "x": 0.6453203, + "y": 1.124723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.720055, + "y": 86.533775, + "z": 19.083675 + }, + "xAxis": { + "x": 0.5743619, + "y": 0.81647027, + "z": 0.05903117 + }, + "yAxis": { + "x": -0.8163686, + "y": 0.5766266, + "z": -0.03231271 + } + }, + "center": { + "x": -0.7832468, + "y": 6.837245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 126.51899, + "y": 85.02244, + "z": 19.083675 + }, + "xAxis": { + "x": -0.48541453, + "y": -0.872289, + "z": 0.059031174 + }, + "yAxis": { + "x": 0.87242573, + "y": -0.48767737, + "z": -0.032312714 + } + }, + "center": { + "x": 0.6453203, + "y": 5.0847235 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.41555, + "y": 93.543816, + "z": 87.272896 + }, + "xAxis": { + "x": -0.7713072, + "y": 0.6198445, + "z": -0.14449228 + }, + "yAxis": { + "x": -0.6130151, + "y": -0.7845481, + "z": -0.093256354 + } + }, + "center": { + "x": 0.6453203, + "y": 40.72472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 125.687004, + "y": 85.650795, + "z": 26.704178 + }, + "xAxis": { + "x": -0.6442911, + "y": -0.7639711, + "z": 0.03517274 + }, + "yAxis": { + "x": 0.7638385, + "y": -0.6450985, + "z": -0.019966157 + } + }, + "center": { + "x": 0.6453203, + "y": 9.044723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 127.2892, + "y": 85.03487, + "z": 34.312584 + }, + "xAxis": { + "x": 0.8404907, + "y": 0.54174495, + "z": 0.009366185 + }, + "yAxis": { + "x": -0.5416295, + "y": 0.8405259, + "z": -0.012396728 + } + }, + "center": { + "x": -0.7832468, + "y": 14.757245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 124.80107, + "y": 86.34822, + "z": 34.312584 + }, + "xAxis": { + "x": -0.7789305, + "y": -0.6270404, + "z": 0.009366188 + }, + "yAxis": { + "x": 0.6269292, + "y": -0.7789776, + "z": -0.012396726 + } + }, + "center": { + "x": 0.6453203, + "y": 13.004723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.12798, + "y": 84.1663, + "z": 41.90871 + }, + "xAxis": { + "x": 0.9284036, + "y": 0.37116474, + "z": -0.017419338 + }, + "yAxis": { + "x": -0.37136286, + "y": 0.92843515, + "z": -0.009888686 + } + }, + "center": { + "x": -0.7832468, + "y": 18.717243 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 123.87569, + "y": 87.12387, + "z": 41.90871 + }, + "xAxis": { + "x": -0.8842763, + "y": -0.4666391, + "z": -0.017419338 + }, + "yAxis": { + "x": 0.46683946, + "y": -0.8842868, + "z": -0.009888683 + } + }, + "center": { + "x": 0.6453203, + "y": 16.964722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 122.92682, + "y": 87.983955, + "z": 49.492836 + }, + "xAxis": { + "x": -0.9563723, + "y": -0.28879112, + "z": -0.04417792 + }, + "yAxis": { + "x": 0.2895813, + "y": -0.9570713, + "z": -0.012536219 + } + }, + "center": { + "x": 0.6453203, + "y": 20.924723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 129.83191, + "y": 82.16858, + "z": 57.0657 + }, + "xAxis": { + "x": 0.99754286, + "y": -0.004641298, + "z": -0.069904655 + }, + "yAxis": { + "x": 0.0032334044, + "y": 0.99978995, + "z": -0.020239908 + } + }, + "center": { + "x": -0.7832468, + "y": 26.637245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.97132, + "y": 88.93153, + "z": 57.0657 + }, + "xAxis": { + "x": -0.9925111, + "y": -0.1001754, + "z": -0.069904655 + }, + "yAxis": { + "x": 0.10181156, + "y": -0.9945978, + "z": -0.020239906 + } + }, + "center": { + "x": 0.6453203, + "y": 24.884722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 130.66298, + "y": 81.04019, + "z": 64.62845 + }, + "xAxis": { + "x": 0.97617275, + "y": -0.1957539, + "z": -0.09363339 + }, + "yAxis": { + "x": 0.19349529, + "y": 0.9805558, + "z": -0.032710437 + } + }, + "center": { + "x": -0.7832468, + "y": 30.597244 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.02631, + "y": 89.96637, + "z": 64.62845 + }, + "xAxis": { + "x": -0.9913354, + "y": 0.0921247, + "z": -0.09363338 + }, + "yAxis": { + "x": -0.08941815, + "y": -0.9954569, + "z": -0.032710433 + } + }, + "center": { + "x": 0.6453203, + "y": 28.84472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 120.10849, + "y": 91.084946, + "z": 72.18262 + }, + "xAxis": { + "x": -0.9528894, + "y": 0.28088748, + "z": -0.114473 + }, + "yAxis": { + "x": -0.27692634, + "y": -0.95961636, + "z": -0.04947948 + } + }, + "center": { + "x": 0.6453203, + "y": 32.80472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 119.23354, + "y": 92.28061, + "z": 79.730064 + }, + "xAxis": { + "x": -0.87861687, + "y": 0.459024, + "z": -0.13164088 + }, + "yAxis": { + "x": -0.4536712, + "y": -0.8884222, + "z": -0.0699173 + } + }, + "center": { + "x": 0.6453203, + "y": 36.76472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.893845, + "y": 86.482086, + "z": 11.284298 + }, + "xAxis": { + "x": 0.78299123, + "y": 0.6152333, + "z": 0.09172082 + }, + "yAxis": { + "x": -0.62010294, + "y": 0.78363574, + "z": 0.037247688 + } + }, + "center": { + "x": -1.8345448, + "y": 3.3899975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.30753, + "y": 85.685875, + "z": 11.284298 + }, + "xAxis": { + "x": -0.71402925, + "y": -0.6940818, + "z": 0.09172082 + }, + "yAxis": { + "x": 0.6989922, + "y": -0.7141586, + "z": 0.037247688 + } + }, + "center": { + "x": 1.603463, + "y": 0.45382434 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 120.553246, + "y": 86.82497, + "z": 19.047337 + }, + "xAxis": { + "x": 0.88813347, + "y": 0.45491335, + "z": 0.06536652 + }, + "yAxis": { + "x": -0.4579454, + "y": 0.8879726, + "z": 0.04231657 + } + }, + "center": { + "x": -1.8345448, + "y": 7.3499975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 131.6878, + "y": 85.275635, + "z": 19.047337 + }, + "xAxis": { + "x": -0.8354312, + "y": -0.54569393, + "z": 0.06536652 + }, + "yAxis": { + "x": 0.54869235, + "y": -0.8349527, + "z": 0.04231657 + } + }, + "center": { + "x": 1.603463, + "y": 4.4138246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.78767, + "y": 88.41295, + "z": 87.52185 + }, + "xAxis": { + "x": -0.39762512, + "y": 0.91346365, + "z": -0.086478084 + }, + "yAxis": { + "x": -0.9079319, + "y": -0.40531582, + "z": -0.106670864 + } + }, + "center": { + "x": 1.603463, + "y": 40.05382 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.46603, + "y": 87.09459, + "z": 26.787575 + }, + "xAxis": { + "x": 0.9600242, + "y": 0.2772567, + "z": 0.038500484 + }, + "yAxis": { + "x": -0.27877745, + "y": 0.9594273, + "z": 0.042218756 + } + }, + "center": { + "x": -1.8345448, + "y": 11.309998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 130.8084, + "y": 84.91161, + "z": 26.787575 + }, + "xAxis": { + "x": -0.9255868, + "y": -0.37657237, + "z": 0.038500488 + }, + "yAxis": { + "x": 0.378022, + "y": -0.9248335, + "z": 0.04221876 + } + }, + "center": { + "x": 1.603463, + "y": 8.373823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 122.612885, + "y": 87.243706, + "z": 34.499878 + }, + "xAxis": { + "x": 0.9959635, + "y": 0.08893521, + "z": 0.012131643 + }, + "yAxis": { + "x": -0.089327596, + "y": 0.9953164, + "z": 0.036957923 + } + }, + "center": { + "x": -1.8345448, + "y": 15.269998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 129.68355, + "y": 84.642845, + "z": 34.499878 + }, + "xAxis": { + "x": -0.98111033, + "y": -0.19306827, + "z": 0.012131645 + }, + "yAxis": { + "x": 0.1933905, + "y": -0.98042554, + "z": 0.036957927 + } + }, + "center": { + "x": 1.603463, + "y": 12.333823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 123.9657, + "y": 87.22959, + "z": 42.180164 + }, + "xAxis": { + "x": 0.99460185, + "y": -0.10297883, + "z": -0.012749732 + }, + "yAxis": { + "x": 0.10328943, + "y": 0.9942921, + "z": 0.026731636 + } + }, + "center": { + "x": -1.8345448, + "y": 19.229996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.33673, + "y": 84.51477, + "z": 42.180164 + }, + "xAxis": { + "x": -0.99991655, + "y": -0.0020730267, + "z": -0.0127497325 + }, + "yAxis": { + "x": 0.001731606, + "y": -0.9996411, + "z": 0.026731638 + } + }, + "center": { + "x": 1.603463, + "y": 16.293823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.48865, + "y": 87.01564, + "z": 49.825554 + }, + "xAxis": { + "x": 0.95599025, + "y": -0.2912782, + "z": -0.03520924 + }, + "yAxis": { + "x": 0.29184002, + "y": 0.9563928, + "z": 0.011923938 + } + }, + "center": { + "x": -1.8345448, + "y": 23.189997 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 126.79973, + "y": 84.56755, + "z": 49.825554 + }, + "xAxis": { + "x": -0.9812993, + "y": 0.1892406, + "z": -0.03520924 + }, + "yAxis": { + "x": -0.18975703, + "y": -0.98175865, + "z": 0.01192394 + } + }, + "center": { + "x": 1.603463, + "y": 20.253824 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 127.13949, + "y": 86.57277, + "z": 57.43448 + }, + "xAxis": { + "x": 0.88157874, + "y": -0.4688914, + "z": -0.054403413 + }, + "yAxis": { + "x": 0.46924326, + "y": 0.8830419, + "z": -0.006909076 + } + }, + "center": { + "x": -1.8345448, + "y": 27.149996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.111496, + "y": 84.83455, + "z": 57.43448 + }, + "xAxis": { + "x": -0.9259577, + "y": 0.37368795, + "z": -0.054403417 + }, + "yAxis": { + "x": -0.37388414, + "y": -0.9274497, + "z": -0.0069090733 + } + }, + "center": { + "x": 1.603463, + "y": 24.213823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.87119, + "y": 85.880486, + "z": 65.00674 + }, + "xAxis": { + "x": 0.77416193, + "y": -0.6291483, + "z": -0.069611445 + }, + "yAxis": { + "x": 0.62883687, + "y": 0.77699405, + "z": -0.029060142 + } + }, + "center": { + "x": -1.8345448, + "y": 31.109995 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 123.31666, + "y": 85.34109, + "z": 65.00674 + }, + "xAxis": { + "x": -0.83597, + "y": 0.5443422, + "z": -0.069611445 + }, + "yAxis": { + "x": -0.54373497, + "y": -0.8387537, + "z": -0.029060138 + } + }, + "center": { + "x": 1.603463, + "y": 28.173822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 130.63368, + "y": 84.92765, + "z": 72.5435 + }, + "xAxis": { + "x": 0.6377737, + "y": -0.7660305, + "z": -0.0802622 + }, + "yAxis": { + "x": 0.7646274, + "y": 0.6422317, + "z": -0.053697392 + } + }, + "center": { + "x": -1.8345448, + "y": 35.069996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.46382, + "y": 86.1035, + "z": 72.5435 + }, + "xAxis": { + "x": -0.7147157, + "y": 0.69479454, + "z": -0.08026219 + }, + "yAxis": { + "x": -0.6929309, + "y": -0.7190017, + "z": -0.05369739 + } + }, + "center": { + "x": 1.603463, + "y": 32.133823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.603806, + "y": 87.1285, + "z": 80.04729 + }, + "xAxis": { + "x": -0.5667485, + "y": 0.81939477, + "z": -0.08595568 + }, + "yAxis": { + "x": -0.8158688, + "y": -0.57269084, + "z": -0.079895586 + } + }, + "center": { + "x": 1.603463, + "y": 36.093822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.35182, + "y": 82.33436, + "z": 11.834151 + }, + "xAxis": { + "x": -0.91327053, + "y": 0.40724695, + "z": 0.009321014 + }, + "yAxis": { + "x": -0.40632862, + "y": -0.90911186, + "z": -0.09172082 + } + }, + "center": { + "x": -2.8772452, + "y": 3.030967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 135.39424, + "y": 90.18275, + "z": 11.834151 + }, + "xAxis": { + "x": 0.95099837, + "y": -0.3090554, + "z": 0.009321013 + }, + "yAxis": { + "x": 0.30857903, + "y": 0.9467662, + "z": -0.09172082 + } + }, + "center": { + "x": 2.6894908, + "y": 0.6453203 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.299995, + "y": 83.43502, + "z": 19.732986 + }, + "xAxis": { + "x": -0.81819034, + "y": 0.5743563, + "z": 0.02606644 + }, + "yAxis": { + "x": -0.57462144, + "y": -0.8153588, + "z": -0.07071249 + } + }, + "center": { + "x": -2.8772452, + "y": 6.990967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 135.48376, + "y": 89.36491, + "z": 19.713629 + }, + "xAxis": { + "x": -0.48578933, + "y": -0.87121093, + "z": 0.0707125 + }, + "yAxis": { + "x": 0.87399894, + "y": -0.48522824, + "z": 0.026066437 + } + }, + "center": { + "x": 2.6894908, + "y": 4.6053205 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 120.95953, + "y": 84.08458, + "z": 89.18917 + }, + "xAxis": { + "x": -0.7724978, + "y": 0.62096125, + "z": -0.13286941 + }, + "yAxis": { + "x": -0.62238944, + "y": -0.7818967, + "z": -0.03562223 + } + }, + "center": { + "x": 2.6894908, + "y": 40.245316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.663025, + "y": 84.58541, + "z": 27.616547 + }, + "xAxis": { + "x": -0.69255996, + "y": 0.7203341, + "z": 0.03846351 + }, + "yAxis": { + "x": -0.7213246, + "y": -0.69101024, + "z": -0.046857428 + } + }, + "center": { + "x": -2.8772452, + "y": 10.950967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 135.2973, + "y": 88.192764, + "z": 27.599483 + }, + "xAxis": { + "x": -0.6447435, + "y": -0.76296145, + "z": 0.04685743 + }, + "yAxis": { + "x": 0.7643985, + "y": -0.6435957, + "z": 0.03846351 + } + }, + "center": { + "x": 2.6894908, + "y": 8.565319 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 117.44225, + "y": 85.7052, + "z": 35.474323 + }, + "xAxis": { + "x": -0.54109746, + "y": 0.8396983, + "z": 0.046046667 + }, + "yAxis": { + "x": -0.84092885, + "y": -0.5407361, + "z": -0.021051481 + } + }, + "center": { + "x": -2.8772452, + "y": 14.910967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 134.6946, + "y": 86.996864, + "z": 35.460903 + }, + "xAxis": { + "x": -0.7794722, + "y": -0.626083, + "z": 0.021051483 + }, + "yAxis": { + "x": 0.6263132, + "y": -0.77821046, + "z": 0.046046667 + } + }, + "center": { + "x": 2.6894908, + "y": 12.52532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 118.62336, + "y": 86.71521, + "z": 43.29676 + }, + "xAxis": { + "x": -0.36949092, + "y": 0.9279662, + "z": 0.048531123 + }, + "yAxis": { + "x": -0.92894244, + "y": -0.37017968, + "z": 0.005736217 + } + }, + "center": { + "x": -2.8772452, + "y": 18.870966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 133.59547, + "y": 85.58752, + "z": 43.29676 + }, + "xAxis": { + "x": 0.4649286, + "y": -0.88401705, + "z": 0.048531126 + }, + "yAxis": { + "x": 0.8849156, + "y": 0.4657161, + "z": 0.005736217 + } + }, + "center": { + "x": 2.6894908, + "y": 16.48532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 120.17698, + "y": 87.54037, + "z": 51.07565 + }, + "xAxis": { + "x": -0.18418492, + "y": 0.98182285, + "z": 0.04582358 + }, + "yAxis": { + "x": -0.98206013, + "y": -0.18574625, + "z": 0.03249967 + } + }, + "center": { + "x": -2.8772452, + "y": 22.830967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 132.13713, + "y": 84.60371, + "z": 51.07565 + }, + "xAxis": { + "x": 0.2863055, + "y": -0.957042, + "z": 0.045823585 + }, + "yAxis": { + "x": 0.9571139, + "y": 0.2878831, + "z": 0.03249967 + } + }, + "center": { + "x": 2.6894908, + "y": 20.44532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 122.05971, + "y": 88.11258, + "z": 58.804405 + }, + "xAxis": { + "x": 0.007861485, + "y": 0.9992458, + "z": 0.03802572 + }, + "yAxis": { + "x": -0.9982871, + "y": 0.005637889, + "z": 0.05823379 + } + }, + "center": { + "x": -2.8772452, + "y": 26.790966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 130.50418, + "y": 84.05564, + "z": 58.808445 + }, + "xAxis": { + "x": -0.9933558, + "y": -0.099262506, + "z": -0.05823379 + }, + "yAxis": { + "x": 0.09715193, + "y": -0.9945429, + "z": 0.03802572 + } + }, + "center": { + "x": 2.6894908, + "y": 24.40532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 124.2158, + "y": 88.37322, + "z": 66.478325 + }, + "xAxis": { + "x": 0.19943611, + "y": 0.9795808, + "z": 0.02543038 + }, + "yAxis": { + "x": -0.9770138, + "y": 0.19678546, + "z": 0.08197215 + } + }, + "center": { + "x": -2.8772452, + "y": 30.750965 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 128.20815, + "y": 83.35119, + "z": 66.478325 + }, + "xAxis": { + "x": -0.09542852, + "y": -0.9951114, + "z": 0.025430381 + }, + "yAxis": { + "x": 0.9922802, + "y": -0.09306219, + "z": 0.08197215 + } + }, + "center": { + "x": 2.6894908, + "y": 28.365318 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 126.57926, + "y": 88.275375, + "z": 74.094765 + }, + "xAxis": { + "x": 0.38334444, + "y": 0.9235662, + "z": 0.008510575 + }, + "yAxis": { + "x": -0.9190394, + "y": 0.380518, + "z": 0.10282327 + } + }, + "center": { + "x": -2.8772452, + "y": 34.710964 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 126.09511, + "y": 83.33558, + "z": 74.11363 + }, + "xAxis": { + "x": -0.95392746, + "y": 0.28186834, + "z": -0.102823265 + }, + "yAxis": { + "x": -0.28420362, + "y": -0.95872617, + "z": 0.008510579 + } + }, + "center": { + "x": 2.6894908, + "y": 32.325317 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 123.31281, + "y": 83.42498, + "z": 81.653244 + }, + "xAxis": { + "x": -0.46208397, + "y": -0.8867537, + "z": -0.012098281 + }, + "yAxis": { + "x": 0.879738, + "y": -0.46006536, + "z": 0.12000409 + } + }, + "center": { + "x": 2.6894908, + "y": 36.285316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.056564, + "y": 77.20999, + "z": 11.67246 + }, + "xAxis": { + "x": -0.6196685, + "y": 0.7833343, + "z": 0.048972722 + }, + "yAxis": { + "x": -0.78485274, + "y": -0.61878115, + "z": -0.03340662 + } + }, + "center": { + "x": -3.3899975, + "y": 1.979669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 134.15508, + "y": 95.20473, + "z": 11.67246 + }, + "xAxis": { + "x": 0.69852847, + "y": -0.7139045, + "z": 0.048972722 + }, + "yAxis": { + "x": 0.7155078, + "y": 0.6978056, + "z": -0.033406623 + } + }, + "center": { + "x": 3.3603892, + "y": 1.603463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.00921, + "y": 78.26934, + "z": 19.61809 + }, + "xAxis": { + "x": -0.4572741, + "y": 0.887683, + "z": 0.054030728 + }, + "yAxis": { + "x": -0.88913286, + "y": -0.45759583, + "z": -0.006984985 + } + }, + "center": { + "x": -3.3899975, + "y": 5.939669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 135.36555, + "y": 94.5379, + "z": 19.605886 + }, + "xAxis": { + "x": -0.8361433, + "y": -0.5484666, + "z": 0.0069849887 + }, + "yAxis": { + "x": 0.5479943, + "y": -0.8347352, + "z": 0.054030728 + } + }, + "center": { + "x": 3.3603892, + "y": 5.5634627 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 125.736275, + "y": 83.47908, + "z": 90.100464 + }, + "xAxis": { + "x": -0.909905, + "y": -0.4037428, + "z": -0.09520838 + }, + "yAxis": { + "x": 0.38870928, + "y": -0.91001534, + "z": 0.14414276 + } + }, + "center": { + "x": 3.3603892, + "y": 41.203457 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.38867, + "y": 79.56983, + "z": 27.572704 + }, + "xAxis": { + "x": -0.27787176, + "y": 0.95910394, + "z": 0.053916242 + }, + "yAxis": { + "x": -0.96001065, + "y": -0.2792541, + "z": 0.019917054 + } + }, + "center": { + "x": -3.3899975, + "y": 9.899668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.17131, + "y": 93.29379, + "z": 27.565905 + }, + "xAxis": { + "x": -0.92536354, + "y": -0.3785573, + "z": -0.01991705 + }, + "yAxis": { + "x": 0.37708735, + "y": -0.92460704, + "z": 0.053916246 + } + }, + "center": { + "x": 3.3603892, + "y": 9.523462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.23323, + "y": 81.025475, + "z": 35.523125 + }, + "xAxis": { + "x": -0.088198796, + "y": 0.99491495, + "z": 0.048633568 + }, + "yAxis": { + "x": -0.99482435, + "y": -0.090453476, + "z": 0.046289206 + } + }, + "center": { + "x": -3.3899975, + "y": 13.859668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 136.52667, + "y": 91.836815, + "z": 35.522655 + }, + "xAxis": { + "x": -0.9798179, + "y": -0.19445845, + "z": -0.0462892 + }, + "yAxis": { + "x": 0.19222577, + "y": -0.9801449, + "z": 0.04863357 + } + }, + "center": { + "x": 3.3603892, + "y": 13.483462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 115.56368, + "y": 82.54449, + "z": 43.456318 + }, + "xAxis": { + "x": 0.1046217, + "y": 0.9937712, + "z": 0.03838109 + }, + "yAxis": { + "x": -0.99226654, + "y": 0.10171571, + "z": 0.07114108 + } + }, + "center": { + "x": -3.3899975, + "y": 17.819668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 136.20009, + "y": 90.05657, + "z": 43.456318 + }, + "xAxis": { + "x": 0.00035198772, + "y": -0.9992631, + "z": 0.038381092 + }, + "yAxis": { + "x": 0.9974615, + "y": 0.0030838388, + "z": 0.07114108 + } + }, + "center": { + "x": 3.3603892, + "y": 17.443464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 116.38258, + "y": 84.0327, + "z": 51.359917 + }, + "xAxis": { + "x": 0.2933485, + "y": 0.9557156, + "z": 0.023543835 + }, + "yAxis": { + "x": -0.9524333, + "y": 0.29003668, + "z": 0.09353937 + } + }, + "center": { + "x": -3.3899975, + "y": 21.779669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 135.54205, + "y": 88.49057, + "z": 51.359917 + }, + "xAxis": { + "x": -0.19132827, + "y": -0.98124367, + "z": 0.023543837 + }, + "yAxis": { + "x": 0.97763157, + "y": -0.1883796, + "z": 0.09353937 + } + }, + "center": { + "x": 3.3603892, + "y": 21.403465 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 117.67414, + "y": 85.39709, + "z": 59.22265 + }, + "xAxis": { + "x": 0.47089398, + "y": 0.8821774, + "z": 0.0046790075 + }, + "yAxis": { + "x": -0.87682045, + "y": 0.4674371, + "z": 0.11264294 + } + }, + "center": { + "x": -3.3899975, + "y": 25.739668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 134.66031, + "y": 87.10886, + "z": 59.24424 + }, + "xAxis": { + "x": -0.9210729, + "y": 0.37274152, + "z": -0.11264294 + }, + "yAxis": { + "x": -0.37561658, + "y": -0.92676336, + "z": 0.0046790102 + } + }, + "center": { + "x": 3.3603892, + "y": 25.363464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.40481, + "y": 86.54929, + "z": 67.03478 + }, + "xAxis": { + "x": 0.6305906, + "y": 0.7759182, + "z": -0.017504932 + }, + "yAxis": { + "x": -0.76826775, + "y": 0.62725484, + "z": 0.12773435 + } + }, + "center": { + "x": -3.3899975, + "y": 29.699667 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 132.80092, + "y": 85.67041, + "z": 67.03478 + }, + "xAxis": { + "x": -0.54559207, + "y": -0.83786803, + "z": -0.01750493 + }, + "yAxis": { + "x": 0.8299095, + "y": -0.54307836, + "z": 0.12773435 + } + }, + "center": { + "x": 3.3603892, + "y": 29.323463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.52456, + "y": 87.40891, + "z": 74.78848 + }, + "xAxis": { + "x": 0.76644105, + "y": 0.6409285, + "z": -0.042174883 + }, + "yAxis": { + "x": -0.63085175, + "y": 0.763488, + "z": 0.13824685 + } + }, + "center": { + "x": -3.3899975, + "y": 33.659668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 131.06369, + "y": 84.59785, + "z": 74.82457 + }, + "xAxis": { + "x": -0.707565, + "y": 0.6929932, + "z": -0.13824685 + }, + "yAxis": { + "x": -0.6948714, + "y": -0.7178962, + "z": -0.04217488 + } + }, + "center": { + "x": 3.3603892, + "y": 33.28346 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 128.4048, + "y": 83.84123, + "z": 82.47812 + }, + "xAxis": { + "x": -0.8178485, + "y": -0.5713534, + "z": -0.06840438 + }, + "yAxis": { + "x": 0.5586339, + "y": -0.8168561, + "z": 0.14378566 + } + }, + "center": { + "x": 3.3603892, + "y": 37.243458 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 121.1407, + "y": 73.65382, + "z": 12.524211 + }, + "xAxis": { + "x": -0.40782055, + "y": -0.9124516, + "z": -0.03338371 + }, + "yAxis": { + "x": 0.9130448, + "y": -0.40731534, + "z": -0.021055596 + } + }, + "center": { + "x": -3.030967, + "y": 0.93696856 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 129.71997, + "y": 98.31219, + "z": 12.524211 + }, + "xAxis": { + "x": 0.30971187, + "y": 0.95024425, + "z": -0.03338371 + }, + "yAxis": { + "x": -0.9507811, + "y": 0.30914712, + "z": -0.021055594 + } + }, + "center": { + "x": 3.1688933, + "y": 2.6894908 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 119.63859, + "y": 74.05339, + "z": 20.411057 + }, + "xAxis": { + "x": -0.81765306, + "y": 0.5744697, + "z": 0.037790537 + }, + "yAxis": { + "x": -0.57521784, + "y": -0.8179075, + "z": -0.012319458 + } + }, + "center": { + "x": -3.030967, + "y": 4.896969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 131.52766, + "y": 98.15031, + "z": 20.416151 + }, + "xAxis": { + "x": 0.4861147, + "y": 0.8738082, + "z": -0.012319462 + }, + "yAxis": { + "x": -0.8734765, + "y": 0.4853974, + "z": -0.037790537 + } + }, + "center": { + "x": 3.1688933, + "y": 6.6494904 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 129.97806, + "y": 86.65058, + "z": 91.51495 + }, + "xAxis": { + "x": 0.76347613, + "y": -0.61710376, + "z": 0.19049169 + }, + "yAxis": { + "x": 0.62476766, + "y": 0.7804349, + "z": 0.0242221 + } + }, + "center": { + "x": 3.1688933, + "y": 42.289486 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.16579, + "y": 74.744064, + "z": 28.331043 + }, + "xAxis": { + "x": -0.6917086, + "y": 0.720432, + "z": 0.050169136 + }, + "yAxis": { + "x": -0.7208898, + "y": -0.6929533, + "z": 0.011560326 + } + }, + "center": { + "x": -3.030967, + "y": 8.856968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 133.0745, + "y": 97.564705, + "z": 28.34339 + }, + "xAxis": { + "x": 0.644107, + "y": 0.76484805, + "z": 0.011560322 + }, + "yAxis": { + "x": -0.7635622, + "y": 0.64378244, + "z": -0.050169136 + } + }, + "center": { + "x": 3.1688933, + "y": 10.60949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.780876, + "y": 75.82327, + "z": 36.29377 + }, + "xAxis": { + "x": -0.8393659, + "y": -0.54228145, + "z": 0.037358854 + }, + "yAxis": { + "x": 0.53994143, + "y": -0.8397207, + "z": -0.05772652 + } + }, + "center": { + "x": -3.030967, + "y": 12.816968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.28358, + "y": 96.61273, + "z": 36.29377 + }, + "xAxis": { + "x": 0.7777555, + "y": 0.6274557, + "z": 0.03735885 + }, + "yAxis": { + "x": -0.6251659, + "y": 0.7783542, + "z": -0.057726525 + } + }, + "center": { + "x": 3.1688933, + "y": 14.56949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 116.36806, + "y": 77.03715, + "z": 44.229412 + }, + "xAxis": { + "x": -0.36805087, + "y": 0.92785615, + "z": 0.06017888 + }, + "yAxis": { + "x": -0.92619675, + "y": -0.37155053, + "z": 0.06410728 + } + }, + "center": { + "x": -3.030967, + "y": 16.77697 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.09073, + "y": 95.365486, + "z": 44.25427 + }, + "xAxis": { + "x": 0.8820411, + "y": 0.46679094, + "z": 0.06410728 + }, + "yAxis": { + "x": -0.46348497, + "y": 0.88405895, + "z": -0.06017888 + } + }, + "center": { + "x": 3.1688933, + "y": 18.529491 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 116.14057, + "y": 78.4792, + "z": 52.181835 + }, + "xAxis": { + "x": -0.18249232, + "y": 0.98152834, + "z": 0.05743411 + }, + "yAxis": { + "x": -0.9781215, + "y": -0.18717213, + "z": 0.09080107 + } + }, + "center": { + "x": -3.030967, + "y": 20.736969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.44687, + "y": 93.90515, + "z": 52.211483 + }, + "xAxis": { + "x": 0.95304734, + "y": 0.28888735, + "z": 0.09080107 + }, + "yAxis": { + "x": -0.28459132, + "y": 0.9569269, + "z": -0.05743411 + } + }, + "center": { + "x": 3.1688933, + "y": 22.489492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.2011, + "y": 80.19919, + "z": 60.152134 + }, + "xAxis": { + "x": -0.9931902, + "y": 0.0039294795, + "z": 0.116437756 + }, + "yAxis": { + "x": -0.009765724, + "y": -0.99872166, + "z": -0.049595293 + } + }, + "center": { + "x": -3.030967, + "y": 24.696968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 135.31982, + "y": 92.32193, + "z": 60.152134 + }, + "xAxis": { + "x": 0.98810774, + "y": 0.10042604, + "z": 0.116437756 + }, + "yAxis": { + "x": -0.09520316, + "y": 0.9942216, + "z": -0.049595296 + } + }, + "center": { + "x": 3.1688933, + "y": 26.449492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 116.99114, + "y": 81.73601, + "z": 68.06357 + }, + "xAxis": { + "x": -0.9708369, + "y": 0.1945776, + "z": 0.14005458 + }, + "yAxis": { + "x": -0.20150313, + "y": -0.9787904, + "z": -0.036956817 + } + }, + "center": { + "x": -3.030967, + "y": 28.656967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 134.6956, + "y": 90.710625, + "z": 68.06357 + }, + "xAxis": { + "x": 0.98590547, + "y": -0.09151544, + "z": 0.14005458 + }, + "yAxis": { + "x": 0.097567126, + "y": 0.99454254, + "z": -0.03695682 + } + }, + "center": { + "x": 3.1688933, + "y": 30.40949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 118.369125, + "y": 82.89366, + "z": 75.89806 + }, + "xAxis": { + "x": 0.38551927, + "y": 0.92248315, + "z": 0.019993303 + }, + "yAxis": { + "x": -0.91190106, + "y": 0.37761253, + "z": 0.16076462 + } + }, + "center": { + "x": -3.030967, + "y": 32.616966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 133.57886, + "y": 89.16709, + "z": 75.93421 + }, + "xAxis": { + "x": 0.94652337, + "y": -0.27972883, + "z": 0.16076462 + }, + "yAxis": { + "x": 0.2864802, + "y": 0.9578775, + "z": -0.019993309 + } + }, + "center": { + "x": 3.1688933, + "y": 34.369488 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 131.99275, + "y": 87.78465, + "z": 83.75404 + }, + "xAxis": { + "x": 0.87144035, + "y": -0.45714587, + "z": 0.17779012 + }, + "yAxis": { + "x": 0.46444145, + "y": 0.8856036, + "z": 0.0006581861 + } + }, + "center": { + "x": 3.1688933, + "y": 38.329487 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 126.261986, + "y": 74.34928, + "z": 12.790135 + }, + "xAxis": { + "x": -0.78551275, + "y": -0.6184651, + "z": -0.021692501 + }, + "yAxis": { + "x": 0.6184228, + "y": -0.7857892, + "z": 0.0094140945 + } + }, + "center": { + "x": -1.979669, + "y": 0.4242164 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 124.70007, + "y": 97.08259, + "z": 12.790135 + }, + "xAxis": { + "x": 0.7161973, + "y": 0.6975606, + "z": -0.021692503 + }, + "yAxis": { + "x": -0.69754755, + "y": 0.7164767, + "z": 0.009414094 + } + }, + "center": { + "x": 2.2107508, + "y": 3.3603892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 124.79432, + "y": 73.624016, + "z": 20.551039 + }, + "xAxis": { + "x": -0.45708954, + "y": 0.88940984, + "z": -0.0043951427 + }, + "yAxis": { + "x": -0.88941795, + "y": -0.4570703, + "z": 0.0047367285 + } + }, + "center": { + "x": -1.979669, + "y": 4.3842163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 126.360344, + "y": 97.90032, + "z": 20.551107 + }, + "xAxis": { + "x": 0.836482, + "y": 0.54797393, + "z": 0.004736725 + }, + "yAxis": { + "x": -0.54799217, + "y": 0.8364719, + "z": 0.0043951413 + } + }, + "center": { + "x": 2.2107508, + "y": 7.3203893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 130.58942, + "y": 91.78723, + "z": 91.36311 + }, + "xAxis": { + "x": 0.3858726, + "y": -0.90935045, + "z": 0.15551233 + }, + "yAxis": { + "x": 0.9001009, + "y": 0.40805653, + "z": 0.15267028 + } + }, + "center": { + "x": 2.2107508, + "y": 42.960384 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 123.146614, + "y": 73.33824, + "z": 28.353231 + }, + "xAxis": { + "x": -0.2788684, + "y": 0.9603187, + "z": -0.004514308 + }, + "yAxis": { + "x": -0.9598877, + "y": -0.27859452, + "z": 0.03163481 + } + }, + "center": { + "x": -1.979669, + "y": 8.344215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 127.95271, + "y": 98.30574, + "z": 28.358656 + }, + "xAxis": { + "x": 0.9253105, + "y": 0.37788847, + "z": 0.031634808 + }, + "yAxis": { + "x": -0.3782061, + "y": 0.9257104, + "z": 0.0045143054 + } + }, + "center": { + "x": 2.2107508, + "y": 11.28039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 121.45957, + "y": 73.613304, + "z": 36.20512 + }, + "xAxis": { + "x": -0.99427545, + "y": -0.08974037, + "z": 0.057991605 + }, + "yAxis": { + "x": 0.090452425, + "y": -0.9958529, + "z": 0.009767116 + } + }, + "center": { + "x": -1.979669, + "y": 12.304215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 129.39862, + "y": 98.318985, + "z": 36.20512 + }, + "xAxis": { + "x": 0.979347, + "y": 0.19369164, + "z": 0.057991605 + }, + "yAxis": { + "x": -0.19456546, + "y": 0.9808409, + "z": 0.009767112 + } + }, + "center": { + "x": 2.2107508, + "y": 15.24039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 120.454185, + "y": 73.86489, + "z": 44.06881 + }, + "xAxis": { + "x": 0.10108256, + "y": 0.99467784, + "z": -0.019956298 + }, + "yAxis": { + "x": -0.99128985, + "y": 0.10239983, + "z": 0.08281729 + } + }, + "center": { + "x": -1.979669, + "y": 16.264217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 130.62497, + "y": 97.97491, + "z": 44.08138 + }, + "xAxis": { + "x": 0.99656206, + "y": 0.0023008995, + "z": 0.08281729 + }, + "yAxis": { + "x": -0.003966787, + "y": 0.999793, + "z": 0.019956296 + } + }, + "center": { + "x": 2.2107508, + "y": 19.20039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 119.408005, + "y": 74.83278, + "z": 51.977196 + }, + "xAxis": { + "x": -0.951043, + "y": 0.2906104, + "z": 0.10517957 + }, + "yAxis": { + "x": -0.28854358, + "y": -0.9568378, + "z": 0.03469921 + } + }, + "center": { + "x": -1.979669, + "y": 20.224218 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.56694, + "y": 97.32176, + "z": 51.977196 + }, + "xAxis": { + "x": 0.9763093, + "y": -0.18909618, + "z": 0.10517957 + }, + "yAxis": { + "x": 0.18643208, + "y": 0.9818549, + "z": 0.034699205 + } + }, + "center": { + "x": 2.2107508, + "y": 23.16039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.90271, + "y": 75.79349, + "z": 59.881596 + }, + "xAxis": { + "x": -0.87504643, + "y": 0.46782312, + "z": 0.12423862 + }, + "yAxis": { + "x": -0.4648906, + "y": -0.8837537, + "z": 0.05344218 + } + }, + "center": { + "x": -1.979669, + "y": 24.184217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.17035, + "y": 96.41945, + "z": 59.881596 + }, + "xAxis": { + "x": 0.91934925, + "y": -0.3733118, + "z": 0.12423862 + }, + "yAxis": { + "x": 0.3694808, + "y": 0.92770034, + "z": 0.05344218 + } + }, + "center": { + "x": 2.2107508, + "y": 27.12039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 118.79419, + "y": 76.893234, + "z": 67.78328 + }, + "xAxis": { + "x": -0.76615405, + "y": 0.62738293, + "z": 0.1392787 + }, + "yAxis": { + "x": -0.623501, + "y": -0.77817035, + "z": 0.07548134 + } + }, + "center": { + "x": -1.979669, + "y": 28.144217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.3938, + "y": 95.3372, + "z": 67.78328 + }, + "xAxis": { + "x": 0.827821, + "y": -0.5434278, + "z": 0.1392787 + }, + "yAxis": { + "x": 0.5383051, + "y": 0.839363, + "z": 0.07548133 + } + }, + "center": { + "x": 2.2107508, + "y": 31.080389 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 119.0755, + "y": 77.7721, + "z": 75.66111 + }, + "xAxis": { + "x": 0.7584183, + "y": 0.6440527, + "z": -0.09998901 + }, + "yAxis": { + "x": -0.62845534, + "y": 0.7632977, + "z": 0.14973499 + } + }, + "center": { + "x": -1.979669, + "y": 32.104214 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 132.21008, + "y": 94.150986, + "z": 75.67106 + }, + "xAxis": { + "x": 0.70516187, + "y": -0.6930557, + "z": 0.14973499 + }, + "yAxis": { + "x": 0.68656486, + "y": 0.7201603, + "z": 0.099989004 + } + }, + "center": { + "x": 2.2107508, + "y": 35.040386 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 131.60733, + "y": 92.940735, + "z": 83.53425 + }, + "xAxis": { + "x": 0.55597824, + "y": -0.8165761, + "z": 0.15521479 + }, + "yAxis": { + "x": 0.8086923, + "y": 0.574569, + "z": 0.12604482 + } + }, + "center": { + "x": 2.2107508, + "y": 39.000385 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 123.12067, + "y": 80.470474, + "z": 10.85 + }, + "xAxis": { + "x": 0.78841937, + "y": -0.6151381, + "z": 0.0 + }, + "yAxis": { + "x": 0.614087, + "y": 0.7870721, + "z": 0.05843533 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 128.46704, + "y": 91.32526, + "z": 10.85 + }, + "xAxis": { + "x": -0.8486768, + "y": 0.5289118, + "z": -8.6736174e-19 + }, + "yAxis": { + "x": -0.528008, + "y": -0.84722656, + "z": 0.05843533 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.560905, + "y": 80.30429, + "z": 18.610735 + }, + "xAxis": { + "x": 0.65623444, + "y": -0.7544741, + "z": -0.011190038 + }, + "yAxis": { + "x": 0.75433487, + "y": 0.65560913, + "z": 0.033993497 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.00626, + "y": 91.549324, + "z": 18.610735 + }, + "xAxis": { + "x": -0.73186034, + "y": 0.68136275, + "z": -0.011190038 + }, + "yAxis": { + "x": -0.68129, + "y": -0.7312239, + "z": 0.0339935 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 124.38779, + "y": 90.03036, + "z": 88.27212 + }, + "xAxis": { + "x": 0.78467274, + "y": 0.6122576, + "z": 0.09710498 + }, + "yAxis": { + "x": -0.5968413, + "y": 0.7884812, + "z": -0.14858644 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.18013, + "y": 80.30727, + "z": 26.384085 + }, + "xAxis": { + "x": 0.49963906, + "y": -0.86605704, + "z": -0.017492516 + }, + "yAxis": { + "x": 0.8662315, + "y": 0.49958128, + "z": 0.007843333 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.38524, + "y": 91.586365, + "z": 26.384085 + }, + "xAxis": { + "x": -0.58785313, + "y": 0.8087785, + "z": -0.017492518 + }, + "yAxis": { + "x": -0.8089581, + "y": -0.587814, + "z": 0.007843337 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.00761, + "y": 80.442154, + "z": 34.163673 + }, + "xAxis": { + "x": 0.32451412, + "y": -0.9456966, + "z": -0.018670749 + }, + "yAxis": { + "x": 0.9455747, + "y": 0.32484806, + "z": -0.019033112 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.57098, + "y": 91.470345, + "z": 34.163673 + }, + "xAxis": { + "x": -0.4220632, + "y": 0.9063741, + "z": -0.01867075 + }, + "yAxis": { + "x": -0.9062178, + "y": -0.4223825, + "z": -0.019033108 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.06477, + "y": 80.66676, + "z": 41.94289 + }, + "xAxis": { + "x": 0.1374363, + "y": -0.9904018, + "z": -0.014680488 + }, + "yAxis": { + "x": 0.9893847, + "y": 0.13797148, + "z": -0.045626506 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.53772, + "y": 91.240974, + "z": 41.94289 + }, + "xAxis": { + "x": -0.24071674, + "y": 0.9704844, + "z": -0.014680491 + }, + "yAxis": { + "x": -0.9694167, + "y": -0.24114211, + "z": -0.045626506 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.364456, + "y": 80.93553, + "z": 49.71514 + }, + "xAxis": { + "x": -0.054568768, + "y": -0.9984939, + "z": -0.0056715864 + }, + "yAxis": { + "x": 0.9960163, + "y": -0.054030426, + "z": -0.070938155 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 129.26793, + "y": 90.94221, + "z": 49.71514 + }, + "xAxis": { + "x": -0.0506241, + "y": 0.9987017, + "z": -0.0056715887 + }, + "yAxis": { + "x": -0.99618125, + "y": -0.050899193, + "z": -0.070938155 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 122.910355, + "y": 81.20124, + "z": 57.474094 + }, + "xAxis": { + "x": -0.24429044, + "y": -0.969669, + "z": 0.008017633 + }, + "yAxis": { + "x": 0.96522045, + "y": -0.2439471, + "z": -0.09401748 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 128.75296, + "y": 90.62062, + "z": 57.474094 + }, + "xAxis": { + "x": 0.1410759, + "y": 0.98996633, + "z": 0.00801763 + }, + "yAxis": { + "x": -0.98550636, + "y": 0.14120176, + "z": -0.09401748 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 123.69693, + "y": 81.41679, + "z": 65.21391 + }, + "xAxis": { + "x": -0.42460385, + "y": -0.9050095, + "z": 0.025873078 + }, + "yAxis": { + "x": 0.89815366, + "y": -0.42464635, + "z": -0.11399777 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 127.99338, + "y": 90.32364, + "z": 65.21391 + }, + "xAxis": { + "x": 0.32718405, + "y": 0.94460636, + "z": 0.025873074 + }, + "yAxis": { + "x": -0.93779296, + "y": 0.3279465, + "z": -0.11399777 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 124.70961, + "y": 81.53694, + "z": 72.92948 + }, + "xAxis": { + "x": -0.58873737, + "y": -0.8069437, + "z": 0.047224198 + }, + "yAxis": { + "x": 0.79733455, + "y": -0.5893421, + "z": -0.13012867 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 126.998924, + "y": 90.09776, + "z": 72.92948 + }, + "xAxis": { + "x": 0.5007112, + "y": 0.8643253, + "z": 0.047224194 + }, + "yAxis": { + "x": -0.8548328, + "y": 0.50232196, + "z": -0.13012867 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 125.78816, + "y": 89.98683, + "z": 80.61659 + }, + "xAxis": { + "x": 0.6551406, + "y": 0.75213796, + "z": 0.07126916 + }, + "yAxis": { + "x": -0.73974156, + "y": 0.6577796, + "z": -0.14180438 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 54.725, + "y": 92.125, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 38.533546, + "y": 84.83929, + "z": 13.2 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 38.56624, + "y": 86.276855, + "z": 21.45 + }, + "xAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 38.673374, + "y": 87.7108, + "z": 29.7 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.59278, + "y": 81.08525, + "z": 39.583332 + }, + "xAxis": { + "x": 0.9879331, + "y": -0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": 0.1548813, + "y": 0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 47.010635, + "y": 87.1004, + "z": 34.083332 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.325684, + "y": 89.34912, + "z": 7.7 + }, + "xAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 37.36431, + "y": 79.500885, + "z": 7.7 + }, + "xAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.40521, + "y": 89.71046, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 37.284786, + "y": 79.13955, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 36.292133, + "y": 75.964645, + "z": 35.2 + }, + "xAxis": { + "x": -0.9879331, + "y": 0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": -0.1548813, + "y": -0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.490963, + "y": 90.07036, + "z": 13.2 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 37.19903, + "y": 78.77965, + "z": 13.2 + }, + "xAxis": { + "x": -0.99985075, + "y": 0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.582924, + "y": 90.42873, + "z": 15.95 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 37.10707, + "y": 78.42128, + "z": 15.95 + }, + "xAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.68106, + "y": 90.785446, + "z": 18.7 + }, + "xAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 37.008934, + "y": 78.06456, + "z": 18.7 + }, + "xAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.785347, + "y": 91.14043, + "z": 21.45 + }, + "xAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 36.904648, + "y": 77.70958, + "z": 21.45 + }, + "xAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 45.895756, + "y": 91.49354, + "z": 24.2 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 36.79424, + "y": 77.35647, + "z": 24.2 + }, + "xAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 46.01224, + "y": 91.844696, + "z": 26.95 + }, + "xAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 36.677753, + "y": 77.00531, + "z": 26.95 + }, + "xAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 46.13478, + "y": 92.19379, + "z": 29.7 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 36.555214, + "y": 76.65622, + "z": 29.7 + }, + "xAxis": { + "x": -0.99269444, + "y": 0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 36.42666, + "y": 76.309296, + "z": 32.45 + }, + "xAxis": { + "x": -0.9904616, + "y": 0.13778894, + "z": 0.0 + }, + "yAxis": { + "x": -0.13778894, + "y": -0.9904616, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.705654, + "y": 86.63695, + "z": 7.7 + }, + "xAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.98434, + "y": 82.21306, + "z": 7.7 + }, + "xAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.73871, + "y": 87.04395, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.951286, + "y": 81.80605, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.339447, + "y": 78.185974, + "z": 35.2 + }, + "xAxis": { + "x": -0.9879331, + "y": 0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": -0.1548813, + "y": -0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.778793, + "y": 87.450325, + "z": 13.2 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.825886, + "y": 87.85595, + "z": 15.95 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.86411, + "y": 80.99406, + "z": 15.95 + }, + "xAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.879986, + "y": 88.26069, + "z": 18.7 + }, + "xAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.81001, + "y": 80.58932, + "z": 18.7 + }, + "xAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 42.941067, + "y": 88.66444, + "z": 21.45 + }, + "xAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 43.00912, + "y": 89.06706, + "z": 24.2 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.680874, + "y": 79.78294, + "z": 24.2 + }, + "xAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 43.084114, + "y": 89.46846, + "z": 26.95 + }, + "xAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.60588, + "y": 79.381546, + "z": 26.95 + }, + "xAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 43.166035, + "y": 89.8685, + "z": 29.7 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 39.43514, + "y": 78.58295, + "z": 32.45 + }, + "xAxis": { + "x": -0.9904616, + "y": 0.13778894, + "z": 0.0 + }, + "yAxis": { + "x": -0.13778894, + "y": -0.9904616, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.78458, + "y": 82.06963, + "z": 7.7 + }, + "xAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 39.905415, + "y": 86.78037, + "z": 7.7 + }, + "xAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.73871, + "y": 82.47596, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 39.951286, + "y": 86.37405, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.046947, + "y": 82.69885, + "z": 35.2 + }, + "xAxis": { + "x": 0.9879331, + "y": -0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": 0.1548813, + "y": 0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 39.990128, + "y": 85.966995, + "z": 13.2 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.66806, + "y": 83.29067, + "z": 15.95 + }, + "xAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.021935, + "y": 85.55933, + "z": 15.95 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.643307, + "y": 83.69882, + "z": 18.7 + }, + "xAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.046688, + "y": 85.151184, + "z": 18.7 + }, + "xAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.06439, + "y": 84.74266, + "z": 21.45 + }, + "xAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.614967, + "y": 84.516106, + "z": 24.2 + }, + "xAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.075027, + "y": 84.3339, + "z": 24.2 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 42.61139, + "y": 84.92499, + "z": 26.95 + }, + "xAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.078606, + "y": 83.92502, + "z": 26.95 + }, + "xAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.075115, + "y": 83.516136, + "z": 29.7 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 40.06456, + "y": 83.107376, + "z": 32.45 + }, + "xAxis": { + "x": 0.9904616, + "y": -0.13778894, + "z": 0.0 + }, + "yAxis": { + "x": 0.13778894, + "y": 0.9904616, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.49675, + "y": 79.4496, + "z": 7.7 + }, + "xAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.193245, + "y": 89.400406, + "z": 7.7 + }, + "xAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.40521, + "y": 79.809456, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.284786, + "y": 89.04055, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.825615, + "y": 85.74617, + "z": 35.2 + }, + "xAxis": { + "x": 0.9879331, + "y": -0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": 0.1548813, + "y": 0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.319897, + "y": 80.17084, + "z": 13.2 + }, + "xAxis": { + "x": -0.99985075, + "y": 0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.3701, + "y": 88.67917, + "z": 13.2 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.24084, + "y": 80.53364, + "z": 15.95 + }, + "xAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.449154, + "y": 88.31637, + "z": 15.95 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.168064, + "y": 80.89775, + "z": 18.7 + }, + "xAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.52193, + "y": 87.952255, + "z": 18.7 + }, + "xAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.101593, + "y": 81.26306, + "z": 21.45 + }, + "xAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.5884, + "y": 87.586945, + "z": 21.45 + }, + "xAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 45.041443, + "y": 81.62947, + "z": 24.2 + }, + "xAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.648552, + "y": 87.220535, + "z": 24.2 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 44.98763, + "y": 81.99686, + "z": 26.95 + }, + "xAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.702366, + "y": 86.85315, + "z": 26.95 + }, + "xAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 44.94017, + "y": 82.36512, + "z": 29.7 + }, + "xAxis": { + "x": -0.99269444, + "y": 0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.749825, + "y": 86.484886, + "z": 29.7 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 37.79091, + "y": 86.11585, + "z": 32.45 + }, + "xAxis": { + "x": 0.9904616, + "y": -0.13778894, + "z": 0.0 + }, + "yAxis": { + "x": 0.13778894, + "y": 0.9904616, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.250366, + "y": 80.31458, + "z": 8.616667 + }, + "xAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 33.43963, + "y": 88.53542, + "z": 8.616667 + }, + "xAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.17321, + "y": 80.60946, + "z": 11.366667 + }, + "xAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 34.316784, + "y": 89.04055, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 34.89343, + "y": 86.20586, + "z": 36.116665 + }, + "xAxis": { + "x": 0.9879331, + "y": -0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": 0.1548813, + "y": 0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.10116, + "y": 80.90561, + "z": 14.116667 + }, + "xAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 34.40254, + "y": 88.73045, + "z": 14.116667 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 49.034233, + "y": 81.20297, + "z": 16.866667 + }, + "xAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + }, + "yAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 34.482925, + "y": 88.418915, + "z": 16.866667 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.972454, + "y": 81.50144, + "z": 19.616667 + }, + "xAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 33.71754, + "y": 87.348564, + "z": 19.616667 + }, + "xAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.915844, + "y": 81.800934, + "z": 22.366667 + }, + "xAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 33.77415, + "y": 87.04907, + "z": 22.366667 + }, + "xAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.864418, + "y": 82.10136, + "z": 25.116667 + }, + "xAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + }, + "yAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 34.691624, + "y": 87.47663, + "z": 25.116667 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 48.818188, + "y": 82.402626, + "z": 27.866667 + }, + "xAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + }, + "yAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 33.871807, + "y": 86.44738, + "z": 27.866667 + }, + "xAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + }, + "yAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 48.77717, + "y": 82.70465, + "z": 30.616667 + }, + "xAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + }, + "yAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 34.803505, + "y": 86.84299, + "z": 30.616667 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 33.948616, + "y": 85.842674, + "z": 33.366665 + }, + "xAxis": { + "x": 0.13778894, + "y": 0.9904616, + "z": 0.0 + }, + "yAxis": { + "x": -0.9904616, + "y": 0.13778894, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.8704, + "y": 83.02676, + "z": 8.616667 + }, + "xAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 30.819597, + "y": 85.82325, + "z": 8.616667 + }, + "xAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.83971, + "y": 83.275955, + "z": 11.366667 + }, + "xAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 31.650286, + "y": 86.37405, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 30.931862, + "y": 83.318085, + "z": 36.116665 + }, + "xAxis": { + "x": 0.1548813, + "y": 0.9879331, + "z": 0.0 + }, + "yAxis": { + "x": -0.9879331, + "y": 0.1548813, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.81333, + "y": 83.52564, + "z": 14.116667 + }, + "xAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 31.690367, + "y": 86.11042, + "z": 14.116667 + }, + "xAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.791267, + "y": 83.77576, + "z": 16.866667 + }, + "xAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + }, + "yAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 31.72589, + "y": 85.84614, + "z": 16.866667 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.773533, + "y": 84.02621, + "z": 19.616667 + }, + "xAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 30.916464, + "y": 84.8238, + "z": 19.616667 + }, + "xAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.760124, + "y": 84.276924, + "z": 22.366667 + }, + "xAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 30.92987, + "y": 84.57308, + "z": 22.366667 + }, + "xAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.751053, + "y": 84.52783, + "z": 25.116667 + }, + "xAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + }, + "yAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 31.804987, + "y": 85.050156, + "z": 25.116667 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.746315, + "y": 84.77886, + "z": 27.866667 + }, + "xAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + }, + "yAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 30.94368, + "y": 84.071144, + "z": 27.866667 + }, + "xAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + }, + "yAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.74592, + "y": 85.02994, + "z": 30.616667 + }, + "xAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + }, + "yAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 31.834759, + "y": 84.5177, + "z": 30.616667 + }, + "xAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 30.940138, + "y": 83.56902, + "z": 33.366665 + }, + "xAxis": { + "x": 0.13778894, + "y": 0.9904616, + "z": 0.0 + }, + "yAxis": { + "x": -0.9904616, + "y": 0.13778894, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.005413, + "y": 86.78037, + "z": 9.533333 + }, + "xAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.68458, + "y": 82.06963, + "z": 9.533333 + }, + "xAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 51.83971, + "y": 86.24396, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.650286, + "y": 81.80605, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.138617, + "y": 79.47165, + "z": 37.033333 + }, + "xAxis": { + "x": -0.9879331, + "y": 0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": -0.1548813, + "y": -0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 51.864613, + "y": 86.4932, + "z": 15.033333 + }, + "xAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.611443, + "y": 81.543106, + "z": 15.033333 + }, + "xAxis": { + "x": -0.99985075, + "y": 0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.121933, + "y": 87.569145, + "z": 17.783333 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.568064, + "y": 81.28086, + "z": 17.783333 + }, + "xAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 51.92731, + "y": 86.99022, + "z": 20.533333 + }, + "xAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.520159, + "y": 81.01941, + "z": 20.533333 + }, + "xAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 51.96509, + "y": 87.23784, + "z": 23.283333 + }, + "xAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.467745, + "y": 80.758835, + "z": 23.283333 + }, + "xAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.27916, + "y": 88.35081, + "z": 26.033333 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.410835, + "y": 80.4992, + "z": 26.033333 + }, + "xAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.340546, + "y": 88.60942, + "z": 28.783333 + }, + "xAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.34945, + "y": 80.240585, + "z": 28.783333 + }, + "xAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 52.104023, + "y": 87.97626, + "z": 31.533333 + }, + "xAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + }, + "yAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.283604, + "y": 79.98307, + "z": 31.533333 + }, + "xAxis": { + "x": -0.99269444, + "y": 0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": 31.213318, + "y": 79.72673, + "z": 34.283333 + }, + "xAxis": { + "x": -0.9904616, + "y": 0.13778894, + "z": 0.0 + }, + "yAxis": { + "x": -0.13778894, + "y": -0.9904616, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.293243, + "y": 89.400406, + "z": 9.533333 + }, + "xAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 34.39675, + "y": 79.4496, + "z": 9.533333 + }, + "xAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + }, + "yAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.17321, + "y": 88.91045, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 34.316784, + "y": 79.13955, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + }, + "yAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 33.359947, + "y": 76.42433, + "z": 37.033333 + }, + "xAxis": { + "x": -0.9879331, + "y": 0.1548813, + "z": 0.0 + }, + "yAxis": { + "x": -0.1548813, + "y": -0.9879331, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.24458, + "y": 89.205376, + "z": 15.033333 + }, + "xAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 34.231472, + "y": 78.83093, + "z": 15.033333 + }, + "xAxis": { + "x": -0.99985075, + "y": 0.01727773, + "z": 0.0 + }, + "yAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.549152, + "y": 90.32618, + "z": 17.783333 + }, + "xAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 34.140842, + "y": 78.52383, + "z": 17.783333 + }, + "xAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + }, + "yAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.40255, + "y": 89.7913, + "z": 20.533333 + }, + "xAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 34.044918, + "y": 78.21834, + "z": 20.533333 + }, + "xAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + }, + "yAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.74626, + "y": 90.935455, + "z": 23.283333 + }, + "xAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 33.943733, + "y": 77.91455, + "z": 23.283333 + }, + "xAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + }, + "yAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.852684, + "y": 91.23744, + "z": 26.033333 + }, + "xAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 33.83731, + "y": 77.612564, + "z": 26.033333 + }, + "xAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + }, + "yAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.964306, + "y": 91.53755, + "z": 28.783333 + }, + "xAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 33.72569, + "y": 77.312454, + "z": 28.783333 + }, + "xAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + }, + "yAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.77873, + "y": 90.94501, + "z": 31.533333 + }, + "xAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + }, + "yAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 33.608894, + "y": 77.01432, + "z": 31.533333 + }, + "xAxis": { + "x": -0.99269444, + "y": 0.12065545, + "z": 0.0 + }, + "yAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": 33.48697, + "y": 76.718254, + "z": 34.283333 + }, + "xAxis": { + "x": -0.9904616, + "y": 0.13778894, + "z": 0.0 + }, + "yAxis": { + "x": -0.13778894, + "y": -0.9904616, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 46.894997, + "y": 84.425, + "z": 7.5 + }, + "xAxis": { + "x": -0.017277729, + "y": 0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": -0.99985075, + "y": -0.017277729, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 35.795, + "y": 84.425, + "z": 7.5 + }, + "xAxis": { + "x": 0.017277729, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": 0.017277729, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.88921, + "y": 84.75996, + "z": 10.25 + }, + "xAxis": { + "x": 1.0103646e-9, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 1.0103646e-9, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.800785, + "y": 84.09005, + "z": 10.25 + }, + "xAxis": { + "x": -1.0103646e-9, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": -1.0103646e-9, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 35.59278, + "y": 81.08525, + "z": 35.0 + }, + "xAxis": { + "x": -0.1548813, + "y": -0.9879331, + "z": 0.0 + }, + "yAxis": { + "x": 0.9879331, + "y": -0.1548813, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.88921, + "y": 85.094955, + "z": 13.0 + }, + "xAxis": { + "x": 0.01727773, + "y": 0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": -0.99985075, + "y": 0.01727773, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.800785, + "y": 83.75505, + "z": 13.0 + }, + "xAxis": { + "x": -0.01727773, + "y": -0.99985075, + "z": 0.0 + }, + "yAxis": { + "x": 0.99985075, + "y": -0.01727773, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.894997, + "y": 85.42991, + "z": 15.75 + }, + "xAxis": { + "x": 0.0345503, + "y": 0.99940294, + "z": 0.0 + }, + "yAxis": { + "x": -0.99940294, + "y": 0.0345503, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.795, + "y": 83.4201, + "z": 15.75 + }, + "xAxis": { + "x": -0.0345503, + "y": -0.99940294, + "z": 0.0 + }, + "yAxis": { + "x": 0.99940294, + "y": -0.0345503, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.90657, + "y": 85.76471, + "z": 18.5 + }, + "xAxis": { + "x": 0.05181256, + "y": 0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986568, + "y": 0.05181256, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.783424, + "y": 83.0853, + "z": 18.5 + }, + "xAxis": { + "x": -0.05181256, + "y": -0.9986568, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986568, + "y": -0.05181256, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.923927, + "y": 86.09926, + "z": 21.25 + }, + "xAxis": { + "x": 0.06905935, + "y": 0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": -0.99761254, + "y": 0.06905935, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.766068, + "y": 82.75075, + "z": 21.25 + }, + "xAxis": { + "x": -0.06905935, + "y": -0.99761254, + "z": 0.0 + }, + "yAxis": { + "x": 0.99761254, + "y": -0.06905935, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.947063, + "y": 86.43346, + "z": 24.0 + }, + "xAxis": { + "x": 0.086285524, + "y": 0.9962705, + "z": 0.0 + }, + "yAxis": { + "x": -0.9962705, + "y": 0.086285524, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.74293, + "y": 82.41655, + "z": 24.0 + }, + "xAxis": { + "x": -0.086285524, + "y": -0.9962705, + "z": 0.0 + }, + "yAxis": { + "x": 0.9962705, + "y": -0.086285524, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 46.975967, + "y": 86.767204, + "z": 26.75 + }, + "xAxis": { + "x": 0.103485934, + "y": 0.99463093, + "z": 0.0 + }, + "yAxis": { + "x": -0.99463093, + "y": 0.103485934, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.714027, + "y": 82.0828, + "z": 26.75 + }, + "xAxis": { + "x": -0.103485934, + "y": -0.99463093, + "z": 0.0 + }, + "yAxis": { + "x": 0.99463093, + "y": -0.103485934, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 47.010635, + "y": 87.1004, + "z": 29.5 + }, + "xAxis": { + "x": 0.12065545, + "y": 0.99269444, + "z": 0.0 + }, + "yAxis": { + "x": -0.99269444, + "y": 0.12065545, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.67936, + "y": 81.7496, + "z": 29.5 + }, + "xAxis": { + "x": -0.12065545, + "y": -0.99269444, + "z": 0.0 + }, + "yAxis": { + "x": 0.99269444, + "y": -0.12065545, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 35.63894, + "y": 81.41705, + "z": 32.25 + }, + "xAxis": { + "x": -0.13778894, + "y": -0.9904616, + "z": 0.0 + }, + "yAxis": { + "x": 0.9904616, + "y": -0.13778894, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 82.775, + "y": 45.375, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 99.71558, + "y": 54.06831, + "z": 13.2 + }, + "xAxis": { + "x": -0.9788008, + "y": -0.20481452, + "z": 0.0 + }, + "yAxis": { + "x": 0.20481452, + "y": -0.9788008, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 10.147437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 99.7714, + "y": 52.646675, + "z": 21.45 + }, + "xAxis": { + "x": -0.99490076, + "y": -0.10085858, + "z": 0.0 + }, + "yAxis": { + "x": 0.10085858, + "y": -0.99490076, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 22.027437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 99.67757, + "y": 51.227036, + "z": 29.7 + }, + "xAxis": { + "x": -0.9999911, + "y": 0.004213501, + "z": 0.0 + }, + "yAxis": { + "x": -0.004213501, + "y": -0.9999911, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 33.907433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.24606, + "y": 54.704273, + "z": 39.583332 + }, + "xAxis": { + "x": -0.95056945, + "y": 0.310512, + "z": 0.0 + }, + "yAxis": { + "x": -0.310512, + "y": -0.95056945, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.82975, + "y": 51.76432, + "z": 34.083332 + }, + "xAxis": { + "x": -0.96999913, + "y": 0.2431083, + "z": 0.0 + }, + "yAxis": { + "x": -0.2431083, + "y": -0.96999913, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 92.291695, + "y": 50.091877, + "z": 7.7 + }, + "xAxis": { + "x": -0.9111254, + "y": -0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": 0.41212925, + "y": -0.9111254, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 100.6983, + "y": 56.058125, + "z": 7.7 + }, + "xAxis": { + "x": 0.9111254, + "y": 0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": -0.41212925, + "y": 0.9111254, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 92.19203, + "y": 49.88158, + "z": 10.45 + }, + "xAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 100.797966, + "y": 56.26842, + "z": 10.45 + }, + "xAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 102.00657, + "y": 57.968513, + "z": 35.2 + }, + "xAxis": { + "x": 0.997265, + "y": 0.07390942, + "z": 0.0 + }, + "yAxis": { + "x": -0.07390942, + "y": 0.997265, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 42.912548 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 92.085045, + "y": 49.674908, + "z": 13.2 + }, + "xAxis": { + "x": -0.937776, + "y": -0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": 0.34724078, + "y": -0.937776, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 100.90495, + "y": 56.475094, + "z": 13.2 + }, + "xAxis": { + "x": 0.937776, + "y": 0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": -0.34724078, + "y": 0.937776, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.97087, + "y": 49.472115, + "z": 15.95 + }, + "xAxis": { + "x": -0.94937813, + "y": -0.3141355, + "z": 0.0 + }, + "yAxis": { + "x": 0.3141355, + "y": -0.94937813, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.01913, + "y": 56.677887, + "z": 15.95 + }, + "xAxis": { + "x": 0.94937813, + "y": 0.3141355, + "z": 0.0 + }, + "yAxis": { + "x": -0.3141355, + "y": 0.94937813, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.84966, + "y": 49.273453, + "z": 18.7 + }, + "xAxis": { + "x": -0.95981205, + "y": -0.28064364, + "z": 0.0 + }, + "yAxis": { + "x": 0.28064364, + "y": -0.95981205, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.140335, + "y": 56.87655, + "z": 18.7 + }, + "xAxis": { + "x": 0.95981205, + "y": 0.28064364, + "z": 0.0 + }, + "yAxis": { + "x": -0.28064364, + "y": 0.95981205, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.72155, + "y": 49.079166, + "z": 21.45 + }, + "xAxis": { + "x": -0.9690648, + "y": -0.24680643, + "z": 0.0 + }, + "yAxis": { + "x": 0.24680643, + "y": -0.9690648, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.26845, + "y": 57.070835, + "z": 21.45 + }, + "xAxis": { + "x": 0.9690648, + "y": 0.24680643, + "z": 0.0 + }, + "yAxis": { + "x": -0.24680643, + "y": 0.9690648, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.58671, + "y": 48.88949, + "z": 24.2 + }, + "xAxis": { + "x": -0.97712505, + "y": -0.2126655, + "z": 0.0 + }, + "yAxis": { + "x": 0.2126655, + "y": -0.97712505, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.40329, + "y": 57.260513, + "z": 24.2 + }, + "xAxis": { + "x": 0.97712505, + "y": 0.2126655, + "z": 0.0 + }, + "yAxis": { + "x": -0.2126655, + "y": 0.97712505, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.4453, + "y": 48.70466, + "z": 26.95 + }, + "xAxis": { + "x": -0.9839829, + "y": -0.17826287, + "z": 0.0 + }, + "yAxis": { + "x": 0.17826287, + "y": -0.9839829, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.5447, + "y": 57.445343, + "z": 26.95 + }, + "xAxis": { + "x": 0.9839829, + "y": 0.17826287, + "z": 0.0 + }, + "yAxis": { + "x": -0.17826287, + "y": 0.9839829, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.29749, + "y": 48.524902, + "z": 29.7 + }, + "xAxis": { + "x": -0.98962986, + "y": -0.14364088, + "z": 0.0 + }, + "yAxis": { + "x": 0.14364088, + "y": -0.98962986, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.692505, + "y": 57.6251, + "z": 29.7 + }, + "xAxis": { + "x": 0.98962986, + "y": 0.14364088, + "z": 0.0 + }, + "yAxis": { + "x": -0.14364088, + "y": 0.98962986, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 101.84653, + "y": 57.799564, + "z": 32.45 + }, + "xAxis": { + "x": 0.994059, + "y": 0.10884212, + "z": 0.0 + }, + "yAxis": { + "x": -0.10884212, + "y": 0.994059, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 38.95255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 94.0152, + "y": 51.94075, + "z": 7.7 + }, + "xAxis": { + "x": -0.34724078, + "y": -0.937776, + "z": 0.0 + }, + "yAxis": { + "x": 0.937776, + "y": -0.34724078, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 98.9748, + "y": 54.20925, + "z": 7.7 + }, + "xAxis": { + "x": 0.34724078, + "y": 0.937776, + "z": 0.0 + }, + "yAxis": { + "x": -0.937776, + "y": 0.34724078, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.97932, + "y": 51.668865, + "z": 10.45 + }, + "xAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.01068, + "y": 54.481136, + "z": 10.45 + }, + "xAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.75266, + "y": 56.82455, + "z": 35.2 + }, + "xAxis": { + "x": 0.64836895, + "y": 0.76132625, + "z": 0.0 + }, + "yAxis": { + "x": -0.76132625, + "y": 0.64836895, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 42.129883 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.933914, + "y": 51.398403, + "z": 13.2 + }, + "xAxis": { + "x": -0.41212925, + "y": -0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": 0.9111254, + "y": -0.41212925, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.87905, + "y": 51.129704, + "z": 15.95 + }, + "xAxis": { + "x": -0.44383258, + "y": -0.89610976, + "z": 0.0 + }, + "yAxis": { + "x": 0.89610976, + "y": -0.44383258, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.11095, + "y": 55.020298, + "z": 15.95 + }, + "xAxis": { + "x": 0.44383258, + "y": 0.89610976, + "z": 0.0 + }, + "yAxis": { + "x": -0.89610976, + "y": 0.44383258, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.814804, + "y": 50.863094, + "z": 18.7 + }, + "xAxis": { + "x": -0.4749897, + "y": -0.87999135, + "z": 0.0 + }, + "yAxis": { + "x": 0.87999135, + "y": -0.4749897, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.17519, + "y": 55.286907, + "z": 18.7 + }, + "xAxis": { + "x": 0.4749897, + "y": 0.87999135, + "z": 0.0 + }, + "yAxis": { + "x": -0.87999135, + "y": 0.4749897, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.74125, + "y": 50.598904, + "z": 21.45 + }, + "xAxis": { + "x": -0.50556237, + "y": -0.86279005, + "z": 0.0 + }, + "yAxis": { + "x": 0.86279005, + "y": -0.50556237, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.65846, + "y": 50.337452, + "z": 24.2 + }, + "xAxis": { + "x": -0.53551286, + "y": -0.84452707, + "z": 0.0 + }, + "yAxis": { + "x": 0.84452707, + "y": -0.53551286, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.331535, + "y": 55.81255, + "z": 24.2 + }, + "xAxis": { + "x": 0.53551286, + "y": 0.84452707, + "z": 0.0 + }, + "yAxis": { + "x": -0.84452707, + "y": 0.53551286, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.56657, + "y": 50.079063, + "z": 26.95 + }, + "xAxis": { + "x": -0.56480443, + "y": -0.8252248, + "z": 0.0 + }, + "yAxis": { + "x": 0.8252248, + "y": -0.56480443, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.42343, + "y": 56.07094, + "z": 26.95 + }, + "xAxis": { + "x": 0.56480443, + "y": 0.8252248, + "z": 0.0 + }, + "yAxis": { + "x": -0.8252248, + "y": 0.56480443, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 93.46566, + "y": 49.824062, + "z": 29.7 + }, + "xAxis": { + "x": -0.5934009, + "y": -0.8049071, + "z": 0.0 + }, + "yAxis": { + "x": 0.8049071, + "y": -0.5934009, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 99.63413, + "y": 56.577248, + "z": 32.45 + }, + "xAxis": { + "x": 0.6212672, + "y": 0.7835988, + "z": 0.0 + }, + "yAxis": { + "x": -0.7835988, + "y": 0.6212672, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 38.169884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.92812, + "y": 54.4217, + "z": 7.7 + }, + "xAxis": { + "x": 0.41212925, + "y": -0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": 0.9111254, + "y": 0.41212925, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 99.061874, + "y": 51.728302, + "z": 7.7 + }, + "xAxis": { + "x": -0.41212925, + "y": 0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": -0.9111254, + "y": -0.41212925, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 93.97932, + "y": 54.15134, + "z": 10.45 + }, + "xAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 99.01068, + "y": 51.99866, + "z": 10.45 + }, + "xAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.98182, + "y": 54.464783, + "z": 35.2 + }, + "xAxis": { + "x": -0.07390942, + "y": 0.997265, + "z": 0.0 + }, + "yAxis": { + "x": -0.997265, + "y": -0.07390942, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 41.028614 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.96901, + "y": 52.27065, + "z": 13.2 + }, + "xAxis": { + "x": -0.34724078, + "y": 0.937776, + "z": 0.0 + }, + "yAxis": { + "x": -0.937776, + "y": -0.34724078, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.053085, + "y": 53.606075, + "z": 15.95 + }, + "xAxis": { + "x": 0.3141355, + "y": -0.94937813, + "z": 0.0 + }, + "yAxis": { + "x": 0.94937813, + "y": 0.3141355, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.93691, + "y": 52.543926, + "z": 15.95 + }, + "xAxis": { + "x": -0.3141355, + "y": 0.94937813, + "z": 0.0 + }, + "yAxis": { + "x": -0.94937813, + "y": -0.3141355, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.07559, + "y": 53.331837, + "z": 18.7 + }, + "xAxis": { + "x": 0.28064364, + "y": -0.95981205, + "z": 0.0 + }, + "yAxis": { + "x": 0.95981205, + "y": 0.28064364, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.914406, + "y": 52.818165, + "z": 18.7 + }, + "xAxis": { + "x": -0.28064364, + "y": 0.95981205, + "z": 0.0 + }, + "yAxis": { + "x": -0.95981205, + "y": -0.28064364, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.901535, + "y": 53.09302, + "z": 21.45 + }, + "xAxis": { + "x": -0.24680643, + "y": 0.9690648, + "z": 0.0 + }, + "yAxis": { + "x": -0.9690648, + "y": -0.24680643, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.09168, + "y": 52.781837, + "z": 24.2 + }, + "xAxis": { + "x": 0.2126655, + "y": -0.97712505, + "z": 0.0 + }, + "yAxis": { + "x": 0.97712505, + "y": 0.2126655, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.898315, + "y": 53.368164, + "z": 24.2 + }, + "xAxis": { + "x": -0.2126655, + "y": 0.97712505, + "z": 0.0 + }, + "yAxis": { + "x": -0.97712505, + "y": -0.2126655, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 94.08525, + "y": 52.506752, + "z": 26.95 + }, + "xAxis": { + "x": 0.17826287, + "y": -0.9839829, + "z": 0.0 + }, + "yAxis": { + "x": 0.9839829, + "y": 0.17826287, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.90475, + "y": 53.64325, + "z": 26.95 + }, + "xAxis": { + "x": -0.17826287, + "y": 0.9839829, + "z": 0.0 + }, + "yAxis": { + "x": -0.9839829, + "y": -0.17826287, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.92083, + "y": 53.91794, + "z": 29.7 + }, + "xAxis": { + "x": -0.14364088, + "y": 0.98962986, + "z": 0.0 + }, + "yAxis": { + "x": -0.98962986, + "y": -0.14364088, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 98.94653, + "y": 54.1919, + "z": 32.45 + }, + "xAxis": { + "x": -0.10884212, + "y": 0.994059, + "z": 0.0 + }, + "yAxis": { + "x": -0.994059, + "y": -0.10884212, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 37.068615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.079254, + "y": 56.145195, + "z": 7.7 + }, + "xAxis": { + "x": 0.937776, + "y": -0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": 0.34724078, + "y": 0.937776, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.91074, + "y": 50.004807, + "z": 7.7 + }, + "xAxis": { + "x": -0.937776, + "y": 0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": -0.34724078, + "y": -0.937776, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.19203, + "y": 55.938625, + "z": 10.45 + }, + "xAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.797966, + "y": 50.211376, + "z": 10.45 + }, + "xAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.125786, + "y": 52.210873, + "z": 35.2 + }, + "xAxis": { + "x": -0.76132625, + "y": 0.64836895, + "z": 0.0 + }, + "yAxis": { + "x": -0.64836895, + "y": -0.76132625, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 40.15937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.297485, + "y": 55.728226, + "z": 13.2 + }, + "xAxis": { + "x": 0.9111254, + "y": -0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": 0.41212925, + "y": 0.9111254, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.69251, + "y": 50.421776, + "z": 13.2 + }, + "xAxis": { + "x": -0.9111254, + "y": 0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": -0.41212925, + "y": -0.9111254, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.3955, + "y": 55.51426, + "z": 15.95 + }, + "xAxis": { + "x": 0.89610976, + "y": -0.44383258, + "z": 0.0 + }, + "yAxis": { + "x": 0.44383258, + "y": 0.89610976, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.5945, + "y": 50.635742, + "z": 15.95 + }, + "xAxis": { + "x": -0.89610976, + "y": 0.44383258, + "z": 0.0 + }, + "yAxis": { + "x": -0.44383258, + "y": -0.89610976, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.48595, + "y": 55.296986, + "z": 18.7 + }, + "xAxis": { + "x": 0.87999135, + "y": -0.4749897, + "z": 0.0 + }, + "yAxis": { + "x": 0.4749897, + "y": 0.87999135, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.50405, + "y": 50.853016, + "z": 18.7 + }, + "xAxis": { + "x": -0.87999135, + "y": 0.4749897, + "z": 0.0 + }, + "yAxis": { + "x": -0.4749897, + "y": -0.87999135, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.568726, + "y": 55.076675, + "z": 21.45 + }, + "xAxis": { + "x": 0.86279005, + "y": -0.50556237, + "z": 0.0 + }, + "yAxis": { + "x": 0.50556237, + "y": 0.86279005, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.42127, + "y": 51.073326, + "z": 21.45 + }, + "xAxis": { + "x": -0.86279005, + "y": 0.50556237, + "z": 0.0 + }, + "yAxis": { + "x": -0.50556237, + "y": -0.86279005, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.643715, + "y": 54.853592, + "z": 24.2 + }, + "xAxis": { + "x": 0.84452707, + "y": -0.53551286, + "z": 0.0 + }, + "yAxis": { + "x": 0.53551286, + "y": 0.84452707, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.34628, + "y": 51.29641, + "z": 24.2 + }, + "xAxis": { + "x": -0.84452707, + "y": 0.53551286, + "z": 0.0 + }, + "yAxis": { + "x": -0.53551286, + "y": -0.84452707, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.71084, + "y": 54.628017, + "z": 26.95 + }, + "xAxis": { + "x": 0.8252248, + "y": -0.56480443, + "z": 0.0 + }, + "yAxis": { + "x": 0.56480443, + "y": 0.8252248, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.27916, + "y": 51.521984, + "z": 26.95 + }, + "xAxis": { + "x": -0.8252248, + "y": 0.56480443, + "z": 0.0 + }, + "yAxis": { + "x": -0.56480443, + "y": -0.8252248, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.77001, + "y": 54.40023, + "z": 29.7 + }, + "xAxis": { + "x": 0.8049071, + "y": -0.5934009, + "z": 0.0 + }, + "yAxis": { + "x": 0.5934009, + "y": 0.8049071, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.219986, + "y": 51.74977, + "z": 29.7 + }, + "xAxis": { + "x": -0.8049071, + "y": 0.5934009, + "z": 0.0 + }, + "yAxis": { + "x": -0.5934009, + "y": -0.8049071, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 100.168846, + "y": 51.979496, + "z": 32.45 + }, + "xAxis": { + "x": -0.7835988, + "y": 0.6212672, + "z": 0.0 + }, + "yAxis": { + "x": -0.6212672, + "y": -0.7835988, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 36.19937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.598305, + "y": 56.058125, + "z": 8.616667 + }, + "xAxis": { + "x": 0.9111254, + "y": 0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": -0.41212925, + "y": 0.9111254, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 103.39169, + "y": 50.091877, + "z": 8.616667 + }, + "xAxis": { + "x": -0.9111254, + "y": -0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": 0.41212925, + "y": -0.9111254, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.70955, + "y": 55.938625, + "z": 11.366667 + }, + "xAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 103.28045, + "y": 50.211376, + "z": 11.366667 + }, + "xAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 102.48556, + "y": 51.440033, + "z": 36.116665 + }, + "xAxis": { + "x": -0.997265, + "y": -0.07390942, + "z": 0.0 + }, + "yAxis": { + "x": 0.07390942, + "y": -0.997265, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 40.101658 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.816536, + "y": 55.815296, + "z": 14.116667 + }, + "xAxis": { + "x": 0.937776, + "y": 0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": -0.34724078, + "y": 0.937776, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 103.17346, + "y": 50.334705, + "z": 14.116667 + }, + "xAxis": { + "x": -0.937776, + "y": -0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": 0.34724078, + "y": -0.937776, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.91913, + "y": 55.688293, + "z": 16.866667 + }, + "xAxis": { + "x": 0.94937813, + "y": 0.3141355, + "z": 0.0 + }, + "yAxis": { + "x": -0.3141355, + "y": 0.94937813, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 103.07087, + "y": 50.461708, + "z": 16.866667 + }, + "xAxis": { + "x": -0.94937813, + "y": -0.3141355, + "z": 0.0 + }, + "yAxis": { + "x": 0.3141355, + "y": -0.94937813, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.017204, + "y": 55.55777, + "z": 19.616667 + }, + "xAxis": { + "x": 0.95981205, + "y": 0.28064364, + "z": 0.0 + }, + "yAxis": { + "x": -0.28064364, + "y": 0.95981205, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 102.97279, + "y": 50.59223, + "z": 19.616667 + }, + "xAxis": { + "x": -0.95981205, + "y": -0.28064364, + "z": 0.0 + }, + "yAxis": { + "x": 0.28064364, + "y": -0.95981205, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.11065, + "y": 55.423885, + "z": 22.366667 + }, + "xAxis": { + "x": 0.9690648, + "y": 0.24680643, + "z": 0.0 + }, + "yAxis": { + "x": -0.24680643, + "y": 0.9690648, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 102.87935, + "y": 50.726116, + "z": 22.366667 + }, + "xAxis": { + "x": -0.9690648, + "y": -0.24680643, + "z": 0.0 + }, + "yAxis": { + "x": 0.24680643, + "y": -0.9690648, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.19933, + "y": 55.286804, + "z": 25.116667 + }, + "xAxis": { + "x": 0.97712505, + "y": 0.2126655, + "z": 0.0 + }, + "yAxis": { + "x": -0.2126655, + "y": 0.97712505, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 102.790665, + "y": 50.863197, + "z": 25.116667 + }, + "xAxis": { + "x": -0.97712505, + "y": -0.2126655, + "z": 0.0 + }, + "yAxis": { + "x": 0.2126655, + "y": -0.97712505, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.28316, + "y": 55.146698, + "z": 27.866667 + }, + "xAxis": { + "x": 0.9839829, + "y": 0.17826287, + "z": 0.0 + }, + "yAxis": { + "x": -0.17826287, + "y": 0.9839829, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 102.70684, + "y": 51.003304, + "z": 27.866667 + }, + "xAxis": { + "x": -0.9839829, + "y": -0.17826287, + "z": 0.0 + }, + "yAxis": { + "x": 0.17826287, + "y": -0.9839829, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.36201, + "y": 55.00374, + "z": 30.616667 + }, + "xAxis": { + "x": 0.98962986, + "y": 0.14364088, + "z": 0.0 + }, + "yAxis": { + "x": -0.14364088, + "y": 0.98962986, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 102.62799, + "y": 51.146263, + "z": 30.616667 + }, + "xAxis": { + "x": -0.98962986, + "y": -0.14364088, + "z": 0.0 + }, + "yAxis": { + "x": 0.14364088, + "y": -0.98962986, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 102.5542, + "y": 51.291897, + "z": 33.366665 + }, + "xAxis": { + "x": -0.994059, + "y": -0.10884212, + "z": 0.0 + }, + "yAxis": { + "x": 0.10884212, + "y": -0.994059, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 36.14166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.8748, + "y": 54.20925, + "z": 8.616667 + }, + "xAxis": { + "x": 0.34724078, + "y": 0.937776, + "z": 0.0 + }, + "yAxis": { + "x": -0.937776, + "y": 0.34724078, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 105.1152, + "y": 51.94075, + "z": 8.616667 + }, + "xAxis": { + "x": -0.34724078, + "y": -0.937776, + "z": 0.0 + }, + "yAxis": { + "x": 0.937776, + "y": -0.34724078, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.922264, + "y": 54.15134, + "z": 11.366667 + }, + "xAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 105.06773, + "y": 51.99866, + "z": 11.366667 + }, + "xAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 104.73946, + "y": 52.583996, + "z": 36.116665 + }, + "xAxis": { + "x": -0.64836895, + "y": -0.76132625, + "z": 0.0 + }, + "yAxis": { + "x": 0.76132625, + "y": -0.64836895, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 40.884323 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.96767, + "y": 54.0918, + "z": 14.116667 + }, + "xAxis": { + "x": 0.41212925, + "y": 0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": -0.9111254, + "y": 0.41212925, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 10.449885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 105.02233, + "y": 52.0582, + "z": 14.116667 + }, + "xAxis": { + "x": -0.41212925, + "y": -0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": 0.9111254, + "y": -0.41212925, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.01095, + "y": 54.030704, + "z": 16.866667 + }, + "xAxis": { + "x": 0.44383258, + "y": 0.89610976, + "z": 0.0 + }, + "yAxis": { + "x": -0.89610976, + "y": 0.44383258, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 104.97905, + "y": 52.119297, + "z": 16.866667 + }, + "xAxis": { + "x": -0.44383258, + "y": -0.89610976, + "z": 0.0 + }, + "yAxis": { + "x": 0.89610976, + "y": -0.44383258, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.05206, + "y": 53.96813, + "z": 19.616667 + }, + "xAxis": { + "x": 0.4749897, + "y": 0.87999135, + "z": 0.0 + }, + "yAxis": { + "x": -0.87999135, + "y": 0.4749897, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 104.937935, + "y": 52.181873, + "z": 19.616667 + }, + "xAxis": { + "x": -0.4749897, + "y": -0.87999135, + "z": 0.0 + }, + "yAxis": { + "x": 0.87999135, + "y": -0.4749897, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.09095, + "y": 53.90415, + "z": 22.366667 + }, + "xAxis": { + "x": 0.50556237, + "y": 0.86279005, + "z": 0.0 + }, + "yAxis": { + "x": -0.86279005, + "y": 0.50556237, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 22.329885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 104.89905, + "y": 52.245853, + "z": 22.366667 + }, + "xAxis": { + "x": -0.50556237, + "y": -0.86279005, + "z": 0.0 + }, + "yAxis": { + "x": 0.86279005, + "y": -0.50556237, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.12758, + "y": 53.83884, + "z": 25.116667 + }, + "xAxis": { + "x": 0.53551286, + "y": 0.84452707, + "z": 0.0 + }, + "yAxis": { + "x": -0.84452707, + "y": 0.53551286, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 104.86242, + "y": 52.31116, + "z": 25.116667 + }, + "xAxis": { + "x": -0.53551286, + "y": -0.84452707, + "z": 0.0 + }, + "yAxis": { + "x": 0.84452707, + "y": -0.53551286, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.16189, + "y": 53.772293, + "z": 27.866667 + }, + "xAxis": { + "x": 0.56480443, + "y": 0.8252248, + "z": 0.0 + }, + "yAxis": { + "x": -0.8252248, + "y": 0.56480443, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 104.82811, + "y": 52.37771, + "z": 27.866667 + }, + "xAxis": { + "x": -0.56480443, + "y": -0.8252248, + "z": 0.0 + }, + "yAxis": { + "x": 0.8252248, + "y": -0.56480443, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.19384, + "y": 53.70458, + "z": 30.616667 + }, + "xAxis": { + "x": 0.5934009, + "y": 0.8049071, + "z": 0.0 + }, + "yAxis": { + "x": -0.8049071, + "y": 0.5934009, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 34.209885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 104.79616, + "y": 52.445423, + "z": 30.616667 + }, + "xAxis": { + "x": -0.5934009, + "y": -0.8049071, + "z": 0.0 + }, + "yAxis": { + "x": 0.8049071, + "y": -0.5934009, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 104.766594, + "y": 52.514214, + "z": 33.366665 + }, + "xAxis": { + "x": -0.6212672, + "y": -0.7835988, + "z": 0.0 + }, + "yAxis": { + "x": 0.7835988, + "y": -0.6212672, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 36.924324 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.961876, + "y": 51.728302, + "z": 9.533333 + }, + "xAxis": { + "x": -0.41212925, + "y": 0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": -0.9111254, + "y": -0.41212925, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.02812, + "y": 54.4217, + "z": 9.533333 + }, + "xAxis": { + "x": 0.41212925, + "y": -0.9111254, + "z": 0.0 + }, + "yAxis": { + "x": 0.9111254, + "y": 0.41212925, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.922264, + "y": 51.668865, + "z": 12.283333 + }, + "xAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.06773, + "y": 54.481136, + "z": 12.283333 + }, + "xAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.51031, + "y": 54.943764, + "z": 37.033333 + }, + "xAxis": { + "x": 0.07390942, + "y": -0.997265, + "z": 0.0 + }, + "yAxis": { + "x": 0.997265, + "y": 0.07390942, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 41.98559 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.88059, + "y": 51.61085, + "z": 15.033333 + }, + "xAxis": { + "x": -0.34724078, + "y": 0.937776, + "z": 0.0 + }, + "yAxis": { + "x": -0.937776, + "y": -0.34724078, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.109406, + "y": 54.53915, + "z": 15.033333 + }, + "xAxis": { + "x": 0.34724078, + "y": -0.937776, + "z": 0.0 + }, + "yAxis": { + "x": 0.937776, + "y": 0.34724078, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 10.305597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.836914, + "y": 51.554333, + "z": 17.783333 + }, + "xAxis": { + "x": -0.3141355, + "y": 0.94937813, + "z": 0.0 + }, + "yAxis": { + "x": -0.94937813, + "y": -0.3141355, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.15308, + "y": 54.59567, + "z": 17.783333 + }, + "xAxis": { + "x": 0.3141355, + "y": -0.94937813, + "z": 0.0 + }, + "yAxis": { + "x": 0.94937813, + "y": 0.3141355, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.791275, + "y": 51.499386, + "z": 20.533333 + }, + "xAxis": { + "x": -0.28064364, + "y": 0.95981205, + "z": 0.0 + }, + "yAxis": { + "x": -0.95981205, + "y": -0.28064364, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.19872, + "y": 54.650616, + "z": 20.533333 + }, + "xAxis": { + "x": 0.28064364, + "y": -0.95981205, + "z": 0.0 + }, + "yAxis": { + "x": 0.95981205, + "y": 0.28064364, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.74374, + "y": 51.44607, + "z": 23.283333 + }, + "xAxis": { + "x": -0.24680643, + "y": 0.9690648, + "z": 0.0 + }, + "yAxis": { + "x": -0.9690648, + "y": -0.24680643, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.24626, + "y": 54.70393, + "z": 23.283333 + }, + "xAxis": { + "x": 0.24680643, + "y": -0.9690648, + "z": 0.0 + }, + "yAxis": { + "x": 0.9690648, + "y": 0.24680643, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 22.185598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.69436, + "y": 51.394455, + "z": 26.033333 + }, + "xAxis": { + "x": -0.2126655, + "y": 0.97712505, + "z": 0.0 + }, + "yAxis": { + "x": -0.97712505, + "y": -0.2126655, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.29564, + "y": 54.755547, + "z": 26.033333 + }, + "xAxis": { + "x": 0.2126655, + "y": -0.97712505, + "z": 0.0 + }, + "yAxis": { + "x": 0.97712505, + "y": 0.2126655, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 87.6432, + "y": 51.344604, + "z": 28.783333 + }, + "xAxis": { + "x": -0.17826287, + "y": 0.9839829, + "z": 0.0 + }, + "yAxis": { + "x": -0.9839829, + "y": -0.17826287, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.346794, + "y": 54.805397, + "z": 28.783333 + }, + "xAxis": { + "x": 0.17826287, + "y": -0.9839829, + "z": 0.0 + }, + "yAxis": { + "x": 0.9839829, + "y": 0.17826287, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.59033, + "y": 51.296577, + "z": 31.533333 + }, + "xAxis": { + "x": -0.14364088, + "y": 0.98962986, + "z": 0.0 + }, + "yAxis": { + "x": -0.98962986, + "y": -0.14364088, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.399666, + "y": 54.853424, + "z": 31.533333 + }, + "xAxis": { + "x": 0.14364088, + "y": -0.98962986, + "z": 0.0 + }, + "yAxis": { + "x": 0.98962986, + "y": 0.14364088, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 34.065594 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 105.45419, + "y": 54.899563, + "z": 34.283333 + }, + "xAxis": { + "x": 0.10884212, + "y": -0.994059, + "z": 0.0 + }, + "yAxis": { + "x": 0.994059, + "y": 0.10884212, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 38.025593 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.810745, + "y": 50.004807, + "z": 9.533333 + }, + "xAxis": { + "x": -0.937776, + "y": 0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": -0.34724078, + "y": -0.937776, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.17925, + "y": 56.145195, + "z": 9.533333 + }, + "xAxis": { + "x": 0.937776, + "y": -0.34724078, + "z": 0.0 + }, + "yAxis": { + "x": 0.34724078, + "y": 0.937776, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 89.70955, + "y": 49.88158, + "z": 12.283333 + }, + "xAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.28045, + "y": 56.26842, + "z": 12.283333 + }, + "xAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 104.36634, + "y": 57.197674, + "z": 37.033333 + }, + "xAxis": { + "x": 0.76132625, + "y": -0.64836895, + "z": 0.0 + }, + "yAxis": { + "x": 0.64836895, + "y": 0.76132625, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 42.854836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 89.604095, + "y": 49.76198, + "z": 15.033333 + }, + "xAxis": { + "x": -0.9111254, + "y": 0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": -0.41212925, + "y": -0.9111254, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.3859, + "y": 56.388023, + "z": 15.033333 + }, + "xAxis": { + "x": 0.9111254, + "y": -0.41212925, + "z": 0.0 + }, + "yAxis": { + "x": 0.41212925, + "y": 0.9111254, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.4945, + "y": 49.64615, + "z": 17.783333 + }, + "xAxis": { + "x": -0.89610976, + "y": 0.44383258, + "z": 0.0 + }, + "yAxis": { + "x": -0.44383258, + "y": -0.89610976, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.4955, + "y": 56.503853, + "z": 17.783333 + }, + "xAxis": { + "x": 0.89610976, + "y": -0.44383258, + "z": 0.0 + }, + "yAxis": { + "x": 0.44383258, + "y": 0.89610976, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 89.38092, + "y": 49.534237, + "z": 20.533333 + }, + "xAxis": { + "x": -0.87999135, + "y": 0.4749897, + "z": 0.0 + }, + "yAxis": { + "x": -0.4749897, + "y": -0.87999135, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.60908, + "y": 56.615765, + "z": 20.533333 + }, + "xAxis": { + "x": 0.87999135, + "y": -0.4749897, + "z": 0.0 + }, + "yAxis": { + "x": 0.4749897, + "y": 0.87999135, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.26347, + "y": 49.426376, + "z": 23.283333 + }, + "xAxis": { + "x": -0.86279005, + "y": 0.50556237, + "z": 0.0 + }, + "yAxis": { + "x": -0.50556237, + "y": -0.86279005, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.726524, + "y": 56.723625, + "z": 23.283333 + }, + "xAxis": { + "x": 0.86279005, + "y": -0.50556237, + "z": 0.0 + }, + "yAxis": { + "x": 0.50556237, + "y": 0.86279005, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.14233, + "y": 49.3227, + "z": 26.033333 + }, + "xAxis": { + "x": -0.84452707, + "y": 0.53551286, + "z": 0.0 + }, + "yAxis": { + "x": -0.53551286, + "y": -0.84452707, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.84767, + "y": 56.8273, + "z": 26.033333 + }, + "xAxis": { + "x": 0.84452707, + "y": -0.53551286, + "z": 0.0 + }, + "yAxis": { + "x": 0.53551286, + "y": 0.84452707, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.01762, + "y": 49.22334, + "z": 28.783333 + }, + "xAxis": { + "x": -0.8252248, + "y": 0.56480443, + "z": 0.0 + }, + "yAxis": { + "x": -0.56480443, + "y": -0.8252248, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 103.97238, + "y": 56.926662, + "z": 28.783333 + }, + "xAxis": { + "x": 0.8252248, + "y": -0.56480443, + "z": 0.0 + }, + "yAxis": { + "x": 0.56480443, + "y": 0.8252248, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 88.88949, + "y": 49.12841, + "z": 31.533333 + }, + "xAxis": { + "x": -0.8049071, + "y": 0.5934009, + "z": 0.0 + }, + "yAxis": { + "x": -0.5934009, + "y": -0.8049071, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 104.10051, + "y": 57.02159, + "z": 31.533333 + }, + "xAxis": { + "x": 0.8049071, + "y": -0.5934009, + "z": 0.0 + }, + "yAxis": { + "x": 0.5934009, + "y": 0.8049071, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 104.23188, + "y": 57.111965, + "z": 34.283333 + }, + "xAxis": { + "x": 0.7835988, + "y": -0.6212672, + "z": 0.0 + }, + "yAxis": { + "x": 0.6212672, + "y": 0.7835988, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 38.894836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 90.945, + "y": 53.075, + "z": 7.5 + }, + "xAxis": { + "x": 0.035074092, + "y": -0.9993847, + "z": 0.0 + }, + "yAxis": { + "x": 0.9993847, + "y": 0.035074092, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 102.045, + "y": 53.075, + "z": 7.5 + }, + "xAxis": { + "x": -0.035074092, + "y": 0.9993847, + "z": 0.0 + }, + "yAxis": { + "x": -0.9993847, + "y": -0.035074092, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.95079, + "y": 52.910103, + "z": 10.25 + }, + "xAxis": { + "x": -1.9183176e-10, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": -1.9183176e-10, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.03921, + "y": 53.2399, + "z": 10.25 + }, + "xAxis": { + "x": 1.9183176e-10, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 1.9183176e-10, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 102.24606, + "y": 54.704273, + "z": 35.0 + }, + "xAxis": { + "x": 0.310512, + "y": 0.95056945, + "z": 0.0 + }, + "yAxis": { + "x": -0.95056945, + "y": 0.310512, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.95079, + "y": 52.745102, + "z": 13.0 + }, + "xAxis": { + "x": -0.035074092, + "y": -0.9993847, + "z": 0.0 + }, + "yAxis": { + "x": 0.9993847, + "y": -0.035074092, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.03921, + "y": 53.4049, + "z": 13.0 + }, + "xAxis": { + "x": 0.035074092, + "y": 0.9993847, + "z": 0.0 + }, + "yAxis": { + "x": -0.9993847, + "y": 0.035074092, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.945, + "y": 52.580204, + "z": 15.75 + }, + "xAxis": { + "x": -0.07010502, + "y": -0.99753964, + "z": 0.0 + }, + "yAxis": { + "x": 0.99753964, + "y": -0.07010502, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.045, + "y": 53.569798, + "z": 15.75 + }, + "xAxis": { + "x": 0.07010502, + "y": 0.99753964, + "z": 0.0 + }, + "yAxis": { + "x": -0.99753964, + "y": 0.07010502, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.93343, + "y": 52.41561, + "z": 18.5 + }, + "xAxis": { + "x": -0.105049685, + "y": -0.99446696, + "z": 0.0 + }, + "yAxis": { + "x": 0.99446696, + "y": -0.105049685, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.056564, + "y": 53.73439, + "z": 18.5 + }, + "xAxis": { + "x": 0.105049685, + "y": 0.99446696, + "z": 0.0 + }, + "yAxis": { + "x": -0.99446696, + "y": 0.105049685, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.9161, + "y": 52.251526, + "z": 21.25 + }, + "xAxis": { + "x": -0.13986507, + "y": -0.9901706, + "z": 0.0 + }, + "yAxis": { + "x": 0.9901706, + "y": -0.13986507, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.0739, + "y": 53.898476, + "z": 21.25 + }, + "xAxis": { + "x": 0.13986507, + "y": 0.9901706, + "z": 0.0 + }, + "yAxis": { + "x": -0.9901706, + "y": 0.13986507, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.89302, + "y": 52.088146, + "z": 24.0 + }, + "xAxis": { + "x": -0.17450835, + "y": -0.9846557, + "z": 0.0 + }, + "yAxis": { + "x": 0.9846557, + "y": -0.17450835, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.09698, + "y": 54.061855, + "z": 24.0 + }, + "xAxis": { + "x": 0.17450835, + "y": 0.9846557, + "z": 0.0 + }, + "yAxis": { + "x": -0.9846557, + "y": 0.17450835, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.86423, + "y": 51.92568, + "z": 26.75 + }, + "xAxis": { + "x": -0.20893688, + "y": -0.9779291, + "z": 0.0 + }, + "yAxis": { + "x": 0.9779291, + "y": -0.20893688, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.12577, + "y": 54.224323, + "z": 26.75 + }, + "xAxis": { + "x": 0.20893688, + "y": 0.9779291, + "z": 0.0 + }, + "yAxis": { + "x": -0.9779291, + "y": 0.20893688, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 90.82975, + "y": 51.76432, + "z": 29.5 + }, + "xAxis": { + "x": -0.2431083, + "y": -0.96999913, + "z": 0.0 + }, + "yAxis": { + "x": 0.96999913, + "y": -0.2431083, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.16025, + "y": 54.38568, + "z": 29.5 + }, + "xAxis": { + "x": 0.2431083, + "y": 0.96999913, + "z": 0.0 + }, + "yAxis": { + "x": -0.96999913, + "y": 0.2431083, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 102.20036, + "y": 54.54573, + "z": 32.25 + }, + "xAxis": { + "x": 0.27698058, + "y": 0.9608755, + "z": 0.0 + }, + "yAxis": { + "x": -0.9608755, + "y": 0.27698058, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 45.375, + "y": 54.725, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 51.485588, + "y": 40.95571, + "z": 19.843536 + }, + "xAxis": { + "x": 0.27845958, + "y": 0.96043295, + "z": -0.005372493 + }, + "yAxis": { + "x": -0.96044517, + "y": 0.27844098, + "z": -0.0039567803 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 49.834698, + "y": 41.50353, + "z": 35.222263 + }, + "xAxis": { + "x": 0.5149919, + "y": 0.8566643, + "z": 0.030161077 + }, + "yAxis": { + "x": -0.85701746, + "y": 0.5152826, + "z": -0.0022270726 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 48.120445, + "y": 41.97389, + "z": 50.59662 + }, + "xAxis": { + "x": 0.7164653, + "y": 0.6946782, + "z": 0.064028785 + }, + "yAxis": { + "x": -0.69647485, + "y": 0.7175303, + "z": 0.008549463 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.80656, + "y": 39.770363, + "z": 67.56667 + }, + "xAxis": { + "x": 0.7943083, + "y": 0.60160464, + "z": -0.08453533 + }, + "yAxis": { + "x": -0.60502017, + "y": 0.7959482, + "z": -0.020422135 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.582985, + "y": 47.75545, + "z": 57.15541 + }, + "xAxis": { + "x": 0.6794164, + "y": 0.7309226, + "z": 0.06438576 + }, + "yAxis": { + "x": -0.7326616, + "y": 0.6805731, + "z": 0.00522045 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.269337, + "y": 47.995308, + "z": 9.409954 + }, + "xAxis": { + "x": 0.10920695, + "y": 0.9939523, + "z": -0.011518981 + }, + "yAxis": { + "x": -0.9939378, + "y": 0.10933885, + "z": 0.011518218 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.827286, + "y": 38.95432, + "z": 9.409954 + }, + "xAxis": { + "x": -0.057559993, + "y": -0.9982756, + "z": -0.011518981 + }, + "yAxis": { + "x": 0.99826795, + "y": -0.05769246, + "z": 0.011518218 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.396454, + "y": 48.638462, + "z": 14.600888 + }, + "xAxis": { + "x": 0.19454207, + "y": 0.98089415, + "z": 0.00010787898 + }, + "yAxis": { + "x": -0.98085433, + "y": 0.19453317, + "z": 0.009034589 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.733665, + "y": 38.305443, + "z": 14.600888 + }, + "xAxis": { + "x": -0.14345708, + "y": -0.9896565, + "z": 0.000107879794 + }, + "yAxis": { + "x": 0.9896163, + "y": -0.14345026, + "z": 0.009034589 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 57.112694, + "y": 35.759766, + "z": 61.560345 + }, + "xAxis": { + "x": -0.7932394, + "y": -0.60035086, + "z": 0.10173498 + }, + "yAxis": { + "x": 0.60577154, + "y": -0.7949998, + "z": 0.03187758 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.554153, + "y": 49.211525, + "z": 19.79919 + }, + "xAxis": { + "x": 0.2783782, + "y": 0.9603978, + "z": 0.011905654 + }, + "yAxis": { + "x": -0.9604634, + "y": 0.27830347, + "z": 0.007561558 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.60587, + "y": 37.72498, + "z": 19.79919 + }, + "xAxis": { + "x": -0.22824256, + "y": -0.9735315, + "z": 0.011905654 + }, + "yAxis": { + "x": 0.97359324, + "y": -0.22816455, + "z": 0.007561558 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.73624, + "y": 49.71204, + "z": 25.004183 + }, + "xAxis": { + "x": 0.36007878, + "y": 0.9326187, + "z": 0.023784777 + }, + "yAxis": { + "x": -0.9329199, + "y": 0.36001375, + "z": 0.007110307 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.449963, + "y": 37.215702, + "z": 25.004183 + }, + "xAxis": { + "x": -0.31127277, + "y": -0.95002294, + "z": 0.023784777 + }, + "yAxis": { + "x": 0.9503204, + "y": -0.3111922, + "z": 0.0071103075 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.93634, + "y": 50.138107, + "z": 30.215136 + }, + "xAxis": { + "x": 0.43902367, + "y": 0.8977677, + "z": 0.035655063 + }, + "yAxis": { + "x": -0.89843285, + "y": 0.43904373, + "z": 0.0076842625 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.272205, + "y": 36.77984, + "z": 30.215136 + }, + "xAxis": { + "x": -0.39191732, + "y": -0.91930926, + "z": 0.035655063 + }, + "yAxis": { + "x": 0.9199745, + "y": -0.3919029, + "z": 0.007684263 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 48.147938, + "y": 50.48839, + "z": 35.43128 + }, + "xAxis": { + "x": 0.5146135, + "y": 0.8561096, + "z": 0.047426403 + }, + "yAxis": { + "x": -0.85726404, + "y": 0.5147934, + "z": 0.009279067 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 58.07904, + "y": 36.41906, + "z": 35.43128 + }, + "xAxis": { + "x": -0.46956405, + "y": -0.8816237, + "z": 0.0474264 + }, + "yAxis": { + "x": 0.8827859, + "y": -0.4696839, + "z": 0.009279068 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 48.364437, + "y": 50.76213, + "z": 40.651794 + }, + "xAxis": { + "x": 0.5862744, + "y": 0.80796057, + "z": 0.05900942 + }, + "yAxis": { + "x": -0.8097261, + "y": 0.5866876, + "z": 0.011882613 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 57.877014, + "y": 36.13447, + "z": 40.651794 + }, + "xAxis": { + "x": -0.54362345, + "y": -0.8372523, + "z": 0.059009418 + }, + "yAxis": { + "x": 0.83903694, + "y": -0.5439447, + "z": 0.011882613 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 48.579193, + "y": 50.959145, + "z": 45.875843 + }, + "xAxis": { + "x": 0.6534623, + "y": 0.7536861, + "z": 0.07031619 + }, + "yAxis": { + "x": -0.7561799, + "y": 0.65418077, + "z": 0.015475135 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 57.672756, + "y": 35.926598, + "z": 45.875843 + }, + "xAxis": { + "x": -0.61353326, + "y": -0.786532, + "z": 0.07031619 + }, + "yAxis": { + "x": 0.7890597, + "y": -0.61412156, + "z": 0.015475135 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 48.78559, + "y": 51.079834, + "z": 51.102547 + }, + "xAxis": { + "x": 0.7156672, + "y": 0.69369817, + "z": 0.08126087 + }, + "yAxis": { + "x": -0.697032, + "y": 0.7167603, + "z": 0.02002936 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 57.472893, + "y": 35.79538, + "z": 51.102547 + }, + "xAxis": { + "x": -0.6787628, + "y": -0.7298477, + "z": 0.08126087 + }, + "yAxis": { + "x": 0.7332337, + "y": -0.67968166, + "z": 0.02002936 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 57.284035, + "y": 35.740173, + "z": 56.331017 + }, + "xAxis": { + "x": -0.73881686, + "y": -0.66762996, + "z": 0.09176037 + }, + "yAxis": { + "x": 0.67198265, + "y": -0.7401274, + "z": 0.025510713 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 50.242847, + "y": 44.29081, + "z": 9.526838 + }, + "xAxis": { + "x": 0.10892762, + "y": 0.99323225, + "z": -0.040304422 + }, + "yAxis": { + "x": -0.99381554, + "y": 0.10969242, + "z": 0.017270565 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 55.66583, + "y": 42.499775, + "z": 9.526838 + }, + "xAxis": { + "x": -0.05731835, + "y": -0.9975421, + "z": -0.040304422 + }, + "yAxis": { + "x": 0.9981642, + "y": -0.058051888, + "z": 0.017270565 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 50.038944, + "y": 44.69023, + "z": 14.687076 + }, + "xAxis": { + "x": 0.19433697, + "y": 0.98051536, + "z": -0.028684698 + }, + "yAxis": { + "x": -0.98072904, + "y": 0.19481203, + "z": 0.014790977 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 55.890152, + "y": 42.111454, + "z": 14.687076 + }, + "xAxis": { + "x": -0.14327188, + "y": -0.9892676, + "z": -0.028684696 + }, + "yAxis": { + "x": 0.98950565, + "y": -0.14373523, + "z": 0.014790977 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 57.74928, + "y": 40.456882, + "z": 61.2278 + }, + "xAxis": { + "x": -0.79476863, + "y": -0.602499, + "z": 0.07306016 + }, + "yAxis": { + "x": 0.60588014, + "y": -0.79466546, + "z": 0.03763135 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.845997, + "y": 45.04937, + "z": 19.850695 + }, + "xAxis": { + "x": 0.27827647, + "y": 0.9603525, + "z": -0.01688993 + }, + "yAxis": { + "x": -0.96034163, + "y": 0.27850762, + "z": 0.013321155 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.66046, + "y": 45.367397, + "z": 25.017279 + }, + "xAxis": { + "x": 0.36010888, + "y": 0.93289685, + "z": -0.0050096633 + }, + "yAxis": { + "x": -0.93280804, + "y": 0.36014372, + "z": 0.012872256 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 56.30321, + "y": 41.454807, + "z": 25.017279 + }, + "xAxis": { + "x": -0.3112884, + "y": -0.9503023, + "z": -0.005009663 + }, + "yAxis": { + "x": 0.9502154, + "y": -0.3113278, + "z": 0.012872256 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.478764, + "y": 45.6438, + "z": 30.186392 + }, + "xAxis": { + "x": 0.43921292, + "y": 0.89835674, + "z": 0.006865911 + }, + "yAxis": { + "x": -0.89833724, + "y": 0.4391006, + "z": 0.01344769 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 56.49899, + "y": 41.188194, + "z": 30.186392 + }, + "xAxis": { + "x": -0.3920758, + "y": -0.9199073, + "z": 0.0068659107 + }, + "yAxis": { + "x": 0.919882, + "y": -0.39196464, + "z": 0.01344769 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.29728, + "y": 45.878372, + "z": 35.357582 + }, + "xAxis": { + "x": 0.51498806, + "y": 0.8569945, + "z": 0.018646639 + }, + "yAxis": { + "x": -0.857191, + "y": 0.51477885, + "z": 0.015043086 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.112404, + "y": 46.07123, + "z": 40.530376 + }, + "xAxis": { + "x": 0.58685905, + "y": 0.8091241, + "z": 0.030243082 + }, + "yAxis": { + "x": -0.8096817, + "y": 0.58660394, + "z": 0.017646333 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 56.887, + "y": 40.780315, + "z": 40.530376 + }, + "xAxis": { + "x": -0.5441471, + "y": -0.8384446, + "z": 0.030243078 + }, + "yAxis": { + "x": 0.8389882, + "y": -0.5438634, + "z": 0.017646333 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 48.920536, + "y": 46.222816, + "z": 45.704285 + }, + "xAxis": { + "x": 0.6542803, + "y": 0.7551089, + "z": 0.0415672 + }, + "yAxis": { + "x": -0.75617, + "y": 0.65403056, + "z": 0.02123767 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 57.086468, + "y": 40.638874, + "z": 45.704285 + }, + "xAxis": { + "x": -0.61427647, + "y": -0.7879953, + "z": 0.0415672 + }, + "yAxis": { + "x": 0.789042, + "y": -0.61397207, + "z": 0.02123767 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 48.71814, + "y": 46.333874, + "z": 50.878826 + }, + "xAxis": { + "x": 0.7167399, + "y": 0.69535905, + "z": 0.05253303 + }, + "yAxis": { + "x": -0.697062, + "y": 0.71654683, + "z": 0.02578983 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 57.514145, + "y": 40.478188, + "z": 56.053493 + }, + "xAxis": { + "x": -0.7400647, + "y": -0.669573, + "z": 0.06305731 + }, + "yAxis": { + "x": 0.6720438, + "y": -0.73985094, + "z": 0.031268254 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.844643, + "y": 43.78395, + "z": 9.483663 + }, + "xAxis": { + "x": -0.10892762, + "y": -0.99323225, + "z": 0.040304422 + }, + "yAxis": { + "x": 0.99381554, + "y": -0.10969242, + "z": -0.017270565 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.04395, + "y": 42.767517, + "z": 9.483663 + }, + "xAxis": { + "x": 0.05731835, + "y": 0.9975421, + "z": 0.040304422 + }, + "yAxis": { + "x": -0.9981642, + "y": 0.058051888, + "z": -0.017270565 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.580067, + "y": 43.788826, + "z": 14.655391 + }, + "xAxis": { + "x": -0.19433697, + "y": -0.98051536, + "z": 0.028684698 + }, + "yAxis": { + "x": 0.98072904, + "y": -0.19481203, + "z": -0.014790977 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.308426, + "y": 42.776356, + "z": 14.655391 + }, + "xAxis": { + "x": 0.14327188, + "y": 0.9892676, + "z": 0.028684696 + }, + "yAxis": { + "x": -0.98950565, + "y": 0.14373523, + "z": -0.014790977 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.945885, + "y": 44.138916, + "z": 61.09022 + }, + "xAxis": { + "x": 0.79476863, + "y": 0.602499, + "z": -0.07306016 + }, + "yAxis": { + "x": -0.60588014, + "y": 0.79466546, + "z": -0.03763135 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.594017, + "y": 42.82002, + "z": 19.825819 + }, + "xAxis": { + "x": 0.22814333, + "y": 0.97348106, + "z": 0.01688993 + }, + "yAxis": { + "x": -0.9734822, + "y": 0.22837472, + "z": -0.013321155 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.979424, + "y": 43.69965, + "z": 24.994482 + }, + "xAxis": { + "x": -0.36010888, + "y": -0.93289685, + "z": 0.0050096633 + }, + "yAxis": { + "x": 0.93280804, + "y": -0.36014372, + "z": -0.012872256 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.90364, + "y": 42.896534, + "z": 24.994482 + }, + "xAxis": { + "x": 0.3112884, + "y": 0.9503023, + "z": 0.005009663 + }, + "yAxis": { + "x": -0.9502154, + "y": 0.3113278, + "z": -0.012872256 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.637928, + "y": 43.610077, + "z": 30.160927 + }, + "xAxis": { + "x": -0.43921292, + "y": -0.89835674, + "z": -0.006865911 + }, + "yAxis": { + "x": 0.89833724, + "y": -0.4391006, + "z": -0.01344769 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 52.24004, + "y": 43.003685, + "z": 30.160927 + }, + "xAxis": { + "x": 0.3920758, + "y": 0.9199073, + "z": -0.0068659107 + }, + "yAxis": { + "x": -0.919882, + "y": 0.39196464, + "z": -0.01344769 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 52.605736, + "y": 43.139015, + "z": 35.32472 + }, + "xAxis": { + "x": 0.4698923, + "y": 0.8825268, + "z": -0.018646637 + }, + "yAxis": { + "x": -0.8827122, + "y": 0.4696732, + "z": -0.015043086 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 52.860596, + "y": 43.353817, + "z": 40.485443 + }, + "xAxis": { + "x": -0.58685905, + "y": -0.8091241, + "z": -0.030243082 + }, + "yAxis": { + "x": 0.8096817, + "y": -0.58660394, + "z": -0.017646333 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.003044, + "y": 43.299873, + "z": 40.485443 + }, + "xAxis": { + "x": 0.5441471, + "y": 0.8384446, + "z": -0.030243078 + }, + "yAxis": { + "x": -0.8389882, + "y": 0.5438634, + "z": -0.017646333 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 52.420673, + "y": 43.192875, + "z": 45.642704 + }, + "xAxis": { + "x": -0.6542803, + "y": -0.7551089, + "z": -0.0415672 + }, + "yAxis": { + "x": 0.75617, + "y": -0.65403056, + "z": -0.02123767 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.43404, + "y": 43.48339, + "z": 45.642704 + }, + "xAxis": { + "x": 0.61427647, + "y": 0.7879953, + "z": -0.0415672 + }, + "yAxis": { + "x": -0.789042, + "y": 0.61397207, + "z": -0.02123767 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.900524, + "y": 43.686546, + "z": 50.796143 + }, + "xAxis": { + "x": 0.679748, + "y": 0.73156196, + "z": -0.052533027 + }, + "yAxis": { + "x": -0.7332527, + "y": 0.679467, + "z": -0.02578983 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.404057, + "y": 43.906155, + "z": 55.945415 + }, + "xAxis": { + "x": 0.7400647, + "y": 0.669573, + "z": -0.06305731 + }, + "yAxis": { + "x": -0.6720438, + "y": 0.73985094, + "z": -0.031268254 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.551308, + "y": 46.757034, + "z": 9.425473 + }, + "xAxis": { + "x": -0.109098285, + "y": -0.99296325, + "z": 0.04606011 + }, + "yAxis": { + "x": 0.9940102, + "y": -0.10867956, + "z": 0.011506757 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.49631, + "y": 39.606373, + "z": 9.425473 + }, + "xAxis": { + "x": 0.05750272, + "y": 0.99728227, + "z": 0.04606011 + }, + "yAxis": { + "x": -0.99830616, + "y": 0.05703031, + "z": 0.011506757 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.529472, + "y": 46.431557, + "z": 14.644621 + }, + "xAxis": { + "x": -0.19451085, + "y": -0.9802955, + "z": 0.03444238 + }, + "yAxis": { + "x": 0.98087513, + "y": -0.1941341, + "z": 0.01399647 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.501255, + "y": 39.93254, + "z": 14.644621 + }, + "xAxis": { + "x": 0.14345692, + "y": 0.98905706, + "z": 0.03444238 + }, + "yAxis": { + "x": -0.9896164, + "y": 0.14305064, + "z": 0.01399647 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.246075, + "y": 44.7941, + "z": 61.34412 + }, + "xAxis": { + "x": 0.79513997, + "y": 0.6026788, + "z": -0.067310445 + }, + "yAxis": { + "x": -0.60450464, + "y": 0.7965515, + "z": -0.008930329 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.455135, + "y": 46.052197, + "z": 19.859644 + }, + "xAxis": { + "x": -0.27845782, + "y": -0.96018136, + "z": 0.022649035 + }, + "yAxis": { + "x": 0.96041036, + "y": -0.27815926, + "z": 0.015472455 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.555836, + "y": 40.315243, + "z": 19.859644 + }, + "xAxis": { + "x": 0.2283333, + "y": 0.97331953, + "z": 0.022649035 + }, + "yAxis": { + "x": -0.97353274, + "y": 0.22802326, + "z": 0.015472455 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.323868, + "y": 45.62373, + "z": 25.069738 + }, + "xAxis": { + "x": -0.36030182, + "y": -0.9327736, + "z": 0.010769615 + }, + "yAxis": { + "x": 0.9327712, + "y": -0.36011705, + "z": 0.015923508 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.664726, + "y": 40.74994, + "z": 25.069738 + }, + "xAxis": { + "x": 0.31148747, + "y": 0.95018923, + "z": 0.010769615 + }, + "yAxis": { + "x": -0.95017725, + "y": 0.31130308, + "z": 0.015923508 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.13167, + "y": 45.151306, + "z": 30.27414 + }, + "xAxis": { + "x": -0.4394216, + "y": -0.89828026, + "z": -0.0011056977 + }, + "yAxis": { + "x": 0.89816755, + "y": -0.43938535, + "z": 0.015346202 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.832188, + "y": 41.231686, + "z": 30.27414 + }, + "xAxis": { + "x": 0.39228815, + "y": 0.9198417, + "z": -0.0011056972 + }, + "yAxis": { + "x": -0.9197273, + "y": 0.3922578, + "z": 0.015346201 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.875008, + "y": 44.64041, + "z": 35.472122 + }, + "xAxis": { + "x": -0.51521647, + "y": -0.8569632, + "z": -0.01288675 + }, + "yAxis": { + "x": 0.8568621, + "y": -0.5153624, + "z": 0.013744922 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.06203, + "y": 41.75519, + "z": 35.472122 + }, + "xAxis": { + "x": 0.47012198, + "y": 0.8825074, + "z": -0.012886748 + }, + "yAxis": { + "x": -0.882414, + "y": 0.47027296, + "z": 0.013744921 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.55084, + "y": 44.09682, + "z": 40.663013 + }, + "xAxis": { + "x": -0.58711094, + "y": -0.8091361, + "z": -0.0244841 + }, + "yAxis": { + "x": 0.80916846, + "y": -0.58747125, + "z": 0.011131824 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.3576, + "y": 42.314846, + "z": 40.663013 + }, + "xAxis": { + "x": 0.544398, + "y": 0.8384696, + "z": -0.024484096 + }, + "yAxis": { + "x": -0.8385206, + "y": 0.5447562, + "z": 0.011131824 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.15662, + "y": 43.52656, + "z": 45.846188 + }, + "xAxis": { + "x": -0.6545593, + "y": -0.75516206, + "z": -0.035809703 + }, + "yAxis": { + "x": 0.75544864, + "y": -0.65516466, + "z": 0.0075267456 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.72174, + "y": 42.90477, + "z": 45.846188 + }, + "xAxis": { + "x": 0.6145524, + "y": 0.7880628, + "z": -0.035809703 + }, + "yAxis": { + "x": -0.7883804, + "y": 0.61514205, + "z": 0.0075267456 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 56.69036, + "y": 42.935856, + "z": 51.021084 + }, + "xAxis": { + "x": -0.71704954, + "y": -0.69545084, + "z": -0.046777584 + }, + "yAxis": { + "x": 0.6961105, + "y": -0.7179286, + "z": 0.0029570558 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.15677, + "y": 43.51884, + "z": 51.021084 + }, + "xAxis": { + "x": 0.68005246, + "y": 0.73166966, + "z": -0.046777584 + }, + "yAxis": { + "x": -0.732374, + "y": 0.68089616, + "z": 0.0029570556 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.66447, + "y": 44.150764, + "z": 56.187206 + }, + "xAxis": { + "x": 0.7404011, + "y": 0.6697182, + "z": -0.057304468 + }, + "yAxis": { + "x": -0.6709266, + "y": 0.74151945, + "z": -0.0025425535 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 58.17698, + "y": 50.674633, + "z": 10.192922 + }, + "xAxis": { + "x": 0.9940102, + "y": -0.10867956, + "z": 0.011506757 + }, + "yAxis": { + "x": 0.109098285, + "y": 0.99296325, + "z": -0.04606011 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 48.07312, + "y": 35.713432, + "z": 10.192922 + }, + "xAxis": { + "x": -0.99830616, + "y": 0.05703031, + "z": 0.011506757 + }, + "yAxis": { + "x": -0.05750272, + "y": -0.99728227, + "z": -0.04606011 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 58.490673, + "y": 50.358227, + "z": 15.454828 + }, + "xAxis": { + "x": 0.98087513, + "y": -0.1941341, + "z": 0.01399647 + }, + "yAxis": { + "x": 0.19451085, + "y": 0.9802955, + "z": -0.03444238 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.06653, + "y": 36.918842, + "z": 15.49358 + }, + "xAxis": { + "x": 0.14345692, + "y": 0.98905706, + "z": 0.03444238 + }, + "yAxis": { + "x": -0.9896164, + "y": 0.14305064, + "z": 0.01399647 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.88899, + "y": 43.032024, + "z": 62.49795 + }, + "xAxis": { + "x": 0.79513997, + "y": 0.6026788, + "z": -0.067310445 + }, + "yAxis": { + "x": -0.60450464, + "y": 0.7965515, + "z": -0.008930329 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 58.751194, + "y": 49.958496, + "z": 20.713966 + }, + "xAxis": { + "x": 0.96041036, + "y": -0.27815926, + "z": 0.015472455 + }, + "yAxis": { + "x": 0.27845782, + "y": 0.96018136, + "z": -0.022649035 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 46.866417, + "y": 37.35993, + "z": 20.744463 + }, + "xAxis": { + "x": 0.2283333, + "y": 0.97331953, + "z": 0.022649035 + }, + "yAxis": { + "x": -0.97353274, + "y": 0.22802326, + "z": 0.015472455 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 58.95157, + "y": 49.480366, + "z": 25.969194 + }, + "xAxis": { + "x": 0.9327712, + "y": -0.36011705, + "z": 0.015923508 + }, + "yAxis": { + "x": 0.36030182, + "y": 0.9327736, + "z": -0.010769615 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 46.726746, + "y": 37.875153, + "z": 25.99055 + }, + "xAxis": { + "x": 0.31148747, + "y": 0.95018923, + "z": 0.010769615 + }, + "yAxis": { + "x": -0.95017725, + "y": 0.31130308, + "z": 0.015923508 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 59.08528, + "y": 48.92937, + "z": 31.219404 + }, + "xAxis": { + "x": 0.89816755, + "y": -0.43938535, + "z": 0.015346202 + }, + "yAxis": { + "x": 0.4394216, + "y": 0.89828026, + "z": 0.0011056977 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.07561, + "y": 37.409286, + "z": 31.219404 + }, + "xAxis": { + "x": -0.9197273, + "y": 0.3922578, + "z": 0.015346201 + }, + "yAxis": { + "x": -0.39228815, + "y": -0.9198417, + "z": 0.0011056972 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 59.146324, + "y": 48.311592, + "z": 36.463524 + }, + "xAxis": { + "x": 0.8568621, + "y": -0.5153624, + "z": 0.013744922 + }, + "yAxis": { + "x": 0.51521647, + "y": 0.8569632, + "z": 0.01288675 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 46.982643, + "y": 38.02307, + "z": 36.463524 + }, + "xAxis": { + "x": -0.882414, + "y": 0.47027296, + "z": 0.013744921 + }, + "yAxis": { + "x": -0.47012198, + "y": -0.8825074, + "z": 0.012886748 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 59.12924, + "y": 47.63361, + "z": 41.70053 + }, + "xAxis": { + "x": 0.80916846, + "y": -0.58747125, + "z": 0.011131824 + }, + "yAxis": { + "x": 0.58711094, + "y": 0.8091361, + "z": 0.0244841 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 46.729275, + "y": 39.807606, + "z": 41.68985 + }, + "xAxis": { + "x": 0.544398, + "y": 0.8384696, + "z": -0.024484096 + }, + "yAxis": { + "x": -0.8385206, + "y": 0.5447562, + "z": 0.011131824 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 59.029163, + "y": 46.902477, + "z": 46.92945 + }, + "xAxis": { + "x": 0.75544864, + "y": -0.65516466, + "z": 0.0075267456 + }, + "yAxis": { + "x": 0.6545593, + "y": 0.75516206, + "z": 0.035809703 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.026634, + "y": 39.436367, + "z": 46.92945 + }, + "xAxis": { + "x": -0.7883804, + "y": 0.61514205, + "z": 0.0075267456 + }, + "yAxis": { + "x": -0.6145524, + "y": -0.7880628, + "z": 0.035809703 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 58.841858, + "y": 46.125637, + "z": 52.149372 + }, + "xAxis": { + "x": 0.6961105, + "y": -0.7179286, + "z": 0.0029570558 + }, + "yAxis": { + "x": 0.71704954, + "y": 0.69545084, + "z": 0.046777584 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 47.13158, + "y": 41.35192, + "z": 52.11432 + }, + "xAxis": { + "x": 0.68005246, + "y": 0.73166966, + "z": -0.046777584 + }, + "yAxis": { + "x": -0.732374, + "y": 0.68089616, + "z": 0.0029570556 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 47.408955, + "y": 41.049934, + "z": 57.35946 + }, + "xAxis": { + "x": -0.6709266, + "y": 0.74151945, + "z": -0.0025425535 + }, + "yAxis": { + "x": -0.7404011, + "y": -0.6697182, + "z": 0.057304468 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 55.203587, + "y": 54.381046, + "z": 10.13475 + }, + "xAxis": { + "x": 0.9939242, + "y": -0.10870338, + "z": 0.017270565 + }, + "yAxis": { + "x": 0.10900006, + "y": 0.99389154, + "z": -0.017279448 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 51.234562, + "y": 32.166058, + "z": 10.13475 + }, + "xAxis": { + "x": -0.99822146, + "y": 0.057058554, + "z": 0.017270565 + }, + "yAxis": { + "x": -0.057356525, + "y": -0.99820423, + "z": -0.017279448 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 55.848186, + "y": 54.307716, + "z": 15.427373 + }, + "xAxis": { + "x": 0.9807603, + "y": -0.19421336, + "z": 0.01975928 + }, + "yAxis": { + "x": 0.19435778, + "y": 0.9809144, + "z": -0.005653639 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.91004, + "y": 33.11213, + "z": 15.447703 + }, + "xAxis": { + "x": 0.14327198, + "y": 0.9896672, + "z": 0.0056536384 + }, + "yAxis": { + "x": -0.9895058, + "y": 0.14313574, + "z": 0.01975928 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.103004, + "y": 37.219273, + "z": 62.95003 + }, + "xAxis": { + "x": -0.6039796, + "y": 0.7969933, + "z": -0.0032068188 + }, + "yAxis": { + "x": -0.79350173, + "y": -0.60094726, + "z": 0.096007414 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 56.45919, + "y": 54.12126, + "z": 20.721205 + }, + "xAxis": { + "x": 0.960262, + "y": -0.27829123, + "z": 0.021233534 + }, + "yAxis": { + "x": 0.2782234, + "y": 0.9604967, + "z": 0.0061440826 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.37094, + "y": 33.321865, + "z": 20.733276 + }, + "xAxis": { + "x": 0.22808285, + "y": 0.9736223, + "z": -0.006144083 + }, + "yAxis": { + "x": -0.9733914, + "y": 0.22816275, + "z": 0.021233534 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.026962, + "y": 53.824993, + "z": 26.014841 + }, + "xAxis": { + "x": 0.932585, + "y": -0.36029866, + "z": 0.021682136 + }, + "yAxis": { + "x": 0.3599602, + "y": 0.93279356, + "z": 0.01802415 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 48.87374, + "y": 33.63624, + "z": 26.017767 + }, + "xAxis": { + "x": 0.31114525, + "y": 0.95019144, + "z": -0.01802415 + }, + "yAxis": { + "x": -0.9500007, + "y": 0.31149408, + "z": 0.021682136 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.5422, + "y": 53.423058, + "z": 31.306883 + }, + "xAxis": { + "x": 0.8979393, + "y": -0.4396131, + "z": 0.021101678 + }, + "yAxis": { + "x": 0.43894765, + "y": 0.89801514, + "z": 0.029896377 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.849457, + "y": 33.00159, + "z": 31.306883 + }, + "xAxis": { + "x": -0.91951114, + "y": 0.3924971, + "z": 0.021101676 + }, + "yAxis": { + "x": -0.3918286, + "y": -0.9195524, + "z": 0.029896375 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 57.99599, + "y": 52.920403, + "z": 36.595943 + }, + "xAxis": { + "x": 0.85658807, + "y": -0.51563245, + "z": 0.019496566 + }, + "yAxis": { + "x": 0.51458615, + "y": 0.8564255, + "z": 0.041670628 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.370228, + "y": 33.480053, + "z": 36.595943 + }, + "xAxis": { + "x": -0.8821543, + "y": 0.47055686, + "z": 0.019496566 + }, + "yAxis": { + "x": -0.4695204, + "y": -0.88193774, + "z": 0.041670624 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.37991, + "y": 52.322746, + "z": 41.880653 + }, + "xAxis": { + "x": 0.8088451, + "y": -0.58777946, + "z": 0.016878989 + }, + "yAxis": { + "x": 0.5863014, + "y": 0.8083405, + "z": 0.053257518 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 47.720192, + "y": 35.163185, + "z": 41.85155 + }, + "xAxis": { + "x": 0.5436308, + "y": 0.83763313, + "z": -0.053257514 + }, + "yAxis": { + "x": -0.8382136, + "y": 0.5450807, + "z": 0.016878989 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.686035, + "y": 51.636524, + "z": 47.15968 + }, + "xAxis": { + "x": 0.7550729, + "y": -0.65550655, + "z": 0.013268816 + }, + "yAxis": { + "x": 0.653549, + "y": 0.754125, + "z": 0.06456908 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.61459, + "y": 34.726456, + "z": 47.15968 + }, + "xAxis": { + "x": -0.7880229, + "y": 0.61550295, + "z": 0.013268816 + }, + "yAxis": { + "x": -0.61359715, + "y": -0.78697485, + "z": 0.06456908 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 58.907055, + "y": 50.86884, + "z": 52.431732 + }, + "xAxis": { + "x": 0.6956797, + "y": -0.7182995, + "z": 0.008693457 + }, + "yAxis": { + "x": 0.7158184, + "y": 0.69419074, + "z": 0.07551945 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 47.311634, + "y": 36.61097, + "z": 52.37827 + }, + "xAxis": { + "x": 0.6788883, + "y": 0.7303475, + "z": -0.07551944 + }, + "yAxis": { + "x": -0.731963, + "y": 0.6812889, + "z": 0.008693457 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.181435, + "y": 36.315254, + "z": 57.695576 + }, + "xAxis": { + "x": -0.67045957, + "y": 0.7419392, + "z": 0.0031876455 + }, + "yAxis": { + "x": -0.73900867, + "y": -0.668181, + "z": 0.08602548 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 51.31234, + "y": 54.02959, + "z": 11.035501 + }, + "xAxis": { + "x": 0.10900006, + "y": 0.99389154, + "z": -0.017279448 + }, + "yAxis": { + "x": -0.9939242, + "y": 0.10870338, + "z": -0.017270565 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 55.10237, + "y": 32.718662, + "z": 11.035501 + }, + "xAxis": { + "x": -0.057356525, + "y": -0.99820423, + "z": -0.017279448 + }, + "yAxis": { + "x": 0.99822146, + "y": -0.057058554, + "z": -0.017270565 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 52.877033, + "y": 54.912766, + "z": 16.320826 + }, + "xAxis": { + "x": 0.9807603, + "y": -0.19421336, + "z": 0.01975928 + }, + "yAxis": { + "x": 0.19435778, + "y": 0.9809144, + "z": -0.005653639 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 54.491764, + "y": 32.432827, + "z": 16.309542 + }, + "xAxis": { + "x": -0.14327198, + "y": -0.9896672, + "z": -0.0056536384 + }, + "yAxis": { + "x": 0.9895058, + "y": -0.14313574, + "z": -0.01975928 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 50.10368, + "y": 34.711525, + "z": 63.835373 + }, + "xAxis": { + "x": -0.79350173, + "y": -0.60094726, + "z": 0.096007414 + }, + "yAxis": { + "x": 0.6039796, + "y": -0.7969933, + "z": 0.0032068188 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 53.547092, + "y": 54.970543, + "z": 21.610312 + }, + "xAxis": { + "x": 0.960262, + "y": -0.27829123, + "z": 0.021233534 + }, + "yAxis": { + "x": 0.2782234, + "y": 0.9604967, + "z": 0.0061440826 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 53.880554, + "y": 32.25955, + "z": 21.58841 + }, + "xAxis": { + "x": -0.22808285, + "y": -0.9736223, + "z": 0.006144083 + }, + "yAxis": { + "x": 0.9733914, + "y": -0.22816275, + "z": -0.021233534 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 53.160744, + "y": 54.45454, + "z": 26.870817 + }, + "xAxis": { + "x": 0.3599602, + "y": 0.93279356, + "z": 0.01802415 + }, + "yAxis": { + "x": -0.932585, + "y": 0.36029866, + "z": -0.021682136 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 53.278473, + "y": 32.19851, + "z": 26.870817 + }, + "xAxis": { + "x": -0.31114525, + "y": -0.95019144, + "z": 0.01802415 + }, + "yAxis": { + "x": 0.9500007, + "y": -0.31149408, + "z": -0.021682136 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 54.810177, + "y": 54.74108, + "z": 32.196243 + }, + "xAxis": { + "x": 0.8979393, + "y": -0.4396131, + "z": 0.021101678 + }, + "yAxis": { + "x": 0.43894765, + "y": 0.89801514, + "z": 0.029896377 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 52.69517, + "y": 32.248535, + "z": 32.155445 + }, + "xAxis": { + "x": -0.3918286, + "y": -0.9195524, + "z": 0.029896375 + }, + "yAxis": { + "x": 0.91951114, + "y": -0.3924971, + "z": -0.021101676 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 55.38362, + "y": 54.45938, + "z": 37.4899 + }, + "xAxis": { + "x": 0.85658807, + "y": -0.51563245, + "z": 0.019496566 + }, + "yAxis": { + "x": 0.51458615, + "y": 0.8564255, + "z": 0.041670628 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 52.140167, + "y": 32.407604, + "z": 37.440968 + }, + "xAxis": { + "x": -0.4695204, + "y": -0.88193774, + "z": 0.041670624 + }, + "yAxis": { + "x": 0.8821543, + "y": -0.47055686, + "z": -0.019496566 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 54.78965, + "y": 53.89502, + "z": 42.726036 + }, + "xAxis": { + "x": 0.5863014, + "y": 0.8083405, + "z": 0.053257518 + }, + "yAxis": { + "x": -0.8088451, + "y": 0.58777946, + "z": -0.016878989 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 51.62276, + "y": 32.67288, + "z": 42.726036 + }, + "xAxis": { + "x": -0.5436308, + "y": -0.83763313, + "z": 0.053257514 + }, + "yAxis": { + "x": 0.8382136, + "y": -0.5450807, + "z": -0.016878989 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 55.240757, + "y": 53.503296, + "z": 48.009323 + }, + "xAxis": { + "x": 0.653549, + "y": 0.754125, + "z": 0.06456908 + }, + "yAxis": { + "x": -0.7550729, + "y": 0.65550655, + "z": -0.013268816 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 51.151966, + "y": 33.040703, + "z": 48.009323 + }, + "xAxis": { + "x": -0.61359715, + "y": -0.78697485, + "z": 0.06456908 + }, + "yAxis": { + "x": 0.7880229, + "y": -0.61550295, + "z": -0.013268816 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 56.76078, + "y": 52.997154, + "z": 53.35687 + }, + "xAxis": { + "x": 0.6956797, + "y": -0.7182995, + "z": 0.008693457 + }, + "yAxis": { + "x": 0.7158184, + "y": 0.69419074, + "z": 0.07551945 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 50.73644, + "y": 33.506657, + "z": 53.2895 + }, + "xAxis": { + "x": -0.6788883, + "y": -0.7303475, + "z": 0.07551944 + }, + "yAxis": { + "x": 0.731963, + "y": -0.6812889, + "z": -0.008693457 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 50.384426, + "y": 34.065556, + "z": 58.56527 + }, + "xAxis": { + "x": -0.73900867, + "y": -0.668181, + "z": 0.08602548 + }, + "yAxis": { + "x": 0.67045957, + "y": -0.7419392, + "z": -0.0031876455 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 47.60592, + "y": 51.05872, + "z": 11.170829 + }, + "xAxis": { + "x": 0.10920695, + "y": 0.9939523, + "z": -0.011518981 + }, + "yAxis": { + "x": -0.9939378, + "y": 0.10933885, + "z": 0.011518218 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 58.649883, + "y": 35.877586, + "z": 11.170829 + }, + "xAxis": { + "x": -0.057559993, + "y": -0.9982756, + "z": -0.011518981 + }, + "yAxis": { + "x": 0.99826795, + "y": -0.05769246, + "z": 0.011518218 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 48.92792, + "y": 52.2711, + "z": 16.39033 + }, + "xAxis": { + "x": 0.98085433, + "y": -0.19453317, + "z": -0.009034589 + }, + "yAxis": { + "x": 0.19454207, + "y": 0.98089415, + "z": 0.00010787898 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 58.298935, + "y": 35.2753, + "z": 16.397472 + }, + "xAxis": { + "x": -0.14345708, + "y": -0.9896565, + "z": 0.000107879794 + }, + "yAxis": { + "x": 0.9896163, + "y": -0.14345026, + "z": 0.009034589 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 54.807735, + "y": 34.06154, + "z": 63.65835 + }, + "xAxis": { + "x": -0.7932394, + "y": -0.60035086, + "z": 0.10173498 + }, + "yAxis": { + "x": 0.60577154, + "y": -0.7949998, + "z": 0.03187758 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 49.384663, + "y": 52.67876, + "z": 21.635231 + }, + "xAxis": { + "x": 0.9604634, + "y": -0.27830347, + "z": -0.007561558 + }, + "yAxis": { + "x": 0.2783782, + "y": 0.9603978, + "z": 0.011905654 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 57.91894, + "y": 34.76385, + "z": 21.631756 + }, + "xAxis": { + "x": -0.22824256, + "y": -0.9735315, + "z": 0.011905654 + }, + "yAxis": { + "x": 0.97359324, + "y": -0.22816455, + "z": 0.007561558 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 48.8158, + "y": 52.530113, + "z": 26.872728 + }, + "xAxis": { + "x": 0.36007878, + "y": 0.9326187, + "z": 0.023784777 + }, + "yAxis": { + "x": -0.9329199, + "y": 0.36001375, + "z": 0.007110307 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 57.517868, + "y": 34.345478, + "z": 26.872728 + }, + "xAxis": { + "x": -0.31127277, + "y": -0.95002294, + "z": 0.023784777 + }, + "yAxis": { + "x": 0.9503204, + "y": -0.3111922, + "z": 0.0071103075 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 50.315998, + "y": 53.198963, + "z": 32.141766 + }, + "xAxis": { + "x": 0.89843285, + "y": -0.43904373, + "z": -0.0076842625 + }, + "yAxis": { + "x": 0.43902367, + "y": 0.8977677, + "z": 0.035655063 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 57.10385, + "y": 34.02172, + "z": 32.119392 + }, + "xAxis": { + "x": -0.39191732, + "y": -0.91930926, + "z": 0.035655063 + }, + "yAxis": { + "x": 0.9199745, + "y": -0.3919029, + "z": 0.007684263 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 49.676033, + "y": 53.0383, + "z": 37.370697 + }, + "xAxis": { + "x": 0.5146135, + "y": 0.8561096, + "z": 0.047426403 + }, + "yAxis": { + "x": -0.85726404, + "y": 0.5147934, + "z": 0.009279067 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.68512, + "y": 33.7934, + "z": 37.370697 + }, + "xAxis": { + "x": -0.46956405, + "y": -0.8816237, + "z": 0.0474264 + }, + "yAxis": { + "x": 0.8827859, + "y": -0.4696839, + "z": 0.009279068 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.09754, + "y": 53.14939, + "z": 42.625572 + }, + "xAxis": { + "x": 0.5862744, + "y": 0.80796057, + "z": 0.05900942 + }, + "yAxis": { + "x": -0.8097261, + "y": 0.5866876, + "z": 0.011882613 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 56.26993, + "y": 33.660618, + "z": 42.625572 + }, + "xAxis": { + "x": -0.54362345, + "y": -0.8372523, + "z": 0.059009418 + }, + "yAxis": { + "x": 0.83903694, + "y": -0.5439447, + "z": 0.011882613 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 50.502357, + "y": 53.166313, + "z": 47.882904 + }, + "xAxis": { + "x": 0.6534623, + "y": 0.7536861, + "z": 0.07031619 + }, + "yAxis": { + "x": -0.7561799, + "y": 0.65418077, + "z": 0.015475135 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 55.86654, + "y": 33.622746, + "z": 47.882904 + }, + "xAxis": { + "x": -0.61353326, + "y": -0.786532, + "z": 0.07031619 + }, + "yAxis": { + "x": 0.7890597, + "y": -0.61412156, + "z": 0.015475135 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 52.01258, + "y": 53.072388, + "z": 53.19055 + }, + "xAxis": { + "x": 0.697032, + "y": -0.7167603, + "z": -0.02002936 + }, + "yAxis": { + "x": 0.7156672, + "y": 0.69369817, + "z": 0.08126087 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 55.483074, + "y": 33.67843, + "z": 53.141567 + }, + "xAxis": { + "x": -0.6787628, + "y": -0.7298477, + "z": 0.08126087 + }, + "yAxis": { + "x": 0.7332337, + "y": -0.67968166, + "z": 0.02002936 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 55.12755, + "y": 33.82561, + "z": 58.40043 + }, + "xAxis": { + "x": -0.73881686, + "y": -0.66762996, + "z": 0.09176037 + }, + "yAxis": { + "x": 0.67198265, + "y": -0.7401274, + "z": 0.025510713 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 53.075, + "y": 48.875, + "z": 9.15 + }, + "xAxis": { + "x": -0.99401826, + "y": 0.1092142, + "z": 0.0 + }, + "yAxis": { + "x": -0.10916892, + "y": -0.9936061, + "z": 0.028793845 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 53.075, + "y": 37.774998, + "z": 9.15 + }, + "xAxis": { + "x": 0.99834186, + "y": -0.057563815, + "z": 0.0 + }, + "yAxis": { + "x": 0.057539947, + "y": 0.9979279, + "z": 0.028793845 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.2575, + "y": 49.016884, + "z": 14.372591 + }, + "xAxis": { + "x": -0.9808911, + "y": 0.19454174, + "z": -0.0024845223 + }, + "yAxis": { + "x": -0.1945555, + "y": -0.9807412, + "z": 0.017169813 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.9001, + "y": 37.623848, + "z": 14.372591 + }, + "xAxis": { + "x": 0.98965347, + "y": -0.1434569, + "z": -0.0024845223 + }, + "yAxis": { + "x": 0.14347842, + "y": 0.9895045, + "z": 0.017169813 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 52.46373, + "y": 39.35044, + "z": 61.35696 + }, + "xAxis": { + "x": 0.60502017, + "y": -0.7959482, + "z": 0.020422135 + }, + "yAxis": { + "x": 0.79430825, + "y": 0.60160464, + "z": -0.08453533 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.42701, + "y": 49.08545, + "z": 19.597097 + }, + "xAxis": { + "x": -0.96044517, + "y": 0.27844098, + "z": -0.0039567803 + }, + "yAxis": { + "x": -0.27845955, + "y": -0.96043295, + "z": 0.005372493 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.73437, + "y": 37.546593, + "z": 19.597097 + }, + "xAxis": { + "x": 0.97358215, + "y": -0.22830282, + "z": -0.0039567803 + }, + "yAxis": { + "x": 0.228322, + "y": 0.9735708, + "z": 0.005372492 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.577248, + "y": 49.082073, + "z": 24.822641 + }, + "xAxis": { + "x": -0.93283576, + "y": 0.36027497, + "z": -0.004405597 + }, + "yAxis": { + "x": -0.3602441, + "y": -0.9328354, + "z": -0.0065085525 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.58416, + "y": 37.54218, + "z": 24.822641 + }, + "xAxis": { + "x": 0.9502499, + "y": -0.31145743, + "z": -0.0044055968 + }, + "yAxis": { + "x": 0.3114266, + "y": 0.95024794, + "z": -0.006508553 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.70208, + "y": 49.008682, + "z": 30.04834 + }, + "xAxis": { + "x": -0.8982724, + "y": 0.43942246, + "z": -0.0038275651 + }, + "yAxis": { + "x": -0.4392882, + "y": -0.8981581, + "z": -0.018383125 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.455692, + "y": 37.609005, + "z": 30.04834 + }, + "xAxis": { + "x": 0.9198339, + "y": -0.39228943, + "z": -0.0038275647 + }, + "yAxis": { + "x": 0.3921613, + "y": 0.9197128, + "z": -0.018383125 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.795563, + "y": 48.86773, + "z": 35.273308 + }, + "xAxis": { + "x": -0.85701746, + "y": 0.5152826, + "z": -0.0022270726 + }, + "yAxis": { + "x": -0.5149918, + "y": -0.8566643, + "z": -0.030161077 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.35503, + "y": 37.744923, + "z": 35.273308 + }, + "xAxis": { + "x": 0.88256496, + "y": -0.4701852, + "z": -0.0022270721 + }, + "yAxis": { + "x": 0.46991315, + "y": 0.8821972, + "z": -0.030161075 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.851997, + "y": 48.66218, + "z": 40.496666 + }, + "xAxis": { + "x": -0.8093842, + "y": 0.5872794, + "z": 0.00038372976 + }, + "yAxis": { + "x": -0.58678025, + "y": -0.80866903, + "z": -0.041752994 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.28802, + "y": 37.94727, + "z": 40.496666 + }, + "xAxis": { + "x": 0.8387261, + "y": -0.54455334, + "z": 0.00038373005 + }, + "yAxis": { + "x": 0.54409194, + "y": 0.83798605, + "z": -0.04175299 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 53.865955, + "y": 48.3955, + "z": 45.717545 + }, + "xAxis": { + "x": -0.75573426, + "y": 0.65486634, + "z": 0.0039850217 + }, + "yAxis": { + "x": -0.65410846, + "y": -0.7545367, + "z": -0.05307087 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.260265, + "y": 38.21287, + "z": 45.717545 + }, + "xAxis": { + "x": 0.78865016, + "y": -0.6148293, + "z": 0.0039850217 + }, + "yAxis": { + "x": 0.6141345, + "y": 0.7874149, + "z": -0.053070866 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 53.83234, + "y": 48.071606, + "z": 50.935097 + }, + "xAxis": { + "x": -0.69647485, + "y": 0.7175303, + "z": 0.008549463 + }, + "yAxis": { + "x": -0.7164653, + "y": -0.6946782, + "z": -0.064028785 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.277054, + "y": 38.538074, + "z": 50.935097 + }, + "xAxis": { + "x": 0.7327172, + "y": -0.6804795, + "z": 0.008549463 + }, + "yAxis": { + "x": 0.6795091, + "y": 0.7308678, + "z": -0.064028785 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 52.34335, + "y": 38.918774, + "z": 56.1485 + }, + "xAxis": { + "x": 0.6713519, + "y": -0.74100566, + "z": 0.014042401 + }, + "yAxis": { + "x": 0.73971933, + "y": 0.6687739, + "z": -0.07454354 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 92.125, + "y": 82.775, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 86.94348, + "y": 93.82385, + "z": 26.683844 + }, + "xAxis": { + "x": -0.3253533, + "y": -0.94551545, + "z": -0.01207507 + }, + "yAxis": { + "x": 0.94555116, + "y": -0.32519305, + "z": -0.01351071 + } + }, + "center": { + "x": -0.12357646, + "y": 10.494074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 90.41973, + "y": 91.68029, + "z": 49.322678 + }, + "xAxis": { + "x": -0.7538475, + "y": -0.65376866, + "z": 0.06557865 + }, + "yAxis": { + "x": 0.65390724, + "y": -0.7562456, + "z": -0.022314297 + } + }, + "center": { + "x": -0.12357646, + "y": 22.374077 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 93.81264, + "y": 89.08335, + "z": 71.92666 + }, + "xAxis": { + "x": -0.97350657, + "y": -0.18320735, + "z": 0.13682096 + }, + "yAxis": { + "x": 0.18617545, + "y": -0.98247427, + "z": 0.009110643 + } + }, + "center": { + "x": -0.12357646, + "y": 34.254074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 80.32968, + "y": 94.737595, + "z": 96.091675 + }, + "xAxis": { + "x": -0.9412394, + "y": 0.30044794, + "z": -0.15427057 + }, + "yAxis": { + "x": -0.28979653, + "y": -0.95303744, + "z": -0.08796381 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": 86.13065, + "y": 88.21878, + "z": 80.79325 + }, + "xAxis": { + "x": -0.9897652, + "y": -0.048198693, + "z": 0.13431926 + }, + "yAxis": { + "x": 0.05235619, + "y": -0.9982472, + "z": 0.027591925 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.07138, + "y": 87.49297, + "z": 11.223541 + }, + "xAxis": { + "x": 0.019076234, + "y": -0.9995827, + "z": -0.021692503 + }, + "yAxis": { + "x": 0.9991358, + "y": 0.018257352, + "z": 0.037340768 + } + }, + "center": { + "x": -0.93696856, + "y": 0.7832468 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 77.854126, + "y": 96.26088, + "z": 11.223541 + }, + "xAxis": { + "x": -0.12397546, + "y": 0.99204814, + "z": -0.021692501 + }, + "yAxis": { + "x": -0.99168974, + "y": -0.12311417, + "z": 0.037340768 + } + }, + "center": { + "x": 1.124723, + "y": 3.1688933 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 90.76919, + "y": 85.92362, + "z": 18.85346 + }, + "xAxis": { + "x": -0.15544775, + "y": -0.987844, + "z": -0.00055124576 + }, + "yAxis": { + "x": 0.98761064, + "y": -0.15542312, + "z": 0.02165308 + } + }, + "center": { + "x": -0.93696856, + "y": 4.743247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 77.989784, + "y": 97.853294, + "z": 18.85346 + }, + "xAxis": { + "x": 0.05081604, + "y": 0.9987079, + "z": -0.00055124564 + }, + "yAxis": { + "x": -0.9984733, + "y": 0.05081605, + "z": 0.02165308 + } + }, + "center": { + "x": 1.124723, + "y": 7.1288934 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.862755, + "y": 101.81467, + "z": 88.61304 + }, + "xAxis": { + "x": 0.9765356, + "y": -0.06524187, + "z": 0.20523554 + }, + "yAxis": { + "x": 0.05154693, + "y": 0.9961159, + "z": 0.07138652 + } + }, + "center": { + "x": 1.124723, + "y": 42.76889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 90.342155, + "y": 84.57193, + "z": 26.518995 + }, + "xAxis": { + "x": -0.32484278, + "y": -0.94548833, + "z": 0.023000695 + }, + "yAxis": { + "x": 0.9457662, + "y": -0.32469815, + "z": 0.009869879 + } + }, + "center": { + "x": -0.93696856, + "y": 8.703246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 78.27246, + "y": 99.24237, + "z": 26.518995 + }, + "xAxis": { + "x": 0.22372322, + "y": 0.97438127, + "z": 0.023000695 + }, + "yAxis": { + "x": -0.97464246, + "y": 0.2235502, + "z": 0.00986988 + } + }, + "center": { + "x": 1.124723, + "y": 11.088894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 89.83072, + "y": 83.45693, + "z": 34.217377 + }, + "xAxis": { + "x": -0.48381847, + "y": -0.87383854, + "z": 0.048227765 + }, + "yAxis": { + "x": 0.8749093, + "y": -0.48428112, + "z": 0.0023591649 + } + }, + "center": { + "x": -0.93696856, + "y": 12.663246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 78.66393, + "y": 100.40492, + "z": 34.217377 + }, + "xAxis": { + "x": 0.38934603, + "y": 0.9198281, + "z": 0.048227765 + }, + "yAxis": { + "x": -0.92094153, + "y": 0.38969365, + "z": 0.002359165 + } + }, + "center": { + "x": 1.124723, + "y": 15.048893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 89.27797, + "y": 82.59029, + "z": 41.94481 + }, + "xAxis": { + "x": -0.6274099, + "y": -0.7751323, + "z": 0.07434211 + }, + "yAxis": { + "x": 0.7772528, + "y": -0.6291881, + "z": -0.0006444965 + } + }, + "center": { + "x": -0.93696856, + "y": 16.623247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 79.12259, + "y": 101.32484, + "z": 41.94481 + }, + "xAxis": { + "x": 0.54251194, + "y": 0.8367521, + "z": 0.07434211 + }, + "yAxis": { + "x": -0.8390477, + "y": 0.54405755, + "z": -0.0006444955 + } + }, + "center": { + "x": 1.124723, + "y": 19.008894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 88.72827, + "y": 81.97589, + "z": 49.696594 + }, + "xAxis": { + "x": -0.75113255, + "y": -0.65245235, + "z": 0.100528136 + }, + "yAxis": { + "x": 0.6558467, + "y": -0.7548935, + "z": 0.00095270446 + } + }, + "center": { + "x": -0.93696856, + "y": 20.583248 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 79.604706, + "y": 101.99358, + "z": 49.696594 + }, + "xAxis": { + "x": 0.67843735, + "y": 0.7277478, + "z": 0.100528136 + }, + "yAxis": { + "x": -0.7315185, + "y": 0.6818209, + "z": 0.0009527052 + } + }, + "center": { + "x": 1.124723, + "y": 22.968895 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 88.2259, + "y": 81.60974, + "z": 57.46727 + }, + "xAxis": { + "x": -0.8511224, + "y": -0.50963, + "z": 0.12596804 + }, + "yAxis": { + "x": 0.5144826, + "y": -0.8574714, + "z": 0.0071008853 + } + }, + "center": { + "x": -0.93696856, + "y": 24.543247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.065834, + "y": 102.41048, + "z": 57.46727 + }, + "xAxis": { + "x": 0.79287726, + "y": 0.5962195, + "z": 0.12596805 + }, + "yAxis": { + "x": -0.6017122, + "y": 0.79868144, + "z": 0.0071008853 + } + }, + "center": { + "x": 1.124723, + "y": 26.928894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.81364, + "y": 81.48011, + "z": 65.250786 + }, + "xAxis": { + "x": -0.9242567, + "y": -0.35112587, + "z": 0.14986731 + }, + "yAxis": { + "x": 0.35757545, + "y": -0.93371826, + "z": 0.01760803 + } + }, + "center": { + "x": -0.93696856, + "y": 28.503246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.4622, + "y": 102.582695, + "z": 65.250786 + }, + "xAxis": { + "x": 0.8822576, + "y": 0.446275, + "z": 0.14986733 + }, + "yAxis": { + "x": -0.4536828, + "y": 0.89098924, + "z": 0.017608032 + } + }, + "center": { + "x": 1.124723, + "y": 30.888893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 87.53149, + "y": 81.56788, + "z": 73.04068 + }, + "xAxis": { + "x": -0.9682514, + "y": -0.1818901, + "z": 0.17147955 + }, + "yAxis": { + "x": 0.19002558, + "y": -0.98125273, + "z": 0.032145992 + } + }, + "center": { + "x": -0.93696856, + "y": 32.463245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.75201, + "y": 102.525055, + "z": 73.04068 + }, + "xAxis": { + "x": 0.94378686, + "y": 0.28259718, + "z": 0.17147955 + }, + "yAxis": { + "x": -0.29205343, + "y": 0.9558616, + "z": 0.032145996 + } + }, + "center": { + "x": 1.124723, + "y": 34.848892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.89683, + "y": 102.25955, + "z": 80.830315 + }, + "xAxis": { + "x": 0.97554344, + "y": 0.11029786, + "z": 0.19012979 + }, + "yAxis": { + "x": -0.12187186, + "y": 0.99127245, + "z": 0.05026074 + } + }, + "center": { + "x": 1.124723, + "y": 38.80889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 88.362206, + "y": 91.89413, + "z": 11.498676 + }, + "xAxis": { + "x": -0.44559088, + "y": -0.89164895, + "z": -0.0800684 + }, + "yAxis": { + "x": 0.89356524, + "y": -0.4484393, + "z": 0.021055594 + } + }, + "center": { + "x": -0.4242164, + "y": 1.8345448 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 81.010635, + "y": 92.16867, + "z": 11.498676 + }, + "xAxis": { + "x": 0.349459, + "y": 0.9335242, + "z": -0.0800684 + }, + "yAxis": { + "x": -0.93572915, + "y": 0.35209033, + "z": 0.021055596 + } + }, + "center": { + "x": 0.45382434, + "y": 2.2107508 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 88.87229, + "y": 90.73381, + "z": 19.075605 + }, + "xAxis": { + "x": -0.59528, + "y": -0.80169415, + "z": -0.05411257 + }, + "yAxis": { + "x": 0.8022053, + "y": -0.59680647, + "z": 0.016991828 + } + }, + "center": { + "x": -0.4242164, + "y": 5.7945447 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 80.38149, + "y": 93.26899, + "z": 19.075605 + }, + "xAxis": { + "x": 0.5077695, + "y": 0.8597918, + "z": -0.05411257 + }, + "yAxis": { + "x": -0.86046046, + "y": 0.50923383, + "z": 0.016991828 + } + }, + "center": { + "x": 0.45382434, + "y": 6.170751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 76.31772, + "y": 99.48306, + "z": 87.78134 + }, + "xAxis": { + "x": 0.8489287, + "y": -0.51780117, + "z": 0.10583973 + }, + "yAxis": { + "x": 0.4999756, + "y": 0.85173965, + "z": 0.15672913 + } + }, + "center": { + "x": 0.45382434, + "y": 41.81075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 89.31514, + "y": 89.64232, + "z": 26.666975 + }, + "xAxis": { + "x": -0.72653115, + "y": -0.68657076, + "z": -0.027804133 + }, + "yAxis": { + "x": 0.686377, + "y": -0.72703516, + "z": 0.017507141 + } + }, + "center": { + "x": -0.4242164, + "y": 9.754545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 89.70403, + "y": 88.63056, + "z": 34.27233 + }, + "xAxis": { + "x": -0.83524525, + "y": -0.5498741, + "z": -0.0019647311 + }, + "yAxis": { + "x": 0.5496979, + "y": -0.83505815, + "z": 0.02258544 + } + }, + "center": { + "x": -0.4242164, + "y": 13.714545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 79.333405, + "y": 95.273224, + "z": 34.27233 + }, + "xAxis": { + "x": 0.7728604, + "y": 0.63457304, + "z": -0.0019647311 + }, + "yAxis": { + "x": -0.63437814, + "y": 0.7726929, + "z": 0.02258544 + } + }, + "center": { + "x": 0.45382434, + "y": 14.090751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 90.05393, + "y": 87.70697, + "z": 41.890793 + }, + "xAxis": { + "x": -0.918027, + "y": -0.3958734, + "z": 0.022598648 + }, + "yAxis": { + "x": 0.3964364, + "y": -0.9175019, + "z": 0.032068126 + } + }, + "center": { + "x": -0.4242164, + "y": 17.674545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 78.88842, + "y": 96.154945, + "z": 41.890793 + }, + "xAxis": { + "x": 0.8713617, + "y": 0.49012053, + "z": 0.022598648 + }, + "yAxis": { + "x": -0.49062526, + "y": 0.8707804, + "z": 0.032068126 + } + }, + "center": { + "x": 0.45382434, + "y": 18.050749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 90.38102, + "y": 86.87723, + "z": 49.521053 + }, + "xAxis": { + "x": -0.97229105, + "y": -0.22937822, + "z": 0.045118865 + }, + "yAxis": { + "x": 0.23137918, + "y": -0.9717916, + "z": 0.045659047 + } + }, + "center": { + "x": -0.4242164, + "y": 21.634546 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 90.70219, + "y": 86.14405, + "z": 57.16145 + }, + "xAxis": { + "x": -0.9963428, + "y": -0.055588387, + "z": 0.06489259 + }, + "yAxis": { + "x": 0.059681114, + "y": -0.9962317, + "z": 0.06293374 + } + }, + "center": { + "x": -0.4242164, + "y": 25.594545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 78.079575, + "y": 97.64112, + "z": 57.16145 + }, + "xAxis": { + "x": 0.9849906, + "y": 0.15994523, + "z": 0.0648926 + }, + "yAxis": { + "x": -0.16400364, + "y": 0.98445016, + "z": 0.06293374 + } + }, + "center": { + "x": 0.45382434, + "y": 25.970749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 91.0345, + "y": 85.50718, + "z": 64.81 + }, + "xAxis": { + "x": -0.9894309, + "y": 0.120068505, + "z": 0.08130228 + }, + "yAxis": { + "x": -0.11329555, + "y": -0.9900588, + "z": 0.08335271 + } + }, + "center": { + "x": -0.4242164, + "y": 29.554544 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 77.68219, + "y": 98.23956, + "z": 64.81 + }, + "xAxis": { + "x": 0.9965695, + "y": -0.015465842, + "z": 0.081302285 + }, + "yAxis": { + "x": 0.0086643975, + "y": 0.99648243, + "z": 0.08335271 + } + }, + "center": { + "x": 0.45382434, + "y": 29.930748 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 91.3947, + "y": 84.963326, + "z": 72.46446 + }, + "xAxis": { + "x": -0.9517714, + "y": 0.2921065, + "z": 0.09383542 + }, + "yAxis": { + "x": -0.28214857, + "y": -0.9534659, + "z": 0.10627823 + } + }, + "center": { + "x": -0.4242164, + "y": 33.51454 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 76.81715, + "y": 99.15463, + "z": 80.12242 + }, + "xAxis": { + "x": 0.92745936, + "y": -0.35971466, + "z": 0.102100626 + }, + "yAxis": { + "x": 0.34592044, + "y": 0.9290746, + "z": 0.13099435 + } + }, + "center": { + "x": 0.45382434, + "y": 37.85075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 83.23087, + "y": 93.05536, + "z": 11.451711 + }, + "xAxis": { + "x": -0.020655476, + "y": 0.9965772, + "z": 0.08004549 + }, + "yAxis": { + "x": -0.99865943, + "y": -0.016765123, + "z": -0.048972722 + } + }, + "center": { + "x": -0.7832468, + "y": 2.8772452 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 86.23557, + "y": 91.5529, + "z": 11.451711 + }, + "xAxis": { + "x": 0.12523025, + "y": -0.9888934, + "z": 0.08004549 + }, + "yAxis": { + "x": 0.99137276, + "y": 0.12158015, + "z": -0.048972722 + } + }, + "center": { + "x": 0.6453203, + "y": 1.124723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.0211, + "y": 92.77028, + "z": 19.082258 + }, + "xAxis": { + "x": 0.15446693, + "y": 0.9862364, + "z": 0.05897258 + }, + "yAxis": { + "x": -0.9871007, + "y": 0.15659471, + "z": -0.03332027 + } + }, + "center": { + "x": -0.7832468, + "y": 6.837245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.41977, + "y": 91.753395, + "z": 19.082258 + }, + "xAxis": { + "x": -0.050009526, + "y": -0.9970062, + "z": 0.05897258 + }, + "yAxis": { + "x": 0.99808925, + "y": -0.052034736, + "z": -0.03332027 + } + }, + "center": { + "x": 0.6453203, + "y": 5.0847235 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 74.80196, + "y": 94.470604, + "z": 87.27243 + }, + "xAxis": { + "x": -0.98705554, + "y": 0.062219746, + "z": -0.14781779 + }, + "yAxis": { + "x": -0.050304122, + "y": -0.9952768, + "z": -0.08302729 + } + }, + "center": { + "x": 0.6453203, + "y": 40.72472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.523544, + "y": 91.93788, + "z": 26.704182 + }, + "xAxis": { + "x": -0.2236119, + "y": -0.97403336, + "z": 0.03544984 + }, + "yAxis": { + "x": 0.9742479, + "y": -0.22444604, + "z": -0.021565938 + } + }, + "center": { + "x": 0.6453203, + "y": 9.044723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.84641, + "y": 92.20801, + "z": 34.316074 + }, + "xAxis": { + "x": 0.48471394, + "y": 0.8746131, + "z": 0.010211916 + }, + "yAxis": { + "x": -0.87450236, + "y": 0.4848169, + "z": -0.014076816 + } + }, + "center": { + "x": -0.7832468, + "y": 14.757245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 83.54549, + "y": 92.12081, + "z": 34.316074 + }, + "xAxis": { + "x": -0.39015517, + "y": -0.9206925, + "z": 0.010211916 + }, + "yAxis": { + "x": 0.92059314, + "y": -0.39026922, + "z": -0.014076817 + } + }, + "center": { + "x": 0.6453203, + "y": 13.004723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 86.8787, + "y": 91.90203, + "z": 41.916847 + }, + "xAxis": { + "x": 0.6295246, + "y": 0.7768167, + "z": -0.01595299 + }, + "yAxis": { + "x": -0.7769792, + "y": 0.6294286, + "z": -0.0110868 + } + }, + "center": { + "x": -0.7832468, + "y": 18.717243 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 82.48677, + "y": 92.31665, + "z": 41.916847 + }, + "xAxis": { + "x": -0.544438, + "y": -0.8386494, + "z": -0.01595299 + }, + "yAxis": { + "x": 0.83880085, + "y": -0.5443254, + "z": -0.011086802 + } + }, + "center": { + "x": 0.6453203, + "y": 16.964722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 81.35106, + "y": 92.539505, + "z": 49.50575 + }, + "xAxis": { + "x": -0.68164194, + "y": -0.73046637, + "z": -0.042227723 + }, + "yAxis": { + "x": 0.7314254, + "y": -0.68180335, + "z": -0.012689274 + } + }, + "center": { + "x": 0.6453203, + "y": 20.924723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 89.15704, + "y": 91.17272, + "z": 57.08241 + }, + "xAxis": { + "x": 0.8560486, + "y": 0.51243055, + "z": -0.06779169 + }, + "yAxis": { + "x": -0.51461864, + "y": 0.8572123, + "z": -0.018834187 + } + }, + "center": { + "x": -0.7832468, + "y": 26.637245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 80.14442, + "y": 92.80259, + "z": 57.08241 + }, + "xAxis": { + "x": -0.7974821, + "y": -0.59952205, + "z": -0.0677917 + }, + "yAxis": { + "x": 0.60182023, + "y": -0.79840946, + "z": -0.018834187 + } + }, + "center": { + "x": 0.6453203, + "y": 24.884722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 90.38615, + "y": 90.72583, + "z": 64.646835 + }, + "xAxis": { + "x": 0.93068737, + "y": 0.35409775, + "z": -0.091846526 + }, + "yAxis": { + "x": -0.35797498, + "y": 0.93327045, + "z": -0.029329628 + } + }, + "center": { + "x": -0.7832468, + "y": 30.597244 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 78.87517, + "y": 93.1179, + "z": 64.646835 + }, + "xAxis": { + "x": -0.8883405, + "y": -0.44990596, + "z": -0.091846526 + }, + "yAxis": { + "x": 0.45403308, + "y": -0.890502, + "z": -0.02932963 + } + }, + "center": { + "x": 0.6453203, + "y": 28.84472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 77.553535, + "y": 93.49577, + "z": 72.19942 + }, + "xAxis": { + "x": -0.9513797, + "y": -0.2862908, + "z": -0.11364095 + }, + "yAxis": { + "x": 0.2926794, + "y": -0.9552048, + "z": -0.043847818 + } + }, + "center": { + "x": 0.6453203, + "y": 32.80472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 76.191414, + "y": 93.94462, + "z": 79.74091 + }, + "xAxis": { + "x": -0.9846308, + "y": -0.11378641, + "z": -0.13249432 + }, + "yAxis": { + "x": 0.122798495, + "y": -0.9904971, + "z": -0.061935335 + } + }, + "center": { + "x": 0.6453203, + "y": 36.76472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 78.893394, + "y": 90.2375, + "z": 11.284298 + }, + "xAxis": { + "x": 0.44602123, + "y": 0.8903102, + "z": 0.09172082 + }, + "yAxis": { + "x": -0.89499, + "y": 0.44452837, + "z": 0.037247688 + } + }, + "center": { + "x": -1.8345448, + "y": 3.3899975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 90.25304, + "y": 94.810814, + "z": 11.284298 + }, + "xAxis": { + "x": -0.35002756, + "y": -0.93223816, + "z": 0.09172082 + }, + "yAxis": { + "x": 0.9367352, + "y": -0.34805137, + "z": 0.037247688 + } + }, + "center": { + "x": 1.603463, + "y": 0.45382434 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 79.25733, + "y": 90.74868, + "z": 19.04165 + }, + "xAxis": { + "x": 0.59568995, + "y": 0.8005161, + "z": 0.06578305 + }, + "yAxis": { + "x": -0.80319244, + "y": 0.5942796, + "z": 0.04139686 + } + }, + "center": { + "x": -1.8345448, + "y": 7.3499975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.94481, + "y": 94.26424, + "z": 19.04165 + }, + "xAxis": { + "x": -0.5083009, + "y": -0.8586634, + "z": 0.06578305 + }, + "yAxis": { + "x": 0.86117667, + "y": -0.50661725, + "z": 0.04139686 + } + }, + "center": { + "x": 1.603463, + "y": 4.4138246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 77.23722, + "y": 89.91432, + "z": 87.57545 + }, + "xAxis": { + "x": -0.8502546, + "y": 0.517878, + "z": -0.09417817 + }, + "yAxis": { + "x": -0.50959337, + "y": -0.8546836, + "z": -0.09914936 + } + }, + "center": { + "x": 1.603463, + "y": 40.05382 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 79.85035, + "y": 91.33161, + "z": 26.77979 + }, + "xAxis": { + "x": 0.7269493, + "y": 0.6855548, + "z": 0.039489552 + }, + "yAxis": { + "x": -0.6866909, + "y": 0.7257963, + "z": 0.04093056 + } + }, + "center": { + "x": -1.8345448, + "y": 11.309998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.41631, + "y": 93.62223, + "z": 26.77979 + }, + "xAxis": { + "x": -0.6509105, + "y": -0.7581267, + "z": 0.039489552 + }, + "yAxis": { + "x": 0.7591354, + "y": -0.6496446, + "z": 0.04093056 + } + }, + "center": { + "x": 1.603463, + "y": 8.373823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 80.68102, + "y": 91.94492, + "z": 34.49368 + }, + "xAxis": { + "x": 0.8356998, + "y": 0.54901654, + "z": 0.01366148 + }, + "yAxis": { + "x": -0.54912406, + "y": 0.834971, + "z": 0.03586335 + } + }, + "center": { + "x": -1.8345448, + "y": 15.269998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.65466, + "y": 92.92506, + "z": 34.49368 + }, + "xAxis": { + "x": -0.7734026, + "y": -0.63376796, + "z": 0.01366148 + }, + "yAxis": { + "x": 0.6337983, + "y": -0.7726665, + "z": 0.03586335 + } + }, + "center": { + "x": 1.603463, + "y": 12.333823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 81.75053, + "y": 92.546295, + "z": 42.179043 + }, + "xAxis": { + "x": 0.9185453, + "y": 0.39516562, + "z": -0.010894529 + }, + "yAxis": { + "x": -0.39478806, + "y": 0.9183942, + "z": 0.02635349 + } + }, + "center": { + "x": -1.8345448, + "y": 19.229996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.65425, + "y": 92.21466, + "z": 42.179043 + }, + "xAxis": { + "x": -0.87195146, + "y": -0.4894711, + "z": -0.010894528 + }, + "yAxis": { + "x": 0.48907977, + "y": -0.87184083, + "z": 0.026353488 + } + }, + "center": { + "x": 1.603463, + "y": 16.293823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 83.05256, + "y": 93.093765, + "z": 49.83249 + }, + "xAxis": { + "x": 0.97289824, + "y": 0.22880696, + "z": -0.033411562 + }, + "yAxis": { + "x": -0.22850308, + "y": 0.9734604, + "z": 0.012697971 + } + }, + "center": { + "x": -1.8345448, + "y": 23.189997 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.41693, + "y": 91.53345, + "z": 49.83249 + }, + "xAxis": { + "x": -0.9434795, + "y": -0.3297426, + "z": -0.033411562 + }, + "yAxis": { + "x": 0.32949945, + "y": -0.9440704, + "z": 0.01269797 + } + }, + "center": { + "x": 1.603463, + "y": 20.253824 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 84.57357, + "y": 93.547066, + "z": 57.45163 + }, + "xAxis": { + "x": 0.9970613, + "y": 0.05513609, + "z": -0.05318639 + }, + "yAxis": { + "x": -0.055462345, + "y": 0.9984498, + "z": -0.0046767243 + } + }, + "center": { + "x": -1.8345448, + "y": 27.149996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 84.95195, + "y": 90.922874, + "z": 57.45163 + }, + "xAxis": { + "x": -0.9857527, + "y": -0.15957092, + "z": -0.053186394 + }, + "yAxis": { + "x": 0.16004123, + "y": -0.98709923, + "z": -0.004676726 + } + }, + "center": { + "x": 1.603463, + "y": 24.213823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.29316, + "y": 93.86886, + "z": 65.03515 + }, + "xAxis": { + "x": 0.99027973, + "y": -0.12042309, + "z": -0.06960143 + }, + "yAxis": { + "x": 0.11892994, + "y": 0.9925821, + "z": -0.02522797 + } + }, + "center": { + "x": -1.8345448, + "y": 31.109995 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 83.27568, + "y": 90.42222, + "z": 65.03515 + }, + "xAxis": { + "x": -0.9974509, + "y": 0.0157293, + "z": -0.06960144 + }, + "yAxis": { + "x": -0.014002543, + "y": -0.99958366, + "z": -0.025227973 + } + }, + "center": { + "x": 1.603463, + "y": 28.173822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.18473, + "y": 94.02593, + "z": 72.58283 + }, + "xAxis": { + "x": 0.95276535, + "y": -0.2923877, + "z": -0.08214402 + }, + "yAxis": { + "x": 0.2892273, + "y": 0.95604044, + "z": -0.048313927 + } + }, + "center": { + "x": -1.8345448, + "y": 35.069996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 81.41107, + "y": 90.06731, + "z": 72.58283 + }, + "xAxis": { + "x": -0.9782087, + "y": 0.19068328, + "z": -0.08214402 + }, + "yAxis": { + "x": -0.18719633, + "y": -0.9811337, + "z": -0.04831393 + } + }, + "center": { + "x": 1.603463, + "y": 32.133823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 79.38698, + "y": 89.88943, + "z": 80.0956 + }, + "xAxis": { + "x": -0.92862713, + "y": 0.359827, + "z": -0.09042245 + }, + "yAxis": { + "x": -0.3541311, + "y": -0.93232554, + "z": -0.07321361 + } + }, + "center": { + "x": 1.603463, + "y": 36.093822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 77.45743, + "y": 84.9756, + "z": 11.834151 + }, + "xAxis": { + "x": -0.9997377, + "y": -0.020921579, + "z": 0.009321013 + }, + "yAxis": { + "x": 0.019979505, + "y": -0.9955843, + "z": -0.09172082 + } + }, + "center": { + "x": -2.8772452, + "y": 3.030967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.1283, + "y": 100.19445, + "z": 11.834151 + }, + "xAxis": { + "x": 0.99200845, + "y": 0.12582688, + "z": 0.009321013 + }, + "yAxis": { + "x": -0.124453716, + "y": 0.987977, + "z": -0.09172082 + } + }, + "center": { + "x": 2.6894908, + "y": 0.6453203 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 76.93882, + "y": 85.828514, + "z": 19.726065 + }, + "xAxis": { + "x": -0.9877896, + "y": 0.1537656, + "z": 0.025058834 + }, + "yAxis": { + "x": -0.15517926, + "y": -0.98535645, + "z": -0.0706548 + } + }, + "center": { + "x": -2.8772452, + "y": 6.990967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.544106, + "y": 99.6098, + "z": 19.706923 + }, + "xAxis": { + "x": -0.050810352, + "y": -0.9962059, + "z": 0.0706548 + }, + "yAxis": { + "x": 0.99847704, + "y": -0.04914892, + "z": 0.025058834 + } + }, + "center": { + "x": 2.6894908, + "y": 4.6053205 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 82.31635, + "y": 88.21381, + "z": 89.274315 + }, + "xAxis": { + "x": -0.98870313, + "y": 0.06257007, + "z": -0.13620235 + }, + "yAxis": { + "x": -0.059654467, + "y": -0.9978962, + "z": -0.025387824 + } + }, + "center": { + "x": 2.6894908, + "y": 40.245316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 76.724846, + "y": 86.90416, + "z": 27.604893 + }, + "xAxis": { + "x": -0.9453526, + "y": 0.32395902, + "z": 0.036864102 + }, + "yAxis": { + "x": -0.32546344, + "y": -0.94437903, + "z": -0.047135975 + } + }, + "center": { + "x": -2.8772452, + "y": 10.950967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.90949, + "y": 98.592766, + "z": 27.588093 + }, + "xAxis": { + "x": -0.22445697, + "y": -0.9733434, + "z": 0.047135975 + }, + "yAxis": { + "x": 0.9741535, + "y": -0.2228586, + "z": 0.036864102 + } + }, + "center": { + "x": 2.6894908, + "y": 8.565319 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 76.84929, + "y": 88.14576, + "z": 35.461205 + }, + "xAxis": { + "x": -0.8737523, + "y": 0.48434332, + "z": 0.044368125 + }, + "yAxis": { + "x": -0.48555487, + "y": -0.8739319, + "z": -0.021898864 + } + }, + "center": { + "x": -2.8772452, + "y": 14.910967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 91.96034, + "y": 97.367714, + "z": 35.447952 + }, + "xAxis": { + "x": -0.39106303, + "y": -0.9201033, + "z": 0.021898864 + }, + "yAxis": { + "x": 0.9197975, + "y": -0.38987702, + "z": 0.044368125 + } + }, + "center": { + "x": 2.6894908, + "y": 12.52532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 77.335396, + "y": 89.49137, + "z": 43.286278 + }, + "xAxis": { + "x": -0.77522457, + "y": 0.6299096, + "z": 0.047336552 + }, + "yAxis": { + "x": -0.63045377, + "y": -0.7762151, + "z": 0.004268356 + } + }, + "center": { + "x": -2.8772452, + "y": 18.870966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.72404, + "y": 95.716484, + "z": 43.286278 + }, + "xAxis": { + "x": 0.83710647, + "y": -0.5449881, + "z": 0.047336552 + }, + "yAxis": { + "x": 0.5454252, + "y": 0.83814865, + "z": 0.0042683557 + } + }, + "center": { + "x": 2.6894908, + "y": 16.48532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 78.19506, + "y": 90.8758, + "z": 51.07236 + }, + "xAxis": { + "x": -0.65284675, + "y": 0.7561116, + "z": 0.04567667 + }, + "yAxis": { + "x": -0.7556348, + "y": -0.6542804, + "z": 0.030548457 + } + }, + "center": { + "x": -2.8772452, + "y": 22.830967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 91.01456, + "y": 94.24941, + "z": 51.07236 + }, + "xAxis": { + "x": 0.7286631, + "y": -0.68334746, + "z": 0.04567667 + }, + "yAxis": { + "x": 0.6827226, + "y": 0.73003876, + "z": 0.030548457 + } + }, + "center": { + "x": 2.6894908, + "y": 20.44532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 79.428566, + "y": 92.232635, + "z": 58.812916 + }, + "xAxis": { + "x": -0.5104407, + "y": 0.859008, + "z": 0.039440323 + }, + "yAxis": { + "x": -0.85718834, + "y": -0.5119361, + "z": 0.056120683 + } + }, + "center": { + "x": -2.8772452, + "y": 26.790966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 89.97058, + "y": 93.05046, + "z": 58.81625 + }, + "xAxis": { + "x": -0.79866743, + "y": -0.59915006, + "z": -0.056120686 + }, + "yAxis": { + "x": 0.597854, + "y": -0.80063415, + "z": 0.039440323 + } + }, + "center": { + "x": 2.6894908, + "y": 24.40532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 81.024475, + "y": 93.49632, + "z": 66.50284 + }, + "xAxis": { + "x": -0.3524539, + "y": 0.9353852, + "z": 0.028822273 + }, + "yAxis": { + "x": -0.93194294, + "y": -0.35362762, + "z": 0.0801864 + } + }, + "center": { + "x": -2.8772452, + "y": 30.750965 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 88.47608, + "y": 91.34616, + "z": 66.50284 + }, + "xAxis": { + "x": 0.4487647, + "y": -0.893185, + "z": 0.028822273 + }, + "yAxis": { + "x": 0.8896385, + "y": 0.44957036, + "z": 0.080186404 + } + }, + "center": { + "x": 2.6894908, + "y": 28.365318 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 82.96006, + "y": 94.60423, + "z": 74.13859 + }, + "xAxis": { + "x": -0.18382046, + "y": 0.98285794, + "z": 0.014154135 + }, + "yAxis": { + "x": -0.97756386, + "y": -0.18429913, + "z": 0.101993985 + } + }, + "center": { + "x": -2.8772452, + "y": 34.710964 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 86.80093, + "y": 90.28987, + "z": 74.15616 + }, + "xAxis": { + "x": -0.9527947, + "y": -0.28597113, + "z": -0.10199399 + }, + "yAxis": { + "x": 0.28605124, + "y": -0.9581098, + "z": 0.014154133 + } + }, + "center": { + "x": 2.6894908, + "y": 32.325317 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 84.53201, + "y": 88.916145, + "z": 81.718346 + }, + "xAxis": { + "x": 0.11479535, + "y": -0.99338067, + "z": -0.004105992 + }, + "yAxis": { + "x": 0.9861636, + "y": 0.11346178, + "z": 0.12086241 + } + }, + "center": { + "x": 2.6894908, + "y": 36.285316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 80.27937, + "y": 80.64057, + "z": 11.67246 + }, + "xAxis": { + "x": -0.89446855, + "y": 0.44444093, + "z": 0.048972722 + }, + "yAxis": { + "x": -0.44619277, + "y": -0.89431316, + "z": -0.033406623 + } + }, + "center": { + "x": -3.3899975, + "y": 1.979669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 87.866585, + "y": 104.209045, + "z": 11.67246 + }, + "xAxis": { + "x": 0.9362074, + "y": -0.3480192, + "z": 0.048972722 + }, + "yAxis": { + "x": 0.34977767, + "y": 0.9362369, + "z": -0.03340662 + } + }, + "center": { + "x": 3.3603892, + "y": 1.603463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 78.96039, + "y": 81.06587, + "z": 19.614182 + }, + "xAxis": { + "x": -0.8024738, + "y": 0.5943189, + "z": 0.053111725 + }, + "yAxis": { + "x": -0.5954589, + "y": -0.8033517, + "z": -0.0074006557 + } + }, + "center": { + "x": -3.3899975, + "y": 5.939669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 89.15241, + "y": 104.198296, + "z": 19.60208 + }, + "xAxis": { + "x": -0.50777334, + "y": -0.86145896, + "z": 0.007400655 + }, + "yAxis": { + "x": 0.8604661, + "y": -0.50673187, + "z": 0.053111725 + } + }, + "center": { + "x": 3.3603892, + "y": 5.5634627 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.57044, + "y": 90.47398, + "z": 90.173615 + }, + "xAxis": { + "x": -0.5121431, + "y": -0.8544114, + "z": -0.08769594 + }, + "yAxis": { + "x": 0.84082115, + "y": -0.51958144, + "z": 0.15183844 + } + }, + "center": { + "x": 3.3603892, + "y": 41.203457 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 77.88495, + "y": 81.86089, + "z": 27.56421 + }, + "xAxis": { + "x": -0.6857564, + "y": 0.72592586, + "z": 0.052629527 + }, + "yAxis": { + "x": -0.7261176, + "y": -0.6873099, + "z": 0.018929847 + } + }, + "center": { + "x": -3.3899975, + "y": 9.899668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 90.354294, + "y": 103.528946, + "z": 27.557472 + }, + "xAxis": { + "x": -0.6498991, + "y": -0.7597847, + "z": -0.018929847 + }, + "yAxis": { + "x": 0.75821966, + "y": -0.6498716, + "z": 0.052629527 + } + }, + "center": { + "x": 3.3603892, + "y": 9.523462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 77.113754, + "y": 82.97762, + "z": 35.51089 + }, + "xAxis": { + "x": -0.5479615, + "y": 0.83515155, + "z": 0.04754119 + }, + "yAxis": { + "x": -0.8340882, + "y": -0.5498119, + "z": 0.04476256 + } + }, + "center": { + "x": -3.3899975, + "y": 13.859668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 91.288, + "y": 102.49895, + "z": 35.510334 + }, + "xAxis": { + "x": -0.7717163, + "y": -0.63438964, + "z": -0.04476256 + }, + "yAxis": { + "x": 0.63266116, + "y": -0.7729681, + "z": 0.04754119 + } + }, + "center": { + "x": 3.3603892, + "y": 13.483462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 76.698, + "y": 84.358025, + "z": 43.44268 + }, + "xAxis": { + "x": -0.39339253, + "y": 0.9185847, + "z": 0.038005624 + }, + "yAxis": { + "x": -0.91599876, + "y": -0.3951519, + "z": 0.069290705 + } + }, + "center": { + "x": -3.3899975, + "y": 17.819668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.81866, + "y": 100.88839, + "z": 43.44268 + }, + "xAxis": { + "x": 0.48771197, + "y": -0.87217695, + "z": 0.038005624 + }, + "yAxis": { + "x": 0.86942047, + "y": 0.48918998, + "z": 0.069290705 + } + }, + "center": { + "x": 3.3603892, + "y": 17.443464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 76.67777, + "y": 85.93581, + "z": 51.348484 + }, + "xAxis": { + "x": -0.22687694, + "y": 0.9736197, + "z": 0.024320634 + }, + "yAxis": { + "x": -0.9692911, + "y": -0.2281601, + "z": 0.09174824 + } + }, + "center": { + "x": -3.3899975, + "y": 21.779669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 92.00452, + "y": 99.321465, + "z": 51.348484 + }, + "xAxis": { + "x": 0.32789907, + "y": -0.94439965, + "z": 0.024320634 + }, + "yAxis": { + "x": 0.9399602, + "y": 0.3287204, + "z": 0.091748245 + } + }, + "center": { + "x": 3.3603892, + "y": 21.403465 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 77.08081, + "y": 87.63851, + "z": 59.21804 + }, + "xAxis": { + "x": -0.053615123, + "y": 0.9985377, + "z": 0.0069136187 + }, + "yAxis": { + "x": -0.9923008, + "y": -0.05405178, + "z": 0.1114338 + } + }, + "center": { + "x": -3.3899975, + "y": 25.739668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 91.94716, + "y": 97.81491, + "z": 59.238945 + }, + "xAxis": { + "x": -0.98113245, + "y": -0.15799253, + "z": -0.111433804 + }, + "yAxis": { + "x": 0.15821347, + "y": -0.98738074, + "z": 0.0069136173 + } + }, + "center": { + "x": 3.3603892, + "y": 25.363464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 77.92163, + "y": 89.38981, + "z": 67.042206 + }, + "xAxis": { + "x": 0.120981805, + "y": 0.99256057, + "z": -0.0136717865 + }, + "yAxis": { + "x": -0.9843093, + "y": 0.1217355, + "z": 0.12773257 + } + }, + "center": { + "x": -3.3899975, + "y": 29.699667 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 91.13037, + "y": 95.755905, + "z": 67.042206 + }, + "xAxis": { + "x": -0.016045323, + "y": -0.9997778, + "z": -0.01367179 + }, + "yAxis": { + "x": 0.99165136, + "y": -0.017661624, + "z": 0.12773259 + } + }, + "center": { + "x": 3.3603892, + "y": 29.323463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 79.20109, + "y": 91.11182, + "z": 74.813255 + }, + "xAxis": { + "x": 0.291461, + "y": 0.95587486, + "z": -0.036792677 + }, + "yAxis": { + "x": -0.94556624, + "y": 0.2937117, + "z": 0.14013556 + } + }, + "center": { + "x": -3.3899975, + "y": 33.659668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 90.27101, + "y": 94.0667, + "z": 74.84864 + }, + "xAxis": { + "x": -0.9711885, + "y": 0.19275622, + "z": -0.14013556 + }, + "yAxis": { + "x": -0.18943505, + "y": -0.9812037, + "z": -0.03679268 + } + }, + "center": { + "x": 3.3603892, + "y": 33.28346 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 88.51282, + "y": 92.123055, + "z": 82.52513 + }, + "xAxis": { + "x": -0.3565406, + "y": -0.93223846, + "z": -0.061726972 + }, + "yAxis": { + "x": 0.92038286, + "y": -0.36182287, + "z": 0.14825538 + } + }, + "center": { + "x": 3.3603892, + "y": 37.243458 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 85.48978, + "y": 79.1647, + "z": 12.524211 + }, + "xAxis": { + "x": 0.020053603, + "y": -0.9992414, + "z": -0.03338371 + }, + "yAxis": { + "x": 0.9995627, + "y": 0.020763498, + "z": -0.021055594 + } + }, + "center": { + "x": -3.030967, + "y": 0.93696856 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 82.52997, + "y": 105.12941, + "z": 12.524211 + }, + "xAxis": { + "x": -0.12491158, + "y": 0.99160606, + "z": -0.03338371 + }, + "yAxis": { + "x": -0.99185103, + "y": -0.12565129, + "z": -0.021055596 + } + }, + "center": { + "x": 3.1688933, + "y": 2.6894908 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 84.07823, + "y": 78.88745, + "z": 20.412666 + }, + "xAxis": { + "x": -0.98736924, + "y": 0.15410718, + "z": 0.03678328 + }, + "yAxis": { + "x": -0.15464583, + "y": -0.9878939, + "z": -0.012260663 + } + }, + "center": { + "x": -3.030967, + "y": 4.896969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 84.114204, + "y": 105.74323, + "z": 20.417572 + }, + "xAxis": { + "x": 0.050013315, + "y": 0.9986733, + "z": -0.012260663 + }, + "yAxis": { + "x": -0.9980949, + "y": 0.049532764, + "z": -0.03678328 + } + }, + "center": { + "x": 3.1688933, + "y": 6.6494904 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 88.214096, + "y": 95.52208, + "z": 91.54003 + }, + "xAxis": { + "x": 0.978948, + "y": -0.06400004, + "z": 0.1938165 + }, + "yAxis": { + "x": 0.062471617, + "y": 0.99794865, + "z": 0.0139941 + } + }, + "center": { + "x": 3.1688933, + "y": 42.289486 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 82.56009, + "y": 78.83918, + "z": 28.330826 + }, + "xAxis": { + "x": -0.944659, + "y": 0.3244383, + "z": 0.04857073 + }, + "yAxis": { + "x": -0.324282, + "y": -0.94589317, + "z": 0.011284141 + } + }, + "center": { + "x": -3.030967, + "y": 8.856968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 85.64858, + "y": 105.91116, + "z": 28.342798 + }, + "xAxis": { + "x": 0.22312298, + "y": 0.974725, + "z": 0.011284141 + }, + "yAxis": { + "x": -0.9735141, + "y": 0.2234081, + "z": -0.04857073 + } + }, + "center": { + "x": 3.1688933, + "y": 10.60949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 80.93451, + "y": 79.124275, + "z": 36.28901 + }, + "xAxis": { + "x": -0.48355693, + "y": -0.87455094, + "z": 0.036515374 + }, + "yAxis": { + "x": 0.87276596, + "y": -0.48491025, + "z": -0.056049813 + } + }, + "center": { + "x": -3.030967, + "y": 12.816968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 87.055786, + "y": 105.64814, + "z": 36.28901 + }, + "xAxis": { + "x": 0.3890111, + "y": 0.9205091, + "z": 0.036515377 + }, + "yAxis": { + "x": -0.9188762, + "y": 0.39054447, + "z": -0.056049813 + } + }, + "center": { + "x": 3.1688933, + "y": 14.56949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 80.084694, + "y": 79.94203, + "z": 44.22035 + }, + "xAxis": { + "x": -0.7739354, + "y": 0.6305114, + "z": 0.05898695 + }, + "yAxis": { + "x": -0.6274964, + "y": -0.7760953, + "z": 0.06264505 + } + }, + "center": { + "x": -3.030967, + "y": 16.77697 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 88.26248, + "y": 104.98258, + "z": 44.244675 + }, + "xAxis": { + "x": 0.5424968, + "y": 0.83771884, + "z": 0.06264505 + }, + "yAxis": { + "x": -0.8358876, + "y": 0.54572195, + "z": -0.05898695 + } + }, + "center": { + "x": 3.1688933, + "y": 18.529491 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 79.25896, + "y": 81.01238, + "z": 52.168736 + }, + "xAxis": { + "x": -0.65125376, + "y": 0.7566944, + "z": 0.05729041 + }, + "yAxis": { + "x": -0.751605, + "y": -0.65360105, + "z": 0.0888571 + } + }, + "center": { + "x": -3.030967, + "y": 20.736969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 89.2016, + "y": 103.95547, + "z": 52.197964 + }, + "xAxis": { + "x": 0.6787865, + "y": 0.72893983, + "z": 0.0888571 + }, + "yAxis": { + "x": -0.7271401, + "y": 0.6840943, + "z": -0.05729041 + } + }, + "center": { + "x": 3.1688933, + "y": 22.489492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 78.50935, + "y": 82.42636, + "z": 60.137123 + }, + "xAxis": { + "x": -0.8520067, + "y": -0.51089394, + "z": 0.1143329 + }, + "yAxis": { + "x": 0.5085527, + "y": -0.8595184, + "z": -0.05101317 + } + }, + "center": { + "x": -3.030967, + "y": 24.696968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 89.8144, + "y": 102.61908, + "z": 60.137123 + }, + "xAxis": { + "x": 0.7936239, + "y": 0.59756935, + "z": 0.11433291 + }, + "yAxis": { + "x": -0.59603006, + "y": 0.80134, + "z": -0.05101317 + } + }, + "center": { + "x": 3.1688933, + "y": 26.449492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 78.439064, + "y": 84.02633, + "z": 68.050835 + }, + "xAxis": { + "x": -0.92556584, + "y": -0.35243076, + "z": 0.13827683 + }, + "yAxis": { + "x": 0.35028872, + "y": -0.9357722, + "z": -0.04035129 + } + }, + "center": { + "x": -3.030967, + "y": 28.656967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 90.052376, + "y": 101.03535, + "z": 68.050835 + }, + "xAxis": { + "x": 0.8834224, + "y": 0.4477102, + "z": 0.13827683 + }, + "yAxis": { + "x": -0.44665214, + "y": 0.8937973, + "z": -0.04035129 + } + }, + "center": { + "x": 3.1688933, + "y": 30.40949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 79.0271, + "y": 85.59978, + "z": 75.89147 + }, + "xAxis": { + "x": -0.18140468, + "y": 0.9830743, + "z": 0.025637742 + }, + "yAxis": { + "x": -0.9699851, + "y": -0.18316048, + "z": 0.15994108 + } + }, + "center": { + "x": -3.030967, + "y": 32.616966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 89.878685, + "y": 99.27393, + "z": 75.92859 + }, + "xAxis": { + "x": 0.9453775, + "y": 0.28404266, + "z": 0.15994108 + }, + "yAxis": { + "x": -0.28367156, + "y": 0.9585787, + "z": -0.02563774 + } + }, + "center": { + "x": 3.1688933, + "y": 34.369488 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": 89.26938, + "y": 97.41004, + "z": 83.76098 + }, + "xAxis": { + "x": 0.9775543, + "y": 0.1116782, + "z": 0.17864907 + }, + "yAxis": { + "x": -0.11217833, + "y": 0.99366105, + "z": -0.007332042 + } + }, + "center": { + "x": 3.1688933, + "y": 38.329487 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 89.82597, + "y": 81.97693, + "z": 12.790135 + }, + "xAxis": { + "x": -0.4469245, + "y": -0.8943086, + "z": -0.021692503 + }, + "yAxis": { + "x": 0.89438814, + "y": -0.44719258, + "z": 0.0094140945 + } + }, + "center": { + "x": -1.979669, + "y": 0.4242164 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 78.51318, + "y": 101.87723, + "z": 12.790135 + }, + "xAxis": { + "x": 0.35050583, + "y": 0.9363093, + "z": -0.021692501 + }, + "yAxis": { + "x": -0.93641657, + "y": 0.35076407, + "z": 0.0094140945 + } + }, + "center": { + "x": 2.2107508, + "y": 3.3603892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 88.89301, + "y": 80.78021, + "z": 20.556993 + }, + "xAxis": { + "x": -0.8030135, + "y": 0.59593713, + "z": -0.0053150537 + }, + "yAxis": { + "x": -0.5959584, + "y": -0.80300367, + "z": 0.0043204967 + } + }, + "center": { + "x": -1.979669, + "y": 4.3842163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 79.589165, + "y": 103.23591, + "z": 20.556795 + }, + "xAxis": { + "x": 0.5083066, + "y": 0.86116534, + "z": 0.004320497 + }, + "yAxis": { + "x": -0.86117285, + "y": 0.5082844, + "z": 0.0053150533 + } + }, + "center": { + "x": 2.2107508, + "y": 7.3203893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 85.76172, + "y": 100.0746, + "z": 91.33412 + }, + "xAxis": { + "x": 0.8380871, + "y": -0.5205498, + "z": 0.16321136 + }, + "yAxis": { + "x": 0.5014858, + "y": 0.8529033, + "z": 0.14514807 + } + }, + "center": { + "x": 2.2107508, + "y": 42.960384 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 87.63251, + "y": 79.86641, + "z": 28.360884 + }, + "xAxis": { + "x": -0.68710446, + "y": 0.72653544, + "z": -0.0058034197 + }, + "yAxis": { + "x": -0.7263286, + "y": -0.68666404, + "z": 0.030647116 + } + }, + "center": { + "x": -1.979669, + "y": 8.344215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 80.754776, + "y": 104.228264, + "z": 28.365852 + }, + "xAxis": { + "x": 0.65017676, + "y": 0.75916463, + "z": 0.030647116 + }, + "yAxis": { + "x": -0.75962436, + "y": 0.6503362, + "z": 0.0058034197 + } + }, + "center": { + "x": 2.2107508, + "y": 11.28039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 86.10234, + "y": 79.38749, + "z": 36.210052 + }, + "xAxis": { + "x": -0.83396345, + "y": -0.5489232, + "z": 0.05646515 + }, + "yAxis": { + "x": 0.55028105, + "y": -0.83490884, + "z": 0.010863939 + } + }, + "center": { + "x": -1.979669, + "y": 12.304215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 81.9442, + "y": 104.843506, + "z": 36.210052 + }, + "xAxis": { + "x": 0.7716856, + "y": 0.63349277, + "z": 0.05646515 + }, + "yAxis": { + "x": -0.63494235, + "y": 0.7724831, + "z": 0.010863939 + } + }, + "center": { + "x": 2.2107508, + "y": 15.24039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 85.199326, + "y": 79.16545, + "z": 44.06893 + }, + "xAxis": { + "x": -0.39681625, + "y": 0.9176727, + "z": -0.020338567 + }, + "yAxis": { + "x": -0.9155014, + "y": -0.39408284, + "z": 0.080968276 + } + }, + "center": { + "x": -1.979669, + "y": 16.264217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 83.090904, + "y": 105.08261, + "z": 44.081055 + }, + "xAxis": { + "x": 0.86903816, + "y": 0.48807457, + "z": 0.080968276 + }, + "yAxis": { + "x": -0.49102095, + "y": 0.8709103, + "z": 0.020338569 + } + }, + "center": { + "x": 2.2107508, + "y": 19.20039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 83.916885, + "y": 79.502914, + "z": 51.96967 + }, + "xAxis": { + "x": -0.968396, + "y": -0.22697884, + "z": 0.103391245 + }, + "yAxis": { + "x": 0.23150304, + "y": -0.97224224, + "z": 0.033931404 + } + }, + "center": { + "x": -1.979669, + "y": 20.224218 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 84.12969, + "y": 104.958305, + "z": 51.96967 + }, + "xAxis": { + "x": 0.93919414, + "y": 0.32745165, + "z": 0.103391245 + }, + "yAxis": { + "x": -0.33235487, + "y": 0.94254386, + "z": 0.033931404 + } + }, + "center": { + "x": 2.2107508, + "y": 23.16039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 83.10136, + "y": 80.05527, + "z": 59.86616 + }, + "xAxis": { + "x": -0.9909953, + "y": -0.052830003, + "z": 0.12303375 + }, + "yAxis": { + "x": 0.059504278, + "y": -0.9969132, + "z": 0.051217932 + } + }, + "center": { + "x": -1.979669, + "y": 24.184217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 84.998726, + "y": 104.49467, + "z": 59.86616 + }, + "xAxis": { + "x": 0.97996247, + "y": 0.15664037, + "z": 0.123033755 + }, + "yAxis": { + "x": -0.16389938, + "y": 0.9851465, + "z": 0.051217932 + } + }, + "center": { + "x": 2.2107508, + "y": 27.12039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 82.54287, + "y": 80.88682, + "z": 67.76055 + }, + "xAxis": { + "x": -0.9825935, + "y": 0.12292486, + "z": 0.13928235 + }, + "yAxis": { + "x": -0.11380837, + "y": -0.9909151, + "z": 0.071658276 + } + }, + "center": { + "x": -1.979669, + "y": 28.144217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 85.64148, + "y": 103.726395, + "z": 67.76055 + }, + "xAxis": { + "x": 0.9900699, + "y": -0.01902465, + "z": 0.13928236 + }, + "yAxis": { + "x": 0.0090844305, + "y": 0.9973879, + "z": 0.071658276 + } + }, + "center": { + "x": 2.2107508, + "y": 31.080389 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 82.418045, + "y": 81.69858, + "z": 75.631516 + }, + "xAxis": { + "x": 0.28302217, + "y": 0.9544352, + "z": -0.09461406 + }, + "yAxis": { + "x": -0.9434529, + "y": 0.2947967, + "z": 0.15162958 + } + }, + "center": { + "x": -1.979669, + "y": 32.104214 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 86.00848, + "y": 102.697655, + "z": 75.64292 + }, + "xAxis": { + "x": 0.96920085, + "y": -0.19405723, + "z": 0.15162958 + }, + "yAxis": { + "x": 0.18119416, + "y": 0.97888553, + "z": 0.09461406 + } + }, + "center": { + "x": 2.2107508, + "y": 35.040386 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": 86.058876, + "y": 101.460785, + "z": 83.50373 + }, + "xAxis": { + "x": 0.91800696, + "y": -0.36299092, + "z": 0.15968983 + }, + "yAxis": { + "x": 0.3470546, + "y": 0.9302173, + "z": 0.11936836 + } + }, + "center": { + "x": 2.2107508, + "y": 39.000385 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 84.375, + "y": 86.175, + "z": 10.85 + }, + "xAxis": { + "x": 0.9754194, + "y": -0.22035663, + "z": 0.0 + }, + "yAxis": { + "x": 0.21998009, + "y": 0.97375256, + "z": 0.05843533 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": 84.375, + "y": 98.275, + "z": 10.85 + }, + "xAxis": { + "x": -0.9931706, + "y": 0.11667095, + "z": 0.0 + }, + "yAxis": { + "x": -0.11647158, + "y": -0.9914735, + "z": 0.05843533 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.93983, + "y": 85.78591, + "z": 18.610731 + }, + "xAxis": { + "x": 0.9220643, + "y": -0.3869024, + "z": -0.010197392 + }, + "yAxis": { + "x": 0.38701782, + "y": 0.9214386, + "z": 0.03417823 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.76689, + "y": 98.70766, + "z": 18.610731 + }, + "xAxis": { + "x": -0.95760614, + "y": 0.28790012, + "z": -0.010197392 + }, + "yAxis": { + "x": -0.28808063, + "y": -0.956996, + "z": 0.03417823 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 81.70575, + "y": 95.03976, + "z": 88.28444 + }, + "xAxis": { + "x": 0.28979653, + "y": 0.95303744, + "z": 0.08796381 + }, + "yAxis": { + "x": -0.9412394, + "y": 0.30044797, + "z": -0.15427057 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.58956, + "y": 85.6218, + "z": 26.383768 + }, + "xAxis": { + "x": 0.8403786, + "y": -0.5417635, + "z": -0.016005272 + }, + "yAxis": { + "x": 0.54192764, + "y": 0.8403822, + "z": 0.0084957555 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 85.097984, + "y": 98.90765, + "z": 26.383768 + }, + "xAxis": { + "x": -0.89264035, + "y": 0.45048535, + "z": -0.016005272 + }, + "yAxis": { + "x": -0.45064822, + "y": -0.8926612, + "z": 0.0084957555 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.36224, + "y": 85.66463, + "z": 34.162983 + }, + "xAxis": { + "x": 0.7329134, + "y": -0.6801034, + "z": -0.017242257 + }, + "yAxis": { + "x": 0.6798715, + "y": 0.73311496, + "z": -0.01781001 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 85.32854, + "y": 98.88895, + "z": 34.162983 + }, + "xAxis": { + "x": -0.80030215, + "y": 0.59934896, + "z": -0.017242257 + }, + "yAxis": { + "x": -0.59909713, + "y": -0.8004783, + "z": -0.01781001 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.29209, + "y": 85.88988, + "z": 41.942062 + }, + "xAxis": { + "x": 0.6030249, + "y": -0.79760176, + "z": -0.013869713 + }, + "yAxis": { + "x": 0.79654133, + "y": 0.6029869, + "z": -0.04391751 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 85.42197, + "y": 98.67231, + "z": 41.942062 + }, + "xAxis": { + "x": -0.6834754, + "y": 0.72984177, + "z": -0.013869712 + }, + "yAxis": { + "x": -0.72879124, + "y": -0.6833261, + "z": -0.04391751 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.408394, + "y": 86.26735, + "z": 49.714687 + }, + "xAxis": { + "x": 0.45476973, + "y": -0.8905889, + "z": -0.005992968 + }, + "yAxis": { + "x": 0.8882934, + "y": 0.45406196, + "z": -0.06901138 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 85.34596, + "y": 98.28471, + "z": 49.714687 + }, + "xAxis": { + "x": -0.5458087, + "y": 0.8378884, + "z": -0.005992967 + }, + "yAxis": { + "x": -0.83567995, + "y": -0.54486364, + "z": -0.06901138 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.73463, + "y": 86.76207, + "z": 57.474747 + }, + "xAxis": { + "x": 0.29277802, + "y": -0.9561607, + "z": 0.0061419797 + }, + "yAxis": { + "x": 0.9522622, + "y": 0.29099134, + "z": -0.092307925 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 85.0735, + "y": 97.75845, + "z": 57.474747 + }, + "xAxis": { + "x": -0.39160144, + "y": 0.92011446, + "z": 0.0061419806 + }, + "yAxis": { + "x": -0.91642517, + "y": -0.38941512, + "z": -0.092307925 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.287704, + "y": 87.33543, + "z": 65.21652 + }, + "xAxis": { + "x": 0.12210888, + "y": -0.9922694, + "z": 0.022156144 + }, + "yAxis": { + "x": 0.9864499, + "y": 0.11886781, + "z": -0.113079555 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 84.58371, + "y": 97.13017, + "z": 65.21652 + }, + "xAxis": { + "x": -0.22566977, + "y": 0.9739519, + "z": 0.022156145 + }, + "yAxis": { + "x": -0.9685051, + "y": -0.2218353, + "z": -0.11307956 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": 85.07747, + "y": 87.946335, + "z": 72.93486 + }, + "xAxis": { + "x": -0.0519075, + "y": -0.9977872, + "z": 0.041549385 + }, + "yAxis": { + "x": 0.9897889, + "y": -0.05693302, + "z": -0.13067757 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 83.86249, + "y": 96.43968, + "z": 72.93486 + }, + "xAxis": { + "x": -0.05319585, + "y": 0.99771935, + "z": 0.04154939 + }, + "yAxis": { + "x": -0.9902932, + "y": -0.047357924, + "z": -0.13067757 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": 82.90298, + "y": 95.728745, + "z": 80.62535 + }, + "xAxis": { + "x": 0.12043379, + "y": 0.9906745, + "z": 0.06371604 + }, + "yAxis": { + "x": -0.981109, + "y": 0.12856795, + "z": -0.14455235 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + } + ], + "connections": [], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "36876.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "21.297397", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "3.2905e+8", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "4.1202e+7", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "2.3816e+7", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "4.6906e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "785382.405556", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "4.5893e+7", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "4.0299e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "94.343562", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "660707.555556", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "1.2139e+6", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "925684", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "1.1017e+6", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower.json b/assets/semio/design_nakagin-capsule-tower.json index 5f0a401b3..bdeb1decd 100644 --- a/assets/semio/design_nakagin-capsule-tower.json +++ b/assets/semio/design_nakagin-capsule-tower.json @@ -1 +1,7477 @@ -{"name":"Nakagin Capsule Tower","description":"The digital shadow of the former Nakagin Capsule Tower which was a mixed-use residential and office tower designed by architect Kisho Kurokawa and located in Shimbashi, Tokyo, Japan. Completed in 1972, the building was a rare remaining example of Japanese Metabolism, an architectural movement emblematic of Japan's postwar cultural resurgence.","icon":"icons/nakagin-capsule-tower.svg","image":"images/nakagin-capsule-tower.png","variant":"","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2349.53","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"22.890446","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.0311e+7","unit":"€","definition":""},{"name":"return","value":"2.2088e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.818e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"276616.911111","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"53781.79","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.4854e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"232534","unit":"€/a","definition":""},{"name":"specific energy demand","value":"99.440124","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"44082.911111","unit":"€/a","definition":""},{"name":"heating energy demand","value":"83186","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"63366","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"70802","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "The digital shadow of the former Nakagin Capsule Tower which was a mixed-use residential and office tower designed by architect Kisho Kurokawa and located in Shimbashi, Tokyo, Japan. Completed in 1972, the building was a rare remaining example of Japanese Metabolism, an architectural movement emblematic of Japan's postwar cultural resurgence.", + "icon": "icons/nakagin-capsule-tower.svg", + "image": "images/nakagin-capsule-tower.png", + "variant": "", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2349.53", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "22.890446", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.0311e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "2.2088e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.818e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "276616.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "53781.79", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.4854e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "232534", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "99.440124", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "44082.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "83186", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "63366", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "70802", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_dancing.json b/assets/semio/design_nakagin-capsule-tower_dancing.json index 2b623e846..5c8b45331 100644 --- a/assets/semio/design_nakagin-capsule-tower_dancing.json +++ b/assets/semio/design_nakagin-capsule-tower_dancing.json @@ -1 +1,7477 @@ -{"name":"Nakagin Capsule Tower","description":"The expolsion axonometry of a futuristic variant of the Nakagin Capsule Tower where two towers are dancing with each other. The capsules are ellipsoids around a round shaft and a blob base.","icon":"icons/nakagin-capsule-tower_dancing_axonometry_explosion.svg","image":"images/nakagin-capsule-tower_dancing_axonometry_explosion.png","variant":"Dancing","view":"Explosion Axonometry","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":289.0,"turn":0.0,"tilt":5.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":100.0,"turn":0.0,"tilt":5.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":81.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2128.8","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"20.170755","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.2251e+7","unit":"€","definition":""},{"name":"return","value":"3.9635e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"729701","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"411233.988889","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"42939.502222","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"4.3747e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"336342","unit":"€/a","definition":""},{"name":"specific energy demand","value":"93.568468","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"74891.988889","unit":"€/a","definition":""},{"name":"heating energy demand","value":"66427","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"50587","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"69173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "The expolsion axonometry of a futuristic variant of the Nakagin Capsule Tower where two towers are dancing with each other. The capsules are ellipsoids around a round shaft and a blob base.", + "icon": "icons/nakagin-capsule-tower_dancing_axonometry_explosion.svg", + "image": "images/nakagin-capsule-tower_dancing_axonometry_explosion.png", + "variant": "Dancing", + "view": "Explosion Axonometry", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 289.0, + "turn": 0.0, + "tilt": 5.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 100.0, + "turn": 0.0, + "tilt": 5.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 81.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2128.8", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "20.170755", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.2251e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "3.9635e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "729701", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "411233.988889", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "42939.502222", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "4.3747e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "336342", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "93.568468", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "74891.988889", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "66427", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "50587", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "69173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_dancing_flat.json b/assets/semio/design_nakagin-capsule-tower_dancing_flat.json index 375399c93..5493fb859 100644 --- a/assets/semio/design_nakagin-capsule-tower_dancing_flat.json +++ b/assets/semio/design_nakagin-capsule-tower_dancing_flat.json @@ -1 +1,7118 @@ -{"name":"Nakagin Capsule Tower","description":"The expolsion axonometry of a futuristic variant of the Nakagin Capsule Tower where two towers are dancing with each other. The capsules are ellipsoids around a round shaft and a blob base.","icon":"icons/nakagin-capsule-tower_dancing_axonometry_explosion.svg","image":"images/nakagin-capsule-tower_dancing_axonometry_explosion.png","variant":"Dancing","view":"Explosion Axonometry","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":-1.5153596,"y":-1.3654443,"z":103.420906},"xAxis":{"x":-0.63712275,"y":-0.7450154,"z":0.19755179},"yAxis":{"x":0.7677775,"y":-0.63599,"z":0.07768176}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":-13.961024,"y":-19.562712,"z":123.16797},"xAxis":{"x":-0.93382967,"y":-0.31402892,"z":-0.17131259},"yAxis":{"x":0.344424,"y":-0.91865724,"z":-0.19349675}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":-1.75,"y":-7.75,"z":12.5},"xAxis":{"x":0.32556817,"y":0.94551855,"z":0.0},"yAxis":{"x":-0.9419206,"y":0.32432926,"z":0.087155744}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-1.0416517,"y":-8.531471,"z":22.708858},"xAxis":{"x":0.5582617,"y":0.8293582,"z":-0.022557568},"yAxis":{"x":-0.8279352,"y":0.5586466,"z":0.04936801}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-0.7509498,"y":-9.061347,"z":32.954247},"xAxis":{"x":0.7535248,"y":0.6565101,"z":-0.034566317},"yAxis":{"x":-0.65670484,"y":0.75411546,"z":0.0069739646}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-0.7995252,"y":-9.239522,"z":43.215782},"xAxis":{"x":0.8978168,"y":0.43896064,"z":-0.035193495},"yAxis":{"x":-0.4401035,"y":0.89718086,"z":-0.037086535}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-1.0854814,"y":-8.99028,"z":53.47197},"xAxis":{"x":0.98113155,"y":0.19179593,"z":-0.024395604},"yAxis":{"x":-0.19315164,"y":0.97792184,"z":-0.07975807}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-1.4904604,"y":-8.267546,"z":63.701675},"xAxis":{"x":0.99769163,"y":-0.067844145,"z":-0.0029214371},"yAxis":{"x":0.06702561,"y":0.9907393,"z":-0.11808155}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-1.8878505,"y":-7.0580764,"z":73.88561},"xAxis":{"x":0.9463486,"y":-0.3219546,"z":0.027739862},"yAxis":{"x":0.32238603,"y":0.93474436,"z":-0.14939938}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-2.1515663,"y":-5.382384,"z":84.00765},"xAxis":{"x":0.8306629,"y":-0.5529139,"z":0.06546206},"yAxis":{"x":0.55522144,"y":0.8138202,"z":-0.17153983}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-2.164792,"y":-3.2933104,"z":94.05598},"xAxis":{"x":0.6586569,"y":-0.744706,"z":0.10762927},"yAxis":{"x":0.7493856,"y":0.63635224,"z":-0.1829675}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-2.4069085,"y":-0.1181994,"z":12.989752},"xAxis":{"x":0.9953887,"y":-0.09029477,"z":-0.03237674},"yAxis":{"x":0.091998495,"y":0.99420047,"z":0.055692818}},"center":{"x":-0.93696856,"y":0.7832468},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":0.28205657,"y":-0.97383535,"z":22.922638},"xAxis":{"x":0.93889034,"y":-0.34421495,"z":-0.0009968684},"yAxis":{"x":0.34413248,"y":0.9385935,"z":0.024800014}},"center":{"x":-0.93696856,"y":4.743247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":2.4721353,"y":-2.0951803,"z":32.95115},"xAxis":{"x":0.8182601,"y":-0.5736374,"z":0.03729018},"yAxis":{"x":0.5739431,"y":0.81888974,"z":0.0029793852}},"center":{"x":-0.93696856,"y":8.703246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":4.109983,"y":-3.341113,"z":43.069942},"xAxis":{"x":0.6418631,"y":-0.76265264,"z":0.07982934},"yAxis":{"x":0.7654939,"y":0.6433902,"z":-0.008255903}},"center":{"x":-0.93696856,"y":12.663246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":5.1805487,"y":-4.561873,"z":53.267418},"xAxis":{"x":0.42193183,"y":-0.8981532,"z":0.12367071},"yAxis":{"x":0.9055016,"y":0.42426497,"z":-0.008126721}},"center":{"x":-0.93696856,"y":16.623247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":5.708122,"y":-5.609445,"z":63.52652},"xAxis":{"x":0.17371759,"y":-0.9707426,"z":0.16577406},"yAxis":{"x":0.98425734,"y":0.17670953,"z":0.0033579662}},"center":{"x":-0.93696856,"y":20.583248},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":5.7546453,"y":-6.3478246,"z":73.82591},"xAxis":{"x":-0.08556697,"y":-0.9753871,"z":0.2032197},"yAxis":{"x":0.99629956,"y":-0.082109146,"z":0.025401745}},"center":{"x":-0.93696856,"y":24.543247},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":5.415421,"y":-6.6624465,"z":84.14147},"xAxis":{"x":-0.3379415,"y":-0.9117647,"z":0.23341092},"yAxis":{"x":0.94079334,"y":-0.33424303,"z":0.05647598}},"center":{"x":-0.93696856,"y":28.503246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":4.8125005,"y":-6.468134,"z":94.44796},"xAxis":{"x":-0.56590486,"y":-0.7842873,"z":0.25425407},"yAxis":{"x":0.8215877,"y":-0.56220764,"z":0.09442578}},"center":{"x":-0.93696856,"y":32.463245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-7.5782704,"y":-2.5874844,"z":13.435106},"xAxis":{"x":0.83440876,"y":-0.53807175,"z":-0.11933507},"yAxis":{"x":0.54483956,"y":0.8379547,"z":0.03133347}},"center":{"x":-0.4242164,"y":1.8345448},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-5.358523,"y":-2.0118344,"z":23.303574},"xAxis":{"x":0.6695792,"y":-0.7386987,"z":-0.07738132},"yAxis":{"x":0.74176097,"y":0.67040634,"z":0.018601367}},"center":{"x":-0.4242164,"y":5.7945447},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-3.251512,"y":-1.6331289,"z":33.20622},"xAxis":{"x":0.4578397,"y":-0.88840693,"z":-0.033405066},"yAxis":{"x":0.88903475,"y":0.4575195,"z":0.01712037}},"center":{"x":-0.4242164,"y":9.754545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-1.304822,"y":-1.4142685,"z":43.146427},"xAxis":{"x":0.2138735,"y":-0.97681475,"z":0.009544118},"yAxis":{"x":0.9764481,"y":0.21405698,"z":0.026993174}},"center":{"x":-0.4242164,"y":13.714545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":0.4450798,"y":-1.3070704,"z":53.12499},"xAxis":{"x":-0.045401324,"y":-0.9977914,"z":0.048487876},"yAxis":{"x":0.99793935,"y":-0.043098077,"z":0.047535144}},"center":{"x":-0.4242164,"y":17.674545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":1.9753731,"y":-1.2556083,"z":63.14002},"xAxis":{"x":-0.30200514,"y":-0.94988227,"z":0.08072562},"yAxis":{"x":0.9520181,"y":-0.296113,"z":0.077321775}},"center":{"x":-0.4242164,"y":21.634546},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":3.2784665,"y":-1.2000902,"z":73.18712},"xAxis":{"x":-0.5381435,"y":-0.8364096,"z":0.1040218},"yAxis":{"x":0.84186876,"y":-0.52744234,"z":0.11428749}},"center":{"x":-0.4242164,"y":25.594545},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":4.3625236,"y":-1.0810057,"z":83.25965},"xAxis":{"x":-0.7374412,"y":-0.6652424,"z":0.11676091},"yAxis":{"x":0.6751298,"y":-0.7210442,"z":0.15586886}},"center":{"x":-0.4242164,"y":29.554544},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":5.250897,"y":-0.8432527,"z":93.34923},"xAxis":{"x":-0.8860777,"y":-0.44825023,"z":0.11805953},"yAxis":{"x":0.46336386,"y":-0.8634931,"z":0.19918239}},"center":{"x":-0.4242164,"y":33.51454},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-9.527546,"y":-8.23516,"z":13.36509},"xAxis":{"x":-0.9891255,"y":0.08606999,"z":0.11925897},"yAxis":{"x":-0.09518274,"y":-0.99278396,"z":-0.07294013}},"center":{"x":-0.7832468,"y":2.8772452},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-8.696225,"y":-6.967274,"z":23.368233},"xAxis":{"x":-0.9355641,"y":0.34198764,"z":0.08811502},"yAxis":{"x":-0.34651875,"y":-0.93709475,"z":-0.042168815}},"center":{"x":-0.7832468,"y":6.837245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-6.669226,"y":-4.041873,"z":43.28672},"xAxis":{"x":-0.64241844,"y":0.7663193,"z":0.0073018465},"yAxis":{"x":-0.7663502,"y":-0.64235586,"z":-0.009288694}},"center":{"x":-0.7832468,"y":14.757245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.4170566,"y":-2.4605012,"z":53.200996},"xAxis":{"x":-0.4231626,"y":0.9053076,"z":-0.03676331},"yAxis":{"x":-0.90573204,"y":-0.42374516,"z":-0.009459998}},"center":{"x":-0.7832468,"y":18.717243},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-2.37771,"y":0.7112866,"z":72.95233},"xAxis":{"x":0.0857469,"y":0.9894063,"z":-0.11714399},"yAxis":{"x":-0.99577034,"y":0.081211254,"z":-0.04296676}},"center":{"x":-0.7832468,"y":26.637245},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-0.6042442,"y":2.2084732,"z":82.799904},"xAxis":{"x":0.34010977,"y":0.9286847,"z":-0.14788543},"yAxis":{"x":-0.94018304,"y":0.33254027,"z":-0.07397867}},"center":{"x":-0.7832468,"y":30.597244},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.95325,"y":-13.365648,"z":13.079913},"xAxis":{"x":-0.8313422,"y":0.53869915,"z":0.13665034},"yAxis":{"x":-0.5365383,"y":-0.8420566,"z":0.055383664}},"center":{"x":-1.8345448,"y":3.3899975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.5267124,"y":-12.59408,"z":23.329191},"xAxis":{"x":-0.666781,"y":0.73920655,"z":0.09474588},"yAxis":{"x":-0.7364311,"y":-0.6730452,"z":0.06840568}},"center":{"x":-1.8345448,"y":7.3499975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.074638,"y":-11.293391,"z":33.52624},"xAxis":{"x":-0.45533243,"y":0.8888702,"z":0.050815266},"yAxis":{"x":-0.88620365,"y":-0.4579707,"z":0.07004257}},"center":{"x":-1.8345448,"y":11.309998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.460505,"y":-9.490417,"z":43.654037},"xAxis":{"x":-0.21165964,"y":0.9773115,"z":0.007904895},"yAxis":{"x":-0.97546977,"y":-0.21174754,"z":0.060180828}},"center":{"x":-1.8345448,"y":15.269998},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.559023,"y":-7.246827,"z":53.700356},"xAxis":{"x":0.047339655,"y":0.9983974,"z":-0.031009555},"yAxis":{"x":-0.99803925,"y":0.04854965,"z":0.03950432}},"center":{"x":-1.8345448,"y":19.229996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.264835,"y":-4.654845,"z":63.658615},"xAxis":{"x":0.30370492,"y":0.9506657,"z":-0.06322954},"yAxis":{"x":-0.952347,"y":0.30487037,"z":0.009446877}},"center":{"x":-1.8345448,"y":23.189997},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.499814,"y":-1.8308542,"z":73.52836},"xAxis":{"x":0.5396583,"y":0.8374265,"z":-0.08652073},"yAxis":{"x":-0.8415616,"y":0.5394398,"z":-0.027907139}},"center":{"x":-1.8345448,"y":27.149996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.218481,"y":1.0926741,"z":83.31523},"xAxis":{"x":0.7388373,"y":0.6665323,"z":-0.09926797},"yAxis":{"x":-0.67336553,"y":0.7359914,"z":-0.06996738}},"center":{"x":-1.8345448,"y":31.109995},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-4.4111648,"y":3.976365,"z":93.03068},"xAxis":{"x":0.8874297,"y":0.44983405,"z":-0.10058728},"yAxis":{"x":-0.4594226,"y":0.8808953,"z":-0.11381713}},"center":{"x":-1.8345448,"y":35.069996},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-1.196357,"y":-15.601908,"z":13.386254},"xAxis":{"x":-0.086254425,"y":-0.9961783,"z":0.013745277},"yAxis":{"x":0.98676294,"y":-0.087324694,"z":-0.13665034}},"center":{"x":-2.8772452,"y":3.030967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-2.5477536,"y":-16.220295,"z":23.874218},"xAxis":{"x":-0.34040016,"y":-0.9392128,"z":0.044800572},"yAxis":{"x":0.93328565,"y":-0.34328505,"z":-0.10551448}},"center":{"x":-2.8772452,"y":6.990967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-4.210003,"y":-16.052387,"z":34.33437},"xAxis":{"x":-0.571807,"y":-0.8176738,"z":0.0666806},"yAxis":{"x":0.81505233,"y":-0.5754634,"z":-0.06731664}},"center":{"x":-2.8772452,"y":10.950967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.969306,"y":-15.046464,"z":44.731438},"xAxis":{"x":-0.7644278,"y":-0.6399897,"z":0.077868074},"yAxis":{"x":0.64026207,"y":-0.76775914,"z":-0.02470567}},"center":{"x":-2.8772452,"y":14.910967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.605135,"y":-13.208925,"z":55.034527},"xAxis":{"x":-0.90490496,"y":-0.418482,"z":0.07758719},"yAxis":{"x":0.42103586,"y":-0.9068373,"z":0.01936351}},"center":{"x":-2.8772452,"y":18.870966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-8.905523,"y":-10.603834,"z":65.219246},"xAxis":{"x":-0.98349714,"y":-0.16851151,"z":0.06585742},"yAxis":{"x":0.17257608,"y":-0.9830534,"z":0.061834898}},"center":{"x":-2.8772452,"y":22.830967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-9.6817665,"y":-7.3484845,"z":75.26943},"xAxis":{"x":-0.99475425,"y":0.09258743,"z":0.043492176},"yAxis":{"x":-0.08788756,"y":-0.9911221,"z":0.09976327}},"center":{"x":-2.8772452,"y":26.790966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-9.781507,"y":-3.6052606,"z":85.17824},"xAxis":{"x":-0.9378956,"y":0.3467086,"z":0.012042396},"yAxis":{"x":-0.34229296,"y":-0.930484,"z":0.13051844}},"center":{"x":-2.8772452,"y":30.750965},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-9.0993,"y":0.42962047,"z":94.948616},"xAxis":{"x":-0.81686413,"y":0.57622975,"z":-0.026311003},"yAxis":{"x":-0.57299817,"y":-0.805344,"z":0.15196766}},"center":{"x":-2.8772452,"y":34.710964},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":3.9287672,"y":-13.015997,"z":13.109857},"xAxis":{"x":-0.5362139,"y":-0.84092474,"z":0.07294013},"yAxis":{"x":0.8401528,"y":-0.5400496,"z":-0.049896974}},"center":{"x":-3.3899975,"y":1.979669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":3.0750473,"y":-15.05107,"z":23.656837},"xAxis":{"x":-0.7361562,"y":-0.6713363,"z":0.08591624},"yAxis":{"x":0.67331153,"y":-0.73931795,"z":-0.007780733}},"center":{"x":-3.3899975,"y":5.939669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":1.527223,"y":-16.376642,"z":34.237774},"xAxis":{"x":-0.885827,"y":-0.4556935,"z":0.087486446},"yAxis":{"x":0.4599758,"y":-0.887191,"z":0.03625492}},"center":{"x":-3.3899975,"y":9.899668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-0.5088419,"y":-16.837425,"z":44.80902},"xAxis":{"x":-0.97484714,"y":-0.20895049,"z":0.07754184},"yAxis":{"x":0.21493964,"y":-0.97341424,"z":0.079156294}},"center":{"x":-3.3899975,"y":13.859668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-2.7934265,"y":-16.33811,"z":55.327602},"xAxis":{"x":-0.9970434,"y":0.051782206,"z":0.05677206},"yAxis":{"x":-0.04480468,"y":-0.99200845,"z":0.11794834}},"center":{"x":-3.3899975,"y":17.819668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.0695763,"y":-14.849959,"z":65.75419},"xAxis":{"x":-0.9508766,"y":0.30842382,"z":0.026617395},"yAxis":{"x":-0.301245,"y":-0.9416842,"z":0.14994101}},"center":{"x":-3.3899975,"y":21.779669},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.080921,"y":-12.412811,"z":76.05584},"xAxis":{"x":-0.8395482,"y":0.5431773,"z":-0.01083105},"yAxis":{"x":-0.5365982,"y":-0.8259313,"z":0.17291573}},"center":{"x":-3.3899975,"y":25.739668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.589455,"y":-9.132311,"z":86.20826},"xAxis":{"x":-0.67077833,"y":0.73976344,"z":-0.05297638},"yAxis":{"x":-0.73454344,"y":-0.6527768,"z":0.18527928}},"center":{"x":-3.3899975,"y":29.699667},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.392038,"y":-5.1725883,"z":96.19753},"xAxis":{"x":-0.45627055,"y":0.8845498,"z":-0.09689598},"yAxis":{"x":-0.8813541,"y":-0.43422812,"z":0.1861743}},"center":{"x":-3.3899975,"y":33.659668},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":6.2172976,"y":-7.330177,"z":13.928757},"xAxis":{"x":0.9948696,"y":-0.08804783,"z":-0.049820874},"yAxis":{"x":0.086557,"y":0.99575406,"z":-0.03133347}},"center":{"x":-3.030967,"y":0.93696856},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":6.6165395,"y":-9.859999,"z":24.339933},"xAxis":{"x":-0.34091404,"y":-0.93802464,"z":0.062348798},"yAxis":{"x":0.9392964,"y":-0.34260687,"z":-0.018514436}},"center":{"x":-3.030967,"y":4.896969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":6.273778,"y":-12.246752,"z":34.84625},"xAxis":{"x":-0.5723273,"y":-0.8156954,"z":0.08415719},"yAxis":{"x":0.81939656,"y":-0.5728869,"z":0.019747058}},"center":{"x":-3.030967,"y":8.856968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":5.1053953,"y":-14.324837,"z":45.444443},"xAxis":{"x":0.6434846,"y":-0.7629188,"z":0.062310327},"yAxis":{"x":0.7647492,"y":0.63724935,"z":-0.09524632}},"center":{"x":-3.030967,"y":12.816968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":3.3620186,"y":-15.066105,"z":55.997314},"xAxis":{"x":-0.9048361,"y":-0.41506103,"z":0.0948472},"yAxis":{"x":0.42375925,"y":-0.8995247,"z":0.10622378}},"center":{"x":-3.030967,"y":16.77697},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":1.1919953,"y":-15.176476,"z":66.55551},"xAxis":{"x":-0.98287344,"y":-0.16453825,"z":0.08298752},"yAxis":{"x":0.17545763,"y":-0.9732315,"z":0.1484422}},"center":{"x":-3.030967,"y":20.736969},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-1.3469417,"y":-14.481296,"z":77.094765},"xAxis":{"x":-0.08420157,"y":-0.97892797,"z":0.18603791},"yAxis":{"x":0.99344975,"y":-0.096946254,"z":-0.060489677}},"center":{"x":-3.030967,"y":24.696968},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-3.6031632,"y":-12.561447,"z":87.47887},"xAxis":{"x":-0.33721203,"y":-0.9162191,"z":0.2164038},"yAxis":{"x":0.93583155,"y":-0.35125956,"z":-0.028913813}},"center":{"x":-3.030967,"y":28.656967},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.207156,"y":-9.672523,"z":97.678535},"xAxis":{"x":-0.8140145,"y":0.5807661,"z":-0.009550408},"yAxis":{"x":-0.5660285,"y":-0.78945345,"z":0.2374341}},"center":{"x":-3.030967,"y":32.616966},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":3.655137,"y":-2.203867,"z":14.360628},"xAxis":{"x":0.83996797,"y":-0.54166925,"z":-0.03237674},"yAxis":{"x":0.5422824,"y":0.8400787,"z":0.014054429}},"center":{"x":-1.979669,"y":0.4242164},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":5.5881433,"y":-4.208114,"z":24.533062},"xAxis":{"x":-0.7401634,"y":-0.672426,"z":-0.0011949046},"yAxis":{"x":0.6723857,"y":-0.74013644,"z":0.009771731}},"center":{"x":-1.979669,"y":4.3842163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":6.733776,"y":-6.5173197,"z":34.819756},"xAxis":{"x":-0.8883397,"y":-0.45918667,"z":0.0003825858},"yAxis":{"x":0.45854017,"y":-0.8870442,"z":0.05379155}},"center":{"x":-1.979669,"y":8.344215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":6.8989253,"y":-8.869108,"z":45.224186},"xAxis":{"x":0.21326065,"y":-0.972205,"z":0.09663012},"yAxis":{"x":0.9765359,"y":0.21514808,"z":0.009431346}},"center":{"x":-1.979669,"y":12.304215},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":6.6180468,"y":-10.34109,"z":55.663837},"xAxis":{"x":-0.9986359,"y":0.042766698,"z":-0.029956149},"yAxis":{"x":-0.046443693,"y":-0.98971325,"z":0.13531676}},"center":{"x":-1.979669,"y":16.264217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":5.3106318,"y":-11.59211,"z":66.17745},"xAxis":{"x":-0.30256343,"y":-0.93835497,"z":0.1671687},"yAxis":{"x":0.9531072,"y":-0.2966723,"z":0.05976851}},"center":{"x":-1.979669,"y":20.224218},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":3.7784266,"y":-11.917018,"z":76.66428},"xAxis":{"x":-0.5373377,"y":-0.82169145,"z":0.18997717},"yAxis":{"x":0.8431069,"y":-0.5289615,"z":0.096801065}},"center":{"x":-1.979669,"y":24.184217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":2.0171952,"y":-11.419313,"z":87.108284},"xAxis":{"x":-0.73448586,"y":-0.647813,"z":0.20216045},"yAxis":{"x":0.6762633,"y":-0.7235259,"z":0.13848576}},"center":{"x":-1.979669,"y":28.144217},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":0.5164968,"y":-10.157769,"z":97.47112},"xAxis":{"x":-0.46414614,"y":0.8668732,"z":-0.18193191},"yAxis":{"x":-0.88033646,"y":-0.42877734,"z":0.20287369}},"center":{"x":-1.979669,"y":32.104214},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":-13.85,"y":-7.75,"z":12.5},"xAxis":{"x":-0.17364818,"y":-0.9848077,"z":1.7347235E-18},"yAxis":{"x":0.98106027,"y":-0.17298739,"z":0.087155744}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-14.671877,"y":-7.08896,"z":22.708858},"xAxis":{"x":-0.42164835,"y":-0.9064788,"z":-0.022557566},"yAxis":{"x":0.90513355,"y":-0.42225114,"z":0.049368005}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-15.04189,"y":-6.611084,"z":32.954247},"xAxis":{"x":-0.64154685,"y":-0.7663047,"z":-0.034566317},"yAxis":{"x":0.76658934,"y":-0.6420998,"z":0.006973962}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-15.021786,"y":-6.427504,"z":43.215782},"xAxis":{"x":-0.8180946,"y":-0.5740058,"z":-0.03519349},"yAxis":{"x":0.5750351,"y":-0.81728774,"z":-0.037086535}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-14.70036,"y":-6.628944,"z":53.47197},"xAxis":{"x":-0.9390487,"y":-0.34291738,"z":-0.0243956},"yAxis":{"x":0.34375426,"y":-0.93566644,"z":-0.07975807}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-14.187306,"y":-7.279428,"z":63.701675},"xAxis":{"x":-0.99602157,"y":-0.08906448,"z":-0.0029214337},"yAxis":{"x":0.08878534,"y":-0.9890267,"z":-0.11808154}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-13.605606,"y":-8.411841,"z":73.88561},"xAxis":{"x":-0.9850623,"y":0.16994928,"z":0.027739864},"yAxis":{"x":-0.1721907,"y":-0.9736684,"z":-0.14939938}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-13.083001,"y":-10.025649,"z":84.00765},"xAxis":{"x":-0.90693086,"y":0.41616234,"z":0.06546206},"yAxis":{"x":-0.4210762,"y":-0.8906565,"z":-0.17153983}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-12.743135,"y":-12.086934,"z":94.05598},"xAxis":{"x":-0.76704544,"y":0.6325008,"z":0.10762927},"yAxis":{"x":-0.640612,"y":-0.7457474,"z":-0.1829675}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-12.69698,"y":-14.530747,"z":104.02387},"xAxis":{"x":-0.5751064,"y":0.80396247,"z":0.15131736},"yAxis":{"x":-0.8155741,"y":-0.54899013,"z":-0.18288997}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-13.03514,"y":-17.265614,"z":113.910194},"xAxis":{"x":-0.344424,"y":0.91865724,"z":0.19349675},"yAxis":{"x":-0.93382967,"y":-0.31402892,"z":-0.17131259}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-12.007302,"y":-15.185078,"z":12.989752},"xAxis":{"x":-0.997259,"y":-0.06653002,"z":-0.03237674},"yAxis":{"x":0.0646614,"y":-0.99635196,"z":0.055692818}},"center":{"x":1.124723,"y":3.1688933},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-14.797013,"y":-14.760623,"z":22.922638},"xAxis":{"x":-0.9811781,"y":0.19310229,"z":-0.0009968645},"yAxis":{"x":-0.19306725,"y":-0.98087204,"z":0.024800016}},"center":{"x":1.124723,"y":7.1288934},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-17.135546,"y":-13.9956875,"z":32.95115},"xAxis":{"x":-0.8979226,"y":0.43857092,"z":0.037290182},"yAxis":{"x":-0.43877432,"y":-0.89859235,"z":0.0029793861}},"center":{"x":1.124723,"y":11.088894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.948135,"y":-13.02131,"z":43.069942},"xAxis":{"x":-0.75326586,"y":0.6528536,"z":0.07982935},"yAxis":{"x":-0.655421,"y":-0.7552186,"z":-0.008255898}},"center":{"x":1.124723,"y":15.048893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.19649,"y":-11.983053,"z":53.267418},"xAxis":{"x":-0.55723923,"y":0.82109076,"z":0.12367071},"yAxis":{"x":-0.82798374,"y":-0.5606932,"z":-0.008126717}},"center":{"x":1.124723,"y":19.008894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.881443,"y":-11.03091,"z":63.52652},"xAxis":{"x":-0.3234364,"y":0.9316157,"z":0.16577406},"yAxis":{"x":-0.94449604,"y":-0.3285057,"z":0.0033579704}},"center":{"x":1.124723,"y":22.968895},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-21.042902,"y":-10.308899,"z":73.82591},"xAxis":{"x":-0.068070665,"y":0.97676414,"z":0.2032197},"yAxis":{"x":-0.99687815,"y":-0.074757345,"z":0.025401747}},"center":{"x":1.124723,"y":26.928894},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.757072,"y":-9.945084,"z":84.14147},"xAxis":{"x":0.19114947,"y":0.9534051,"z":0.23341092},"yAxis":{"x":-0.9814977,"y":0.18295546,"z":0.056475975}},"center":{"x":1.124723,"y":30.888893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.131178,"y":-10.042686,"z":94.44796},"xAxis":{"x":0.4362481,"y":0.8631584,"z":0.25425407},"yAxis":{"x":-0.8994212,"y":0.42676133,"z":0.094425775}},"center":{"x":1.124723,"y":34.848892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.296026,"y":-10.672933,"z":104.72075},"xAxis":{"x":0.6502286,"y":0.7122824,"z":0.2643038},"yAxis":{"x":-0.7563404,"y":0.63975334,"z":0.13661948}},"center":{"x":1.124723,"y":38.80889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.396933,"y":-11.87011,"z":114.93756},"xAxis":{"x":0.8182523,"y":0.5112397,"z":0.26286313},"yAxis":{"x":-0.56217724,"y":0.8071614,"z":0.18013114}},"center":{"x":1.124723,"y":42.76889},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-7.2858906,"y":-11.937214,"z":13.435106},"xAxis":{"x":-0.90830874,"y":0.40091687,"z":-0.11933507},"yAxis":{"x":-0.4070467,"y":-0.91286975,"z":0.03133347}},"center":{"x":0.45382434,"y":2.2107508},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-9.388258,"y":-12.853022,"z":23.303574},"xAxis":{"x":-0.77689356,"y":0.62485886,"z":-0.07738131},"yAxis":{"x":-0.627754,"y":-0.77818954,"z":0.018601371}},"center":{"x":0.45382434,"y":6.170751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-13.298571,"y":-14.07737,"z":43.146427},"xAxis":{"x":-0.36404783,"y":0.93133134,"z":0.009544116},"yAxis":{"x":-0.93094057,"y":-0.3641717,"z":0.026993178}},"center":{"x":0.45382434,"y":14.090751},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-15.0101595,"y":-14.456993,"z":53.12499},"xAxis":{"x":-0.11124659,"y":0.99260926,"z":0.048487872},"yAxis":{"x":-0.9923951,"y":-0.11354463,"z":0.047535148}},"center":{"x":0.45382434,"y":18.050749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-17.791925,"y":-15.005897,"z":73.18712},"xAxis":{"x":0.4006748,"y":0.9102962,"z":0.1040218},"yAxis":{"x":-0.9140141,"y":0.38925132,"z":0.11428749}},"center":{"x":0.45382434,"y":25.970749},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-18.844007,"y":-15.293098,"z":83.25965},"xAxis":{"x":0.62429523,"y":0.7724133,"z":0.11676091},"yAxis":{"x":-0.779614,"y":0.6065534,"z":0.15586886}},"center":{"x":0.45382434,"y":29.930748},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-20.341793,"y":-16.179363,"z":103.44627},"xAxis":{"x":0.9303952,"y":0.3503399,"z":0.10782764},"yAxis":{"x":-0.36634862,"y":0.89866537,"z":0.24122445}},"center":{"x":0.45382434,"y":37.85075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-20.858438,"y":-16.872952,"z":113.54069},"xAxis":{"x":0.99164784,"y":0.09541839,"z":0.08677476},"yAxis":{"x":-0.116141684,"y":0.9532186,"z":0.27907962}},"center":{"x":0.45382434,"y":41.81075},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-6.244105,"y":-6.0541368,"z":13.36509},"xAxis":{"x":0.99041206,"y":0.06972301,"z":0.11925897},"yAxis":{"x":-0.061294764,"y":0.995451,"z":-0.07294013}},"center":{"x":0.6453203,"y":1.124723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-6.86685,"y":-7.43646,"z":23.368233},"xAxis":{"x":0.9775444,"y":-0.19142272,"z":0.08811502},"yAxis":{"x":0.19565862,"y":0.979765,"z":-0.04216882}},"center":{"x":0.6453203,"y":5.0847235},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.5765033,"y":-8.975641,"z":33.34264},"xAxis":{"x":0.8970081,"y":-0.43918693,"z":0.049912926},"yAxis":{"x":0.44056073,"y":0.89748985,"z":-0.020449623}},"center":{"x":0.6453203,"y":9.044723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-8.411259,"y":-10.642938,"z":43.28672},"xAxis":{"x":0.7543879,"y":-0.6563883,"z":0.0073018465},"yAxis":{"x":0.65642864,"y":0.75433093,"z":-0.0092886975}},"center":{"x":0.6453203,"y":13.004723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-9.400632,"y":-12.4007225,"z":53.200996},"xAxis":{"x":0.55957407,"y":-0.82796454,"z":-0.03676331},"yAxis":{"x":0.82829267,"y":0.56021583,"z":-0.009460002}},"center":{"x":0.6453203,"y":16.964722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-10.5634165,"y":-14.205094,"z":63.08804},"xAxis":{"x":0.32607606,"y":-0.9420178,"z":-0.07922681},"yAxis":{"x":0.94423485,"y":0.3286056,"z":-0.020951657}},"center":{"x":0.6453203,"y":20.924723},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.906382,"y":-16.008919,"z":72.95233},"xAxis":{"x":0.070086025,"y":-0.9906388,"z":-0.11714399},"yAxis":{"x":0.996215,"y":0.07556139,"z":-0.04296676}},"center":{"x":0.6453203,"y":24.884722},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-13.423801,"y":-17.765104,"z":82.799904},"xAxis":{"x":-0.19064417,"y":-0.97045594,"z":-0.14788543},"yAxis":{"x":0.98062855,"y":-0.18136914,"z":-0.07397867}},"center":{"x":0.6453203,"y":28.84472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-15.097853,"y":-19.42986,"z":92.63797},"xAxis":{"x":-0.4380339,"y":-0.88286877,"z":-0.16931933},"yAxis":{"x":0.89855635,"y":-0.4243689,"z":-0.11183681}},"center":{"x":0.6453203,"y":32.80472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.89985,"y":-20.96573,"z":102.4744},"xAxis":{"x":-0.65492773,"y":-0.73395115,"z":-0.17995936},"yAxis":{"x":0.7556898,"y":-0.63658684,"z":-0.1539159}},"center":{"x":0.6453203,"y":36.76472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-18.792236,"y":-22.344208,"z":112.31718},"xAxis":{"x":-0.826285,"y":-0.53402984,"z":-0.17906766},"yAxis":{"x":0.5619361,"y":-0.8033065,"z":-0.1972979}},"center":{"x":0.6453203,"y":40.72472},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.589292,"y":-1.389522,"z":13.079913},"xAxis":{"x":0.90537816,"y":-0.40201628,"z":0.13665034},"yAxis":{"x":0.39820597,"y":0.91562253,"z":0.055383664}},"center":{"x":1.603463,"y":0.45382434},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.90219,"y":-2.0618815,"z":23.329191},"xAxis":{"x":0.7742092,"y":-0.62579817,"z":0.09474588},"yAxis":{"x":0.6220769,"y":0.7799621,"z":0.06840568}},"center":{"x":1.603463,"y":4.4138246},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.1575365,"y":-3.2608428,"z":33.52624},"xAxis":{"x":0.58877647,"y":-0.806697,"z":0.050815262},"yAxis":{"x":0.80365056,"y":0.59096515,"z":0.07004257}},"center":{"x":1.603463,"y":8.373823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.4943748,"y":-4.981257,"z":43.654037},"xAxis":{"x":0.36193895,"y":-0.9321683,"z":0.0079048965},"yAxis":{"x":0.9303355,"y":0.36173764,"z":0.060180824}},"center":{"x":1.603463,"y":12.333823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.046094,"y":-7.181813,"z":53.700356},"xAxis":{"x":0.10942692,"y":-0.993511,"z":-0.031009555},"yAxis":{"x":0.9933466,"y":0.1081758,"z":0.039504316}},"center":{"x":1.603463,"y":16.293823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.9311843,"y":-9.787905,"z":63.658615},"xAxis":{"x":-0.15124895,"y":-0.98647135,"z":-0.06322954},"yAxis":{"x":0.9883143,"y":-0.15213701,"z":0.009446874}},"center":{"x":1.603463,"y":20.253824},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.2450175,"y":-12.696803,"z":73.52836},"xAxis":{"x":-0.40201184,"y":-0.9115375,"z":-0.08652073},"yAxis":{"x":0.91558754,"y":-0.40114912,"z":-0.02790714}},"center":{"x":1.603463,"y":24.213823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-8.053235,"y":-15.784782,"z":83.31523},"xAxis":{"x":-0.62547237,"y":-0.77390575,"z":-0.09926797},"yAxis":{"x":0.7802097,"y":-0.6215926,"z":-0.06996738}},"center":{"x":1.603463,"y":28.173822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.387192,"y":-18.915697,"z":93.03068},"xAxis":{"x":-0.80613446,"y":-0.5831204,"z":-0.100587286},"yAxis":{"x":0.5915687,"y":-0.7981805,"z":-0.113817126}},"center":{"x":1.603463,"y":32.133823},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-11.241788,"y":-21.950424,"z":102.69105},"xAxis":{"x":-0.9314699,"y":-0.35241157,"z":-0.0903872},"yAxis":{"x":0.36274594,"y":-0.91866726,"z":-0.1564156}},"center":{"x":1.603463,"y":36.093822},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-13.575817,"y":-24.756512,"z":112.316536},"xAxis":{"x":-0.9927873,"y":-0.09777797,"z":-0.069375046},"yAxis":{"x":0.109609395,"y":-0.9746976,"z":-0.19480874}},"center":{"x":1.603463,"y":40.05382},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-15.625136,"y":-0.08137078,"z":13.386254},"xAxis":{"x":-0.07064415,"y":0.9974069,"z":0.013745278},"yAxis":{"x":-0.9882748,"y":-0.06811417,"z":-0.13665034}},"center":{"x":2.6894908,"y":0.6453203},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-14.620071,"y":0.58324045,"z":23.844154},"xAxis":{"x":0.97549695,"y":-0.19306059,"z":0.10551448},"yAxis":{"x":0.18928403,"y":0.9808998,"z":0.044800572}},"center":{"x":2.6894908,"y":4.6053205},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-12.985442,"y":0.74376327,"z":34.30757},"xAxis":{"x":0.89504004,"y":-0.44087622,"z":0.06731664},"yAxis":{"x":0.43685472,"y":0.89705724,"z":0.0666806}},"center":{"x":2.6894908,"y":8.565319},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-11.1055355,"y":0.09796779,"z":44.710922},"xAxis":{"x":0.75248337,"y":-0.6581477,"z":0.02470567},"yAxis":{"x":0.65489995,"y":0.7516931,"z":0.077868074}},"center":{"x":2.6894908,"y":12.52532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-8.920916,"y":-1.4423393,"z":55.034527},"xAxis":{"x":0.8282991,"y":0.5548881,"z":0.07758719},"yAxis":{"x":-0.5577128,"y":0.8298081,"z":0.01936351}},"center":{"x":2.6894908,"y":16.48532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.229011,"y":-3.8119316,"z":65.219246},"xAxis":{"x":0.94502765,"y":0.3202897,"z":0.06585742},"yAxis":{"x":-0.3242348,"y":0.9439535,"z":0.061834894}},"center":{"x":2.6894908,"y":20.44532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-6.1661224,"y":-6.7200713,"z":75.28069},"xAxis":{"x":0.068240136,"y":-0.9926684,"z":-0.09976327},"yAxis":{"x":0.99699104,"y":0.06416633,"z":0.043492176}},"center":{"x":2.6894908,"y":24.40532},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.2689943,"y":-10.587308,"z":85.17824},"xAxis":{"x":0.9805857,"y":-0.19572088,"z":0.012042397},"yAxis":{"x":0.19251902,"y":0.9725746,"z":0.13051844}},"center":{"x":2.6894908,"y":28.365318},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.4030056,"y":-14.413951,"z":94.984276},"xAxis":{"x":-0.43996006,"y":-0.8850655,"z":-0.15196766},"yAxis":{"x":0.89694935,"y":-0.44134974,"z":-0.026310997}},"center":{"x":2.6894908,"y":32.325317},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":{"origin":{"x":-6.1653647,"y":-18.975784,"z":104.59315},"xAxis":{"x":0.7518818,"y":-0.655687,"z":-0.068908356},"yAxis":{"x":0.65692395,"y":0.7362096,"z":0.16262354}},"center":{"x":2.6894908,"y":36.285316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":{"origin":{"x":-7.803879,"y":-22.984964,"z":114.188},"xAxis":{"x":-0.8283651,"y":-0.53632927,"z":-0.1617471},"yAxis":{"x":0.55544287,"y":-0.8238691,"z":-0.112795725}},"center":{"x":2.6894908,"y":40.245316},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-20.282637,"y":-3.4371912,"z":13.109857},"xAxis":{"x":0.39806253,"y":0.9144539,"z":0.07294013},"yAxis":{"x":-0.9142915,"y":0.40197182,"z":-0.049896974}},"center":{"x":3.3603892,"y":1.603463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-20.038332,"y":-1.3242905,"z":23.638098},"xAxis":{"x":0.7806767,"y":-0.62488663,"z":0.0077807303},"yAxis":{"x":0.6220728,"y":0.7782312,"z":0.08591624}},"center":{"x":3.3603892,"y":5.5634627},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-18.715727,"y":0.30089316,"z":34.227528},"xAxis":{"x":0.5931,"y":-0.8043121,"z":-0.03625492},"yAxis":{"x":0.8036349,"y":0.5886571,"z":0.08748644}},"center":{"x":3.3603892,"y":9.523462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-16.756409,"y":1.1451697,"z":44.809345},"xAxis":{"x":0.3645689,"y":-0.9278059,"z":-0.079156294},"yAxis":{"x":0.93015814,"y":0.35887763,"z":0.077541836}},"center":{"x":3.3603892,"y":13.483462},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-14.162896,"y":0.8956034,"z":55.327602},"xAxis":{"x":0.99286866,"y":0.10482726,"z":0.056772057},"yAxis":{"x":-0.11093123,"y":0.9868042,"z":0.11794834}},"center":{"x":3.3603892,"y":17.443464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-11.681972,"y":-0.21815725,"z":65.75419},"xAxis":{"x":0.9874178,"y":-0.15587676,"z":0.026617393},"yAxis":{"x":0.15022431,"y":0.9772156,"z":0.149941}},"center":{"x":3.3603892,"y":21.403465},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-9.416815,"y":-2.0496845,"z":76.09259},"xAxis":{"x":-0.40078765,"y":-0.8997052,"z":-0.17291573},"yAxis":{"x":0.91418356,"y":-0.40515563,"z":-0.010831051}},"center":{"x":3.3603892,"y":25.363464},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.3109913,"y":-5.314782,"z":86.20826},"xAxis":{"x":0.7782444,"y":-0.6257229,"z":-0.052976377},"yAxis":{"x":0.6233832,"y":0.7596479,"z":0.18527928}},"center":{"x":3.3603892,"y":29.323463},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":{"origin":{"x":-5.8561425,"y":-8.826395,"z":96.25415},"xAxis":{"x":-0.80257493,"y":-0.5667562,"z":-0.18617432},"yAxis":{"x":0.58902717,"y":-0.8022831,"z":-0.09689597}},"center":{"x":3.3603892,"y":33.28346},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.263047,"y":-13.4824095,"z":106.02104},"xAxis":{"x":0.3596533,"y":-0.9225925,"z":-0.13954419},"yAxis":{"x":0.9259366,"y":0.3344063,"z":0.17553876}},"center":{"x":3.3603892,"y":37.243458},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.5350704,"y":-18.235506,"z":115.68764},"xAxis":{"x":0.106028914,"y":-0.97830814,"z":-0.17796355},"yAxis":{"x":0.9849135,"y":0.078710705,"z":0.15411016}},"center":{"x":3.3603892,"y":41.203457},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-21.653532,"y":-9.411015,"z":13.928757},"xAxis":{"x":-0.9963948,"y":-0.06866809,"z":-0.049820874},"yAxis":{"x":0.07027893,"y":-0.99703515,"z":-0.03133347}},"center":{"x":3.1688933,"y":2.6894908},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.601881,"y":-6.740543,"z":24.3487},"xAxis":{"x":-0.98132765,"y":0.19145048,"z":-0.018514432},"yAxis":{"x":-0.18997745,"y":-0.9798067,"z":-0.062348798}},"center":{"x":3.1688933,"y":6.6494904},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.570688,"y":-4.29724,"z":34.86703},"xAxis":{"x":-0.8989277,"y":0.43765178,"z":0.01974706},"yAxis":{"x":-0.43767813,"y":-0.8951846,"z":-0.08415719}},"center":{"x":3.1688933,"y":10.60949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-21.649525,"y":-2.328531,"z":45.444443},"xAxis":{"x":-0.754909,"y":0.65286285,"z":0.062310327},"yAxis":{"x":-0.65564615,"y":-0.7490369,"z":-0.09524632}},"center":{"x":3.1688933,"y":14.56949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-19.989672,"y":-1.0489328,"z":56.03753},"xAxis":{"x":-0.5592587,"y":0.82215947,"z":0.10622378},"yAxis":{"x":-0.8287662,"y":-0.5514985,"z":-0.0948472}},"center":{"x":3.1688933,"y":18.529491},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-17.793634,"y":-0.6251731,"z":66.6018},"xAxis":{"x":-0.3255444,"y":0.9338018,"z":0.1484422},"yAxis":{"x":-0.9450332,"y":-0.3162678,"z":-0.08298751}},"center":{"x":3.1688933,"y":22.489492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-15.301103,"y":-1.1646315,"z":77.094765},"xAxis":{"x":-0.06997317,"y":0.98004776,"z":0.18603791},"yAxis":{"x":-0.9963845,"y":-0.059657097,"z":-0.060489673}},"center":{"x":3.1688933,"y":26.449492},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-12.772328,"y":-2.7078917,"z":87.47887},"xAxis":{"x":0.18973216,"y":0.9576905,"z":0.2164038},"yAxis":{"x":-0.979259,"y":0.20053868,"z":-0.028913813}},"center":{"x":3.1688933,"y":30.40949},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-10.470075,"y":-5.2259293,"z":97.72411},"xAxis":{"x":0.43556204,"y":0.86828035,"z":0.2374341},"yAxis":{"x":-0.8948444,"y":0.44627598,"z":0.009550402}},"center":{"x":3.1688933,"y":34.369488},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-8.6413965,"y":-8.622122,"z":107.810135},"xAxis":{"x":0.6504692,"y":0.7180175,"z":0.24767049},"yAxis":{"x":-0.74899447,"y":0.660514,"z":0.05223564}},"center":{"x":3.1688933,"y":38.329487},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":{"origin":{"x":-7.500509,"y":-12.738949,"z":117.7276},"xAxis":{"x":0.8195507,"y":0.5173222,"z":0.24640305},"yAxis":{"x":-0.5518233,"y":0.8283961,"z":0.09618185}},"center":{"x":3.1688933,"y":42.289486},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-18.320984,"y":-14.0734005,"z":14.360628},"xAxis":{"x":-0.9143623,"y":0.40360045,"z":-0.03237674},"yAxis":{"x":-0.40418872,"y":-0.91456765,"z":0.01405443}},"center":{"x":2.2107508,"y":3.3603892},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-20.574532,"y":-12.115063,"z":24.534779},"xAxis":{"x":-0.77989036,"y":0.6258398,"z":0.009771734},"yAxis":{"x":-0.62586015,"y":-0.77993435,"z":0.0011949074}},"center":{"x":2.2107508,"y":7.3203893},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.993711,"y":-10.015281,"z":34.83059},"xAxis":{"x":-0.59165907,"y":0.8043917,"z":0.053791553},"yAxis":{"x":-0.8055702,"y":-0.59250027,"z":-0.00038258414}},"center":{"x":2.2107508,"y":11.28039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-22.56751,"y":-7.9976597,"z":45.224186},"xAxis":{"x":-0.36272138,"y":0.9268742,"z":0.09663012},"yAxis":{"x":-0.9308565,"y":-0.3652631,"z":0.00943135}},"center":{"x":2.2107508,"y":15.24039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-22.343542,"y":-6.2801065,"z":55.68491},"xAxis":{"x":-0.108953364,"y":0.98479366,"z":0.13531676},"yAxis":{"x":-0.9930312,"y":-0.11398089,"z":0.029956153}},"center":{"x":2.2107508,"y":19.20039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.424742,"y":-5.05972,"z":66.17745},"xAxis":{"x":0.15204732,"y":0.9741336,"z":0.1671687},"yAxis":{"x":-0.9877826,"y":0.143921,"z":0.059768513}},"center":{"x":2.2107508,"y":23.16039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-19.962229,"y":-4.499122,"z":76.66428},"xAxis":{"x":0.4021813,"y":0.8956332,"z":0.18997717},"yAxis":{"x":-0.9154747,"y":0.39055812,"z":0.096801065}},"center":{"x":2.2107508,"y":27.12039},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-18.144823,"y":-4.715182,"z":87.108284},"xAxis":{"x":0.62410283,"y":0.75473624,"z":0.20216045},"yAxis":{"x":-0.78112173,"y":0.6088272,"z":0.13848576}},"center":{"x":2.2107508,"y":31.080389},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-16.185959,"y":-5.77091,"z":97.47531},"xAxis":{"x":0.8024225,"y":0.5612133,"z":0.20287369},"yAxis":{"x":-0.5940406,"y":0.7835921,"z":0.1819319}},"center":{"x":2.2107508,"y":35.040386},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-14.308879,"y":-7.6710887,"z":107.73654},"xAxis":{"x":0.9247746,"y":0.32848445,"z":0.19206746},"yAxis":{"x":-0.36720452,"y":0.9027337,"z":0.22412671}},"center":{"x":2.2107508,"y":39.000385},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":{"origin":{"x":-12.731154,"y":-10.361941,"z":117.87049},"xAxis":{"x":0.9826745,"y":0.07268841,"z":0.17049108},"yAxis":{"x":-0.11634371,"y":0.9579899,"z":0.26214415}},"center":{"x":2.2107508,"y":42.960384},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-7.694787,"y":-3.5572443,"z":33.27122},"xAxis":{"x":0.8177769,"y":-0.5753389,"z":-0.015033832},"yAxis":{"x":0.57471883,"y":0.81772906,"z":-0.031897496}},"center":{"x":-0.12357646,"y":10.494074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-2.5303347,"y":0.49885267,"z":62.876194},"xAxis":{"x":0.17338446,"y":-0.97823864,"z":0.11396066},"yAxis":{"x":0.98479384,"y":0.1709279,"z":-0.031060498}},"center":{"x":-0.12357646,"y":22.374077},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":3.3046646,"y":3.505185,"z":92.48181},"xAxis":{"x":-0.570233,"y":-0.7959064,"z":0.20338961},"yAxis":{"x":0.8186831,"y":-0.5710203,"z":0.060776904}},"center":{"x":-0.12357646,"y":34.254074},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]}],"connections":[],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2128.8","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"20.170755","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.2251e+7","unit":"€","definition":""},{"name":"return","value":"3.9635e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"729701","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"411233.988889","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"42939.502222","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"4.3747e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"336342","unit":"€/a","definition":""},{"name":"specific energy demand","value":"93.568468","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"74891.988889","unit":"€/a","definition":""},{"name":"heating energy demand","value":"66427","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"50587","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"69173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "The expolsion axonometry of a futuristic variant of the Nakagin Capsule Tower where two towers are dancing with each other. The capsules are ellipsoids around a round shaft and a blob base.", + "icon": "icons/nakagin-capsule-tower_dancing_axonometry_explosion.svg", + "image": "images/nakagin-capsule-tower_dancing_axonometry_explosion.png", + "variant": "Dancing", + "view": "Explosion Axonometry", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -1.5153596, + "y": -1.3654443, + "z": 103.420906 + }, + "xAxis": { + "x": -0.63712275, + "y": -0.7450154, + "z": 0.19755179 + }, + "yAxis": { + "x": 0.7677775, + "y": -0.63599, + "z": 0.07768176 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -13.961024, + "y": -19.562712, + "z": 123.16797 + }, + "xAxis": { + "x": -0.93382967, + "y": -0.31402892, + "z": -0.17131259 + }, + "yAxis": { + "x": 0.344424, + "y": -0.91865724, + "z": -0.19349675 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -1.75, + "y": -7.75, + "z": 12.5 + }, + "xAxis": { + "x": 0.32556817, + "y": 0.94551855, + "z": 0.0 + }, + "yAxis": { + "x": -0.9419206, + "y": 0.32432926, + "z": 0.087155744 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -1.0416517, + "y": -8.531471, + "z": 22.708858 + }, + "xAxis": { + "x": 0.5582617, + "y": 0.8293582, + "z": -0.022557568 + }, + "yAxis": { + "x": -0.8279352, + "y": 0.5586466, + "z": 0.04936801 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -0.7509498, + "y": -9.061347, + "z": 32.954247 + }, + "xAxis": { + "x": 0.7535248, + "y": 0.6565101, + "z": -0.034566317 + }, + "yAxis": { + "x": -0.65670484, + "y": 0.75411546, + "z": 0.0069739646 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -0.7995252, + "y": -9.239522, + "z": 43.215782 + }, + "xAxis": { + "x": 0.8978168, + "y": 0.43896064, + "z": -0.035193495 + }, + "yAxis": { + "x": -0.4401035, + "y": 0.89718086, + "z": -0.037086535 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -1.0854814, + "y": -8.99028, + "z": 53.47197 + }, + "xAxis": { + "x": 0.98113155, + "y": 0.19179593, + "z": -0.024395604 + }, + "yAxis": { + "x": -0.19315164, + "y": 0.97792184, + "z": -0.07975807 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -1.4904604, + "y": -8.267546, + "z": 63.701675 + }, + "xAxis": { + "x": 0.99769163, + "y": -0.067844145, + "z": -0.0029214371 + }, + "yAxis": { + "x": 0.06702561, + "y": 0.9907393, + "z": -0.11808155 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -1.8878505, + "y": -7.0580764, + "z": 73.88561 + }, + "xAxis": { + "x": 0.9463486, + "y": -0.3219546, + "z": 0.027739862 + }, + "yAxis": { + "x": 0.32238603, + "y": 0.93474436, + "z": -0.14939938 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -2.1515663, + "y": -5.382384, + "z": 84.00765 + }, + "xAxis": { + "x": 0.8306629, + "y": -0.5529139, + "z": 0.06546206 + }, + "yAxis": { + "x": 0.55522144, + "y": 0.8138202, + "z": -0.17153983 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -2.164792, + "y": -3.2933104, + "z": 94.05598 + }, + "xAxis": { + "x": 0.6586569, + "y": -0.744706, + "z": 0.10762927 + }, + "yAxis": { + "x": 0.7493856, + "y": 0.63635224, + "z": -0.1829675 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.4069085, + "y": -0.1181994, + "z": 12.989752 + }, + "xAxis": { + "x": 0.9953887, + "y": -0.09029477, + "z": -0.03237674 + }, + "yAxis": { + "x": 0.091998495, + "y": 0.99420047, + "z": 0.055692818 + } + }, + "center": { + "x": -0.93696856, + "y": 0.7832468 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 0.28205657, + "y": -0.97383535, + "z": 22.922638 + }, + "xAxis": { + "x": 0.93889034, + "y": -0.34421495, + "z": -0.0009968684 + }, + "yAxis": { + "x": 0.34413248, + "y": 0.9385935, + "z": 0.024800014 + } + }, + "center": { + "x": -0.93696856, + "y": 4.743247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 2.4721353, + "y": -2.0951803, + "z": 32.95115 + }, + "xAxis": { + "x": 0.8182601, + "y": -0.5736374, + "z": 0.03729018 + }, + "yAxis": { + "x": 0.5739431, + "y": 0.81888974, + "z": 0.0029793852 + } + }, + "center": { + "x": -0.93696856, + "y": 8.703246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 4.109983, + "y": -3.341113, + "z": 43.069942 + }, + "xAxis": { + "x": 0.6418631, + "y": -0.76265264, + "z": 0.07982934 + }, + "yAxis": { + "x": 0.7654939, + "y": 0.6433902, + "z": -0.008255903 + } + }, + "center": { + "x": -0.93696856, + "y": 12.663246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 5.1805487, + "y": -4.561873, + "z": 53.267418 + }, + "xAxis": { + "x": 0.42193183, + "y": -0.8981532, + "z": 0.12367071 + }, + "yAxis": { + "x": 0.9055016, + "y": 0.42426497, + "z": -0.008126721 + } + }, + "center": { + "x": -0.93696856, + "y": 16.623247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 5.708122, + "y": -5.609445, + "z": 63.52652 + }, + "xAxis": { + "x": 0.17371759, + "y": -0.9707426, + "z": 0.16577406 + }, + "yAxis": { + "x": 0.98425734, + "y": 0.17670953, + "z": 0.0033579662 + } + }, + "center": { + "x": -0.93696856, + "y": 20.583248 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 5.7546453, + "y": -6.3478246, + "z": 73.82591 + }, + "xAxis": { + "x": -0.08556697, + "y": -0.9753871, + "z": 0.2032197 + }, + "yAxis": { + "x": 0.99629956, + "y": -0.082109146, + "z": 0.025401745 + } + }, + "center": { + "x": -0.93696856, + "y": 24.543247 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 5.415421, + "y": -6.6624465, + "z": 84.14147 + }, + "xAxis": { + "x": -0.3379415, + "y": -0.9117647, + "z": 0.23341092 + }, + "yAxis": { + "x": 0.94079334, + "y": -0.33424303, + "z": 0.05647598 + } + }, + "center": { + "x": -0.93696856, + "y": 28.503246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 4.8125005, + "y": -6.468134, + "z": 94.44796 + }, + "xAxis": { + "x": -0.56590486, + "y": -0.7842873, + "z": 0.25425407 + }, + "yAxis": { + "x": 0.8215877, + "y": -0.56220764, + "z": 0.09442578 + } + }, + "center": { + "x": -0.93696856, + "y": 32.463245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -7.5782704, + "y": -2.5874844, + "z": 13.435106 + }, + "xAxis": { + "x": 0.83440876, + "y": -0.53807175, + "z": -0.11933507 + }, + "yAxis": { + "x": 0.54483956, + "y": 0.8379547, + "z": 0.03133347 + } + }, + "center": { + "x": -0.4242164, + "y": 1.8345448 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.358523, + "y": -2.0118344, + "z": 23.303574 + }, + "xAxis": { + "x": 0.6695792, + "y": -0.7386987, + "z": -0.07738132 + }, + "yAxis": { + "x": 0.74176097, + "y": 0.67040634, + "z": 0.018601367 + } + }, + "center": { + "x": -0.4242164, + "y": 5.7945447 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -3.251512, + "y": -1.6331289, + "z": 33.20622 + }, + "xAxis": { + "x": 0.4578397, + "y": -0.88840693, + "z": -0.033405066 + }, + "yAxis": { + "x": 0.88903475, + "y": 0.4575195, + "z": 0.01712037 + } + }, + "center": { + "x": -0.4242164, + "y": 9.754545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -1.304822, + "y": -1.4142685, + "z": 43.146427 + }, + "xAxis": { + "x": 0.2138735, + "y": -0.97681475, + "z": 0.009544118 + }, + "yAxis": { + "x": 0.9764481, + "y": 0.21405698, + "z": 0.026993174 + } + }, + "center": { + "x": -0.4242164, + "y": 13.714545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 0.4450798, + "y": -1.3070704, + "z": 53.12499 + }, + "xAxis": { + "x": -0.045401324, + "y": -0.9977914, + "z": 0.048487876 + }, + "yAxis": { + "x": 0.99793935, + "y": -0.043098077, + "z": 0.047535144 + } + }, + "center": { + "x": -0.4242164, + "y": 17.674545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 1.9753731, + "y": -1.2556083, + "z": 63.14002 + }, + "xAxis": { + "x": -0.30200514, + "y": -0.94988227, + "z": 0.08072562 + }, + "yAxis": { + "x": 0.9520181, + "y": -0.296113, + "z": 0.077321775 + } + }, + "center": { + "x": -0.4242164, + "y": 21.634546 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 3.2784665, + "y": -1.2000902, + "z": 73.18712 + }, + "xAxis": { + "x": -0.5381435, + "y": -0.8364096, + "z": 0.1040218 + }, + "yAxis": { + "x": 0.84186876, + "y": -0.52744234, + "z": 0.11428749 + } + }, + "center": { + "x": -0.4242164, + "y": 25.594545 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 4.3625236, + "y": -1.0810057, + "z": 83.25965 + }, + "xAxis": { + "x": -0.7374412, + "y": -0.6652424, + "z": 0.11676091 + }, + "yAxis": { + "x": 0.6751298, + "y": -0.7210442, + "z": 0.15586886 + } + }, + "center": { + "x": -0.4242164, + "y": 29.554544 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.250897, + "y": -0.8432527, + "z": 93.34923 + }, + "xAxis": { + "x": -0.8860777, + "y": -0.44825023, + "z": 0.11805953 + }, + "yAxis": { + "x": 0.46336386, + "y": -0.8634931, + "z": 0.19918239 + } + }, + "center": { + "x": -0.4242164, + "y": 33.51454 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -9.527546, + "y": -8.23516, + "z": 13.36509 + }, + "xAxis": { + "x": -0.9891255, + "y": 0.08606999, + "z": 0.11925897 + }, + "yAxis": { + "x": -0.09518274, + "y": -0.99278396, + "z": -0.07294013 + } + }, + "center": { + "x": -0.7832468, + "y": 2.8772452 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -8.696225, + "y": -6.967274, + "z": 23.368233 + }, + "xAxis": { + "x": -0.9355641, + "y": 0.34198764, + "z": 0.08811502 + }, + "yAxis": { + "x": -0.34651875, + "y": -0.93709475, + "z": -0.042168815 + } + }, + "center": { + "x": -0.7832468, + "y": 6.837245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -6.669226, + "y": -4.041873, + "z": 43.28672 + }, + "xAxis": { + "x": -0.64241844, + "y": 0.7663193, + "z": 0.0073018465 + }, + "yAxis": { + "x": -0.7663502, + "y": -0.64235586, + "z": -0.009288694 + } + }, + "center": { + "x": -0.7832468, + "y": 14.757245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.4170566, + "y": -2.4605012, + "z": 53.200996 + }, + "xAxis": { + "x": -0.4231626, + "y": 0.9053076, + "z": -0.03676331 + }, + "yAxis": { + "x": -0.90573204, + "y": -0.42374516, + "z": -0.009459998 + } + }, + "center": { + "x": -0.7832468, + "y": 18.717243 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -2.37771, + "y": 0.7112866, + "z": 72.95233 + }, + "xAxis": { + "x": 0.0857469, + "y": 0.9894063, + "z": -0.11714399 + }, + "yAxis": { + "x": -0.99577034, + "y": 0.081211254, + "z": -0.04296676 + } + }, + "center": { + "x": -0.7832468, + "y": 26.637245 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -0.6042442, + "y": 2.2084732, + "z": 82.799904 + }, + "xAxis": { + "x": 0.34010977, + "y": 0.9286847, + "z": -0.14788543 + }, + "yAxis": { + "x": -0.94018304, + "y": 0.33254027, + "z": -0.07397867 + } + }, + "center": { + "x": -0.7832468, + "y": 30.597244 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.95325, + "y": -13.365648, + "z": 13.079913 + }, + "xAxis": { + "x": -0.8313422, + "y": 0.53869915, + "z": 0.13665034 + }, + "yAxis": { + "x": -0.5365383, + "y": -0.8420566, + "z": 0.055383664 + } + }, + "center": { + "x": -1.8345448, + "y": 3.3899975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.5267124, + "y": -12.59408, + "z": 23.329191 + }, + "xAxis": { + "x": -0.666781, + "y": 0.73920655, + "z": 0.09474588 + }, + "yAxis": { + "x": -0.7364311, + "y": -0.6730452, + "z": 0.06840568 + } + }, + "center": { + "x": -1.8345448, + "y": 7.3499975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.074638, + "y": -11.293391, + "z": 33.52624 + }, + "xAxis": { + "x": -0.45533243, + "y": 0.8888702, + "z": 0.050815266 + }, + "yAxis": { + "x": -0.88620365, + "y": -0.4579707, + "z": 0.07004257 + } + }, + "center": { + "x": -1.8345448, + "y": 11.309998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.460505, + "y": -9.490417, + "z": 43.654037 + }, + "xAxis": { + "x": -0.21165964, + "y": 0.9773115, + "z": 0.007904895 + }, + "yAxis": { + "x": -0.97546977, + "y": -0.21174754, + "z": 0.060180828 + } + }, + "center": { + "x": -1.8345448, + "y": 15.269998 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.559023, + "y": -7.246827, + "z": 53.700356 + }, + "xAxis": { + "x": 0.047339655, + "y": 0.9983974, + "z": -0.031009555 + }, + "yAxis": { + "x": -0.99803925, + "y": 0.04854965, + "z": 0.03950432 + } + }, + "center": { + "x": -1.8345448, + "y": 19.229996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.264835, + "y": -4.654845, + "z": 63.658615 + }, + "xAxis": { + "x": 0.30370492, + "y": 0.9506657, + "z": -0.06322954 + }, + "yAxis": { + "x": -0.952347, + "y": 0.30487037, + "z": 0.009446877 + } + }, + "center": { + "x": -1.8345448, + "y": 23.189997 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.499814, + "y": -1.8308542, + "z": 73.52836 + }, + "xAxis": { + "x": 0.5396583, + "y": 0.8374265, + "z": -0.08652073 + }, + "yAxis": { + "x": -0.8415616, + "y": 0.5394398, + "z": -0.027907139 + } + }, + "center": { + "x": -1.8345448, + "y": 27.149996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.218481, + "y": 1.0926741, + "z": 83.31523 + }, + "xAxis": { + "x": 0.7388373, + "y": 0.6665323, + "z": -0.09926797 + }, + "yAxis": { + "x": -0.67336553, + "y": 0.7359914, + "z": -0.06996738 + } + }, + "center": { + "x": -1.8345448, + "y": 31.109995 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -4.4111648, + "y": 3.976365, + "z": 93.03068 + }, + "xAxis": { + "x": 0.8874297, + "y": 0.44983405, + "z": -0.10058728 + }, + "yAxis": { + "x": -0.4594226, + "y": 0.8808953, + "z": -0.11381713 + } + }, + "center": { + "x": -1.8345448, + "y": 35.069996 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -1.196357, + "y": -15.601908, + "z": 13.386254 + }, + "xAxis": { + "x": -0.086254425, + "y": -0.9961783, + "z": 0.013745277 + }, + "yAxis": { + "x": 0.98676294, + "y": -0.087324694, + "z": -0.13665034 + } + }, + "center": { + "x": -2.8772452, + "y": 3.030967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -2.5477536, + "y": -16.220295, + "z": 23.874218 + }, + "xAxis": { + "x": -0.34040016, + "y": -0.9392128, + "z": 0.044800572 + }, + "yAxis": { + "x": 0.93328565, + "y": -0.34328505, + "z": -0.10551448 + } + }, + "center": { + "x": -2.8772452, + "y": 6.990967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -4.210003, + "y": -16.052387, + "z": 34.33437 + }, + "xAxis": { + "x": -0.571807, + "y": -0.8176738, + "z": 0.0666806 + }, + "yAxis": { + "x": 0.81505233, + "y": -0.5754634, + "z": -0.06731664 + } + }, + "center": { + "x": -2.8772452, + "y": 10.950967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.969306, + "y": -15.046464, + "z": 44.731438 + }, + "xAxis": { + "x": -0.7644278, + "y": -0.6399897, + "z": 0.077868074 + }, + "yAxis": { + "x": 0.64026207, + "y": -0.76775914, + "z": -0.02470567 + } + }, + "center": { + "x": -2.8772452, + "y": 14.910967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.605135, + "y": -13.208925, + "z": 55.034527 + }, + "xAxis": { + "x": -0.90490496, + "y": -0.418482, + "z": 0.07758719 + }, + "yAxis": { + "x": 0.42103586, + "y": -0.9068373, + "z": 0.01936351 + } + }, + "center": { + "x": -2.8772452, + "y": 18.870966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -8.905523, + "y": -10.603834, + "z": 65.219246 + }, + "xAxis": { + "x": -0.98349714, + "y": -0.16851151, + "z": 0.06585742 + }, + "yAxis": { + "x": 0.17257608, + "y": -0.9830534, + "z": 0.061834898 + } + }, + "center": { + "x": -2.8772452, + "y": 22.830967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -9.6817665, + "y": -7.3484845, + "z": 75.26943 + }, + "xAxis": { + "x": -0.99475425, + "y": 0.09258743, + "z": 0.043492176 + }, + "yAxis": { + "x": -0.08788756, + "y": -0.9911221, + "z": 0.09976327 + } + }, + "center": { + "x": -2.8772452, + "y": 26.790966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -9.781507, + "y": -3.6052606, + "z": 85.17824 + }, + "xAxis": { + "x": -0.9378956, + "y": 0.3467086, + "z": 0.012042396 + }, + "yAxis": { + "x": -0.34229296, + "y": -0.930484, + "z": 0.13051844 + } + }, + "center": { + "x": -2.8772452, + "y": 30.750965 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -9.0993, + "y": 0.42962047, + "z": 94.948616 + }, + "xAxis": { + "x": -0.81686413, + "y": 0.57622975, + "z": -0.026311003 + }, + "yAxis": { + "x": -0.57299817, + "y": -0.805344, + "z": 0.15196766 + } + }, + "center": { + "x": -2.8772452, + "y": 34.710964 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.9287672, + "y": -13.015997, + "z": 13.109857 + }, + "xAxis": { + "x": -0.5362139, + "y": -0.84092474, + "z": 0.07294013 + }, + "yAxis": { + "x": 0.8401528, + "y": -0.5400496, + "z": -0.049896974 + } + }, + "center": { + "x": -3.3899975, + "y": 1.979669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.0750473, + "y": -15.05107, + "z": 23.656837 + }, + "xAxis": { + "x": -0.7361562, + "y": -0.6713363, + "z": 0.08591624 + }, + "yAxis": { + "x": 0.67331153, + "y": -0.73931795, + "z": -0.007780733 + } + }, + "center": { + "x": -3.3899975, + "y": 5.939669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 1.527223, + "y": -16.376642, + "z": 34.237774 + }, + "xAxis": { + "x": -0.885827, + "y": -0.4556935, + "z": 0.087486446 + }, + "yAxis": { + "x": 0.4599758, + "y": -0.887191, + "z": 0.03625492 + } + }, + "center": { + "x": -3.3899975, + "y": 9.899668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -0.5088419, + "y": -16.837425, + "z": 44.80902 + }, + "xAxis": { + "x": -0.97484714, + "y": -0.20895049, + "z": 0.07754184 + }, + "yAxis": { + "x": 0.21493964, + "y": -0.97341424, + "z": 0.079156294 + } + }, + "center": { + "x": -3.3899975, + "y": 13.859668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.7934265, + "y": -16.33811, + "z": 55.327602 + }, + "xAxis": { + "x": -0.9970434, + "y": 0.051782206, + "z": 0.05677206 + }, + "yAxis": { + "x": -0.04480468, + "y": -0.99200845, + "z": 0.11794834 + } + }, + "center": { + "x": -3.3899975, + "y": 17.819668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.0695763, + "y": -14.849959, + "z": 65.75419 + }, + "xAxis": { + "x": -0.9508766, + "y": 0.30842382, + "z": 0.026617395 + }, + "yAxis": { + "x": -0.301245, + "y": -0.9416842, + "z": 0.14994101 + } + }, + "center": { + "x": -3.3899975, + "y": 21.779669 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.080921, + "y": -12.412811, + "z": 76.05584 + }, + "xAxis": { + "x": -0.8395482, + "y": 0.5431773, + "z": -0.01083105 + }, + "yAxis": { + "x": -0.5365982, + "y": -0.8259313, + "z": 0.17291573 + } + }, + "center": { + "x": -3.3899975, + "y": 25.739668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.589455, + "y": -9.132311, + "z": 86.20826 + }, + "xAxis": { + "x": -0.67077833, + "y": 0.73976344, + "z": -0.05297638 + }, + "yAxis": { + "x": -0.73454344, + "y": -0.6527768, + "z": 0.18527928 + } + }, + "center": { + "x": -3.3899975, + "y": 29.699667 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.392038, + "y": -5.1725883, + "z": 96.19753 + }, + "xAxis": { + "x": -0.45627055, + "y": 0.8845498, + "z": -0.09689598 + }, + "yAxis": { + "x": -0.8813541, + "y": -0.43422812, + "z": 0.1861743 + } + }, + "center": { + "x": -3.3899975, + "y": 33.659668 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 6.2172976, + "y": -7.330177, + "z": 13.928757 + }, + "xAxis": { + "x": 0.9948696, + "y": -0.08804783, + "z": -0.049820874 + }, + "yAxis": { + "x": 0.086557, + "y": 0.99575406, + "z": -0.03133347 + } + }, + "center": { + "x": -3.030967, + "y": 0.93696856 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.6165395, + "y": -9.859999, + "z": 24.339933 + }, + "xAxis": { + "x": -0.34091404, + "y": -0.93802464, + "z": 0.062348798 + }, + "yAxis": { + "x": 0.9392964, + "y": -0.34260687, + "z": -0.018514436 + } + }, + "center": { + "x": -3.030967, + "y": 4.896969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 6.273778, + "y": -12.246752, + "z": 34.84625 + }, + "xAxis": { + "x": -0.5723273, + "y": -0.8156954, + "z": 0.08415719 + }, + "yAxis": { + "x": 0.81939656, + "y": -0.5728869, + "z": 0.019747058 + } + }, + "center": { + "x": -3.030967, + "y": 8.856968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": 5.1053953, + "y": -14.324837, + "z": 45.444443 + }, + "xAxis": { + "x": 0.6434846, + "y": -0.7629188, + "z": 0.062310327 + }, + "yAxis": { + "x": 0.7647492, + "y": 0.63724935, + "z": -0.09524632 + } + }, + "center": { + "x": -3.030967, + "y": 12.816968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 3.3620186, + "y": -15.066105, + "z": 55.997314 + }, + "xAxis": { + "x": -0.9048361, + "y": -0.41506103, + "z": 0.0948472 + }, + "yAxis": { + "x": 0.42375925, + "y": -0.8995247, + "z": 0.10622378 + } + }, + "center": { + "x": -3.030967, + "y": 16.77697 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": 1.1919953, + "y": -15.176476, + "z": 66.55551 + }, + "xAxis": { + "x": -0.98287344, + "y": -0.16453825, + "z": 0.08298752 + }, + "yAxis": { + "x": 0.17545763, + "y": -0.9732315, + "z": 0.1484422 + } + }, + "center": { + "x": -3.030967, + "y": 20.736969 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -1.3469417, + "y": -14.481296, + "z": 77.094765 + }, + "xAxis": { + "x": -0.08420157, + "y": -0.97892797, + "z": 0.18603791 + }, + "yAxis": { + "x": 0.99344975, + "y": -0.096946254, + "z": -0.060489677 + } + }, + "center": { + "x": -3.030967, + "y": 24.696968 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.6031632, + "y": -12.561447, + "z": 87.47887 + }, + "xAxis": { + "x": -0.33721203, + "y": -0.9162191, + "z": 0.2164038 + }, + "yAxis": { + "x": 0.93583155, + "y": -0.35125956, + "z": -0.028913813 + } + }, + "center": { + "x": -3.030967, + "y": 28.656967 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.207156, + "y": -9.672523, + "z": 97.678535 + }, + "xAxis": { + "x": -0.8140145, + "y": 0.5807661, + "z": -0.009550408 + }, + "yAxis": { + "x": -0.5660285, + "y": -0.78945345, + "z": 0.2374341 + } + }, + "center": { + "x": -3.030967, + "y": 32.616966 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.655137, + "y": -2.203867, + "z": 14.360628 + }, + "xAxis": { + "x": 0.83996797, + "y": -0.54166925, + "z": -0.03237674 + }, + "yAxis": { + "x": 0.5422824, + "y": 0.8400787, + "z": 0.014054429 + } + }, + "center": { + "x": -1.979669, + "y": 0.4242164 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 5.5881433, + "y": -4.208114, + "z": 24.533062 + }, + "xAxis": { + "x": -0.7401634, + "y": -0.672426, + "z": -0.0011949046 + }, + "yAxis": { + "x": 0.6723857, + "y": -0.74013644, + "z": 0.009771731 + } + }, + "center": { + "x": -1.979669, + "y": 4.3842163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 6.733776, + "y": -6.5173197, + "z": 34.819756 + }, + "xAxis": { + "x": -0.8883397, + "y": -0.45918667, + "z": 0.0003825858 + }, + "yAxis": { + "x": 0.45854017, + "y": -0.8870442, + "z": 0.05379155 + } + }, + "center": { + "x": -1.979669, + "y": 8.344215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 6.8989253, + "y": -8.869108, + "z": 45.224186 + }, + "xAxis": { + "x": 0.21326065, + "y": -0.972205, + "z": 0.09663012 + }, + "yAxis": { + "x": 0.9765359, + "y": 0.21514808, + "z": 0.009431346 + } + }, + "center": { + "x": -1.979669, + "y": 12.304215 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 6.6180468, + "y": -10.34109, + "z": 55.663837 + }, + "xAxis": { + "x": -0.9986359, + "y": 0.042766698, + "z": -0.029956149 + }, + "yAxis": { + "x": -0.046443693, + "y": -0.98971325, + "z": 0.13531676 + } + }, + "center": { + "x": -1.979669, + "y": 16.264217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 5.3106318, + "y": -11.59211, + "z": 66.17745 + }, + "xAxis": { + "x": -0.30256343, + "y": -0.93835497, + "z": 0.1671687 + }, + "yAxis": { + "x": 0.9531072, + "y": -0.2966723, + "z": 0.05976851 + } + }, + "center": { + "x": -1.979669, + "y": 20.224218 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 3.7784266, + "y": -11.917018, + "z": 76.66428 + }, + "xAxis": { + "x": -0.5373377, + "y": -0.82169145, + "z": 0.18997717 + }, + "yAxis": { + "x": 0.8431069, + "y": -0.5289615, + "z": 0.096801065 + } + }, + "center": { + "x": -1.979669, + "y": 24.184217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": 2.0171952, + "y": -11.419313, + "z": 87.108284 + }, + "xAxis": { + "x": -0.73448586, + "y": -0.647813, + "z": 0.20216045 + }, + "yAxis": { + "x": 0.6762633, + "y": -0.7235259, + "z": 0.13848576 + } + }, + "center": { + "x": -1.979669, + "y": 28.144217 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": 0.5164968, + "y": -10.157769, + "z": 97.47112 + }, + "xAxis": { + "x": -0.46414614, + "y": 0.8668732, + "z": -0.18193191 + }, + "yAxis": { + "x": -0.88033646, + "y": -0.42877734, + "z": 0.20287369 + } + }, + "center": { + "x": -1.979669, + "y": 32.104214 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -13.85, + "y": -7.75, + "z": 12.5 + }, + "xAxis": { + "x": -0.17364818, + "y": -0.9848077, + "z": 1.7347235e-18 + }, + "yAxis": { + "x": 0.98106027, + "y": -0.17298739, + "z": 0.087155744 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -14.671877, + "y": -7.08896, + "z": 22.708858 + }, + "xAxis": { + "x": -0.42164835, + "y": -0.9064788, + "z": -0.022557566 + }, + "yAxis": { + "x": 0.90513355, + "y": -0.42225114, + "z": 0.049368005 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.04189, + "y": -6.611084, + "z": 32.954247 + }, + "xAxis": { + "x": -0.64154685, + "y": -0.7663047, + "z": -0.034566317 + }, + "yAxis": { + "x": 0.76658934, + "y": -0.6420998, + "z": 0.006973962 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.021786, + "y": -6.427504, + "z": 43.215782 + }, + "xAxis": { + "x": -0.8180946, + "y": -0.5740058, + "z": -0.03519349 + }, + "yAxis": { + "x": 0.5750351, + "y": -0.81728774, + "z": -0.037086535 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -14.70036, + "y": -6.628944, + "z": 53.47197 + }, + "xAxis": { + "x": -0.9390487, + "y": -0.34291738, + "z": -0.0243956 + }, + "yAxis": { + "x": 0.34375426, + "y": -0.93566644, + "z": -0.07975807 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -14.187306, + "y": -7.279428, + "z": 63.701675 + }, + "xAxis": { + "x": -0.99602157, + "y": -0.08906448, + "z": -0.0029214337 + }, + "yAxis": { + "x": 0.08878534, + "y": -0.9890267, + "z": -0.11808154 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -13.605606, + "y": -8.411841, + "z": 73.88561 + }, + "xAxis": { + "x": -0.9850623, + "y": 0.16994928, + "z": 0.027739864 + }, + "yAxis": { + "x": -0.1721907, + "y": -0.9736684, + "z": -0.14939938 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -13.083001, + "y": -10.025649, + "z": 84.00765 + }, + "xAxis": { + "x": -0.90693086, + "y": 0.41616234, + "z": 0.06546206 + }, + "yAxis": { + "x": -0.4210762, + "y": -0.8906565, + "z": -0.17153983 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -12.743135, + "y": -12.086934, + "z": 94.05598 + }, + "xAxis": { + "x": -0.76704544, + "y": 0.6325008, + "z": 0.10762927 + }, + "yAxis": { + "x": -0.640612, + "y": -0.7457474, + "z": -0.1829675 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -12.69698, + "y": -14.530747, + "z": 104.02387 + }, + "xAxis": { + "x": -0.5751064, + "y": 0.80396247, + "z": 0.15131736 + }, + "yAxis": { + "x": -0.8155741, + "y": -0.54899013, + "z": -0.18288997 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -13.03514, + "y": -17.265614, + "z": 113.910194 + }, + "xAxis": { + "x": -0.344424, + "y": 0.91865724, + "z": 0.19349675 + }, + "yAxis": { + "x": -0.93382967, + "y": -0.31402892, + "z": -0.17131259 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -12.007302, + "y": -15.185078, + "z": 12.989752 + }, + "xAxis": { + "x": -0.997259, + "y": -0.06653002, + "z": -0.03237674 + }, + "yAxis": { + "x": 0.0646614, + "y": -0.99635196, + "z": 0.055692818 + } + }, + "center": { + "x": 1.124723, + "y": 3.1688933 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -14.797013, + "y": -14.760623, + "z": 22.922638 + }, + "xAxis": { + "x": -0.9811781, + "y": 0.19310229, + "z": -0.0009968645 + }, + "yAxis": { + "x": -0.19306725, + "y": -0.98087204, + "z": 0.024800016 + } + }, + "center": { + "x": 1.124723, + "y": 7.1288934 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.135546, + "y": -13.9956875, + "z": 32.95115 + }, + "xAxis": { + "x": -0.8979226, + "y": 0.43857092, + "z": 0.037290182 + }, + "yAxis": { + "x": -0.43877432, + "y": -0.89859235, + "z": 0.0029793861 + } + }, + "center": { + "x": 1.124723, + "y": 11.088894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.948135, + "y": -13.02131, + "z": 43.069942 + }, + "xAxis": { + "x": -0.75326586, + "y": 0.6528536, + "z": 0.07982935 + }, + "yAxis": { + "x": -0.655421, + "y": -0.7552186, + "z": -0.008255898 + } + }, + "center": { + "x": 1.124723, + "y": 15.048893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.19649, + "y": -11.983053, + "z": 53.267418 + }, + "xAxis": { + "x": -0.55723923, + "y": 0.82109076, + "z": 0.12367071 + }, + "yAxis": { + "x": -0.82798374, + "y": -0.5606932, + "z": -0.008126717 + } + }, + "center": { + "x": 1.124723, + "y": 19.008894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.881443, + "y": -11.03091, + "z": 63.52652 + }, + "xAxis": { + "x": -0.3234364, + "y": 0.9316157, + "z": 0.16577406 + }, + "yAxis": { + "x": -0.94449604, + "y": -0.3285057, + "z": 0.0033579704 + } + }, + "center": { + "x": 1.124723, + "y": 22.968895 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -21.042902, + "y": -10.308899, + "z": 73.82591 + }, + "xAxis": { + "x": -0.068070665, + "y": 0.97676414, + "z": 0.2032197 + }, + "yAxis": { + "x": -0.99687815, + "y": -0.074757345, + "z": 0.025401747 + } + }, + "center": { + "x": 1.124723, + "y": 26.928894 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.757072, + "y": -9.945084, + "z": 84.14147 + }, + "xAxis": { + "x": 0.19114947, + "y": 0.9534051, + "z": 0.23341092 + }, + "yAxis": { + "x": -0.9814977, + "y": 0.18295546, + "z": 0.056475975 + } + }, + "center": { + "x": 1.124723, + "y": 30.888893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.131178, + "y": -10.042686, + "z": 94.44796 + }, + "xAxis": { + "x": 0.4362481, + "y": 0.8631584, + "z": 0.25425407 + }, + "yAxis": { + "x": -0.8994212, + "y": 0.42676133, + "z": 0.094425775 + } + }, + "center": { + "x": 1.124723, + "y": 34.848892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.296026, + "y": -10.672933, + "z": 104.72075 + }, + "xAxis": { + "x": 0.6502286, + "y": 0.7122824, + "z": 0.2643038 + }, + "yAxis": { + "x": -0.7563404, + "y": 0.63975334, + "z": 0.13661948 + } + }, + "center": { + "x": 1.124723, + "y": 38.80889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.396933, + "y": -11.87011, + "z": 114.93756 + }, + "xAxis": { + "x": 0.8182523, + "y": 0.5112397, + "z": 0.26286313 + }, + "yAxis": { + "x": -0.56217724, + "y": 0.8071614, + "z": 0.18013114 + } + }, + "center": { + "x": 1.124723, + "y": 42.76889 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -7.2858906, + "y": -11.937214, + "z": 13.435106 + }, + "xAxis": { + "x": -0.90830874, + "y": 0.40091687, + "z": -0.11933507 + }, + "yAxis": { + "x": -0.4070467, + "y": -0.91286975, + "z": 0.03133347 + } + }, + "center": { + "x": 0.45382434, + "y": 2.2107508 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -9.388258, + "y": -12.853022, + "z": 23.303574 + }, + "xAxis": { + "x": -0.77689356, + "y": 0.62485886, + "z": -0.07738131 + }, + "yAxis": { + "x": -0.627754, + "y": -0.77818954, + "z": 0.018601371 + } + }, + "center": { + "x": 0.45382434, + "y": 6.170751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -13.298571, + "y": -14.07737, + "z": 43.146427 + }, + "xAxis": { + "x": -0.36404783, + "y": 0.93133134, + "z": 0.009544116 + }, + "yAxis": { + "x": -0.93094057, + "y": -0.3641717, + "z": 0.026993178 + } + }, + "center": { + "x": 0.45382434, + "y": 14.090751 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -15.0101595, + "y": -14.456993, + "z": 53.12499 + }, + "xAxis": { + "x": -0.11124659, + "y": 0.99260926, + "z": 0.048487872 + }, + "yAxis": { + "x": -0.9923951, + "y": -0.11354463, + "z": 0.047535148 + } + }, + "center": { + "x": 0.45382434, + "y": 18.050749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -17.791925, + "y": -15.005897, + "z": 73.18712 + }, + "xAxis": { + "x": 0.4006748, + "y": 0.9102962, + "z": 0.1040218 + }, + "yAxis": { + "x": -0.9140141, + "y": 0.38925132, + "z": 0.11428749 + } + }, + "center": { + "x": 0.45382434, + "y": 25.970749 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -18.844007, + "y": -15.293098, + "z": 83.25965 + }, + "xAxis": { + "x": 0.62429523, + "y": 0.7724133, + "z": 0.11676091 + }, + "yAxis": { + "x": -0.779614, + "y": 0.6065534, + "z": 0.15586886 + } + }, + "center": { + "x": 0.45382434, + "y": 29.930748 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -20.341793, + "y": -16.179363, + "z": 103.44627 + }, + "xAxis": { + "x": 0.9303952, + "y": 0.3503399, + "z": 0.10782764 + }, + "yAxis": { + "x": -0.36634862, + "y": 0.89866537, + "z": 0.24122445 + } + }, + "center": { + "x": 0.45382434, + "y": 37.85075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -20.858438, + "y": -16.872952, + "z": 113.54069 + }, + "xAxis": { + "x": 0.99164784, + "y": 0.09541839, + "z": 0.08677476 + }, + "yAxis": { + "x": -0.116141684, + "y": 0.9532186, + "z": 0.27907962 + } + }, + "center": { + "x": 0.45382434, + "y": 41.81075 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -6.244105, + "y": -6.0541368, + "z": 13.36509 + }, + "xAxis": { + "x": 0.99041206, + "y": 0.06972301, + "z": 0.11925897 + }, + "yAxis": { + "x": -0.061294764, + "y": 0.995451, + "z": -0.07294013 + } + }, + "center": { + "x": 0.6453203, + "y": 1.124723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -6.86685, + "y": -7.43646, + "z": 23.368233 + }, + "xAxis": { + "x": 0.9775444, + "y": -0.19142272, + "z": 0.08811502 + }, + "yAxis": { + "x": 0.19565862, + "y": 0.979765, + "z": -0.04216882 + } + }, + "center": { + "x": 0.6453203, + "y": 5.0847235 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.5765033, + "y": -8.975641, + "z": 33.34264 + }, + "xAxis": { + "x": 0.8970081, + "y": -0.43918693, + "z": 0.049912926 + }, + "yAxis": { + "x": 0.44056073, + "y": 0.89748985, + "z": -0.020449623 + } + }, + "center": { + "x": 0.6453203, + "y": 9.044723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -8.411259, + "y": -10.642938, + "z": 43.28672 + }, + "xAxis": { + "x": 0.7543879, + "y": -0.6563883, + "z": 0.0073018465 + }, + "yAxis": { + "x": 0.65642864, + "y": 0.75433093, + "z": -0.0092886975 + } + }, + "center": { + "x": 0.6453203, + "y": 13.004723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -9.400632, + "y": -12.4007225, + "z": 53.200996 + }, + "xAxis": { + "x": 0.55957407, + "y": -0.82796454, + "z": -0.03676331 + }, + "yAxis": { + "x": 0.82829267, + "y": 0.56021583, + "z": -0.009460002 + } + }, + "center": { + "x": 0.6453203, + "y": 16.964722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -10.5634165, + "y": -14.205094, + "z": 63.08804 + }, + "xAxis": { + "x": 0.32607606, + "y": -0.9420178, + "z": -0.07922681 + }, + "yAxis": { + "x": 0.94423485, + "y": 0.3286056, + "z": -0.020951657 + } + }, + "center": { + "x": 0.6453203, + "y": 20.924723 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.906382, + "y": -16.008919, + "z": 72.95233 + }, + "xAxis": { + "x": 0.070086025, + "y": -0.9906388, + "z": -0.11714399 + }, + "yAxis": { + "x": 0.996215, + "y": 0.07556139, + "z": -0.04296676 + } + }, + "center": { + "x": 0.6453203, + "y": 24.884722 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -13.423801, + "y": -17.765104, + "z": 82.799904 + }, + "xAxis": { + "x": -0.19064417, + "y": -0.97045594, + "z": -0.14788543 + }, + "yAxis": { + "x": 0.98062855, + "y": -0.18136914, + "z": -0.07397867 + } + }, + "center": { + "x": 0.6453203, + "y": 28.84472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -15.097853, + "y": -19.42986, + "z": 92.63797 + }, + "xAxis": { + "x": -0.4380339, + "y": -0.88286877, + "z": -0.16931933 + }, + "yAxis": { + "x": 0.89855635, + "y": -0.4243689, + "z": -0.11183681 + } + }, + "center": { + "x": 0.6453203, + "y": 32.80472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.89985, + "y": -20.96573, + "z": 102.4744 + }, + "xAxis": { + "x": -0.65492773, + "y": -0.73395115, + "z": -0.17995936 + }, + "yAxis": { + "x": 0.7556898, + "y": -0.63658684, + "z": -0.1539159 + } + }, + "center": { + "x": 0.6453203, + "y": 36.76472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -18.792236, + "y": -22.344208, + "z": 112.31718 + }, + "xAxis": { + "x": -0.826285, + "y": -0.53402984, + "z": -0.17906766 + }, + "yAxis": { + "x": 0.5619361, + "y": -0.8033065, + "z": -0.1972979 + } + }, + "center": { + "x": 0.6453203, + "y": 40.72472 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.589292, + "y": -1.389522, + "z": 13.079913 + }, + "xAxis": { + "x": 0.90537816, + "y": -0.40201628, + "z": 0.13665034 + }, + "yAxis": { + "x": 0.39820597, + "y": 0.91562253, + "z": 0.055383664 + } + }, + "center": { + "x": 1.603463, + "y": 0.45382434 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.90219, + "y": -2.0618815, + "z": 23.329191 + }, + "xAxis": { + "x": 0.7742092, + "y": -0.62579817, + "z": 0.09474588 + }, + "yAxis": { + "x": 0.6220769, + "y": 0.7799621, + "z": 0.06840568 + } + }, + "center": { + "x": 1.603463, + "y": 4.4138246 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.1575365, + "y": -3.2608428, + "z": 33.52624 + }, + "xAxis": { + "x": 0.58877647, + "y": -0.806697, + "z": 0.050815262 + }, + "yAxis": { + "x": 0.80365056, + "y": 0.59096515, + "z": 0.07004257 + } + }, + "center": { + "x": 1.603463, + "y": 8.373823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.4943748, + "y": -4.981257, + "z": 43.654037 + }, + "xAxis": { + "x": 0.36193895, + "y": -0.9321683, + "z": 0.0079048965 + }, + "yAxis": { + "x": 0.9303355, + "y": 0.36173764, + "z": 0.060180824 + } + }, + "center": { + "x": 1.603463, + "y": 12.333823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.046094, + "y": -7.181813, + "z": 53.700356 + }, + "xAxis": { + "x": 0.10942692, + "y": -0.993511, + "z": -0.031009555 + }, + "yAxis": { + "x": 0.9933466, + "y": 0.1081758, + "z": 0.039504316 + } + }, + "center": { + "x": 1.603463, + "y": 16.293823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.9311843, + "y": -9.787905, + "z": 63.658615 + }, + "xAxis": { + "x": -0.15124895, + "y": -0.98647135, + "z": -0.06322954 + }, + "yAxis": { + "x": 0.9883143, + "y": -0.15213701, + "z": 0.009446874 + } + }, + "center": { + "x": 1.603463, + "y": 20.253824 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.2450175, + "y": -12.696803, + "z": 73.52836 + }, + "xAxis": { + "x": -0.40201184, + "y": -0.9115375, + "z": -0.08652073 + }, + "yAxis": { + "x": 0.91558754, + "y": -0.40114912, + "z": -0.02790714 + } + }, + "center": { + "x": 1.603463, + "y": 24.213823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.053235, + "y": -15.784782, + "z": 83.31523 + }, + "xAxis": { + "x": -0.62547237, + "y": -0.77390575, + "z": -0.09926797 + }, + "yAxis": { + "x": 0.7802097, + "y": -0.6215926, + "z": -0.06996738 + } + }, + "center": { + "x": 1.603463, + "y": 28.173822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.387192, + "y": -18.915697, + "z": 93.03068 + }, + "xAxis": { + "x": -0.80613446, + "y": -0.5831204, + "z": -0.100587286 + }, + "yAxis": { + "x": 0.5915687, + "y": -0.7981805, + "z": -0.113817126 + } + }, + "center": { + "x": 1.603463, + "y": 32.133823 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -11.241788, + "y": -21.950424, + "z": 102.69105 + }, + "xAxis": { + "x": -0.9314699, + "y": -0.35241157, + "z": -0.0903872 + }, + "yAxis": { + "x": 0.36274594, + "y": -0.91866726, + "z": -0.1564156 + } + }, + "center": { + "x": 1.603463, + "y": 36.093822 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -13.575817, + "y": -24.756512, + "z": 112.316536 + }, + "xAxis": { + "x": -0.9927873, + "y": -0.09777797, + "z": -0.069375046 + }, + "yAxis": { + "x": 0.109609395, + "y": -0.9746976, + "z": -0.19480874 + } + }, + "center": { + "x": 1.603463, + "y": 40.05382 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -15.625136, + "y": -0.08137078, + "z": 13.386254 + }, + "xAxis": { + "x": -0.07064415, + "y": 0.9974069, + "z": 0.013745278 + }, + "yAxis": { + "x": -0.9882748, + "y": -0.06811417, + "z": -0.13665034 + } + }, + "center": { + "x": 2.6894908, + "y": 0.6453203 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -14.620071, + "y": 0.58324045, + "z": 23.844154 + }, + "xAxis": { + "x": 0.97549695, + "y": -0.19306059, + "z": 0.10551448 + }, + "yAxis": { + "x": 0.18928403, + "y": 0.9808998, + "z": 0.044800572 + } + }, + "center": { + "x": 2.6894908, + "y": 4.6053205 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -12.985442, + "y": 0.74376327, + "z": 34.30757 + }, + "xAxis": { + "x": 0.89504004, + "y": -0.44087622, + "z": 0.06731664 + }, + "yAxis": { + "x": 0.43685472, + "y": 0.89705724, + "z": 0.0666806 + } + }, + "center": { + "x": 2.6894908, + "y": 8.565319 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -11.1055355, + "y": 0.09796779, + "z": 44.710922 + }, + "xAxis": { + "x": 0.75248337, + "y": -0.6581477, + "z": 0.02470567 + }, + "yAxis": { + "x": 0.65489995, + "y": 0.7516931, + "z": 0.077868074 + } + }, + "center": { + "x": 2.6894908, + "y": 12.52532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -8.920916, + "y": -1.4423393, + "z": 55.034527 + }, + "xAxis": { + "x": 0.8282991, + "y": 0.5548881, + "z": 0.07758719 + }, + "yAxis": { + "x": -0.5577128, + "y": 0.8298081, + "z": 0.01936351 + } + }, + "center": { + "x": 2.6894908, + "y": 16.48532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.229011, + "y": -3.8119316, + "z": 65.219246 + }, + "xAxis": { + "x": 0.94502765, + "y": 0.3202897, + "z": 0.06585742 + }, + "yAxis": { + "x": -0.3242348, + "y": 0.9439535, + "z": 0.061834894 + } + }, + "center": { + "x": 2.6894908, + "y": 20.44532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -6.1661224, + "y": -6.7200713, + "z": 75.28069 + }, + "xAxis": { + "x": 0.068240136, + "y": -0.9926684, + "z": -0.09976327 + }, + "yAxis": { + "x": 0.99699104, + "y": 0.06416633, + "z": 0.043492176 + } + }, + "center": { + "x": 2.6894908, + "y": 24.40532 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.2689943, + "y": -10.587308, + "z": 85.17824 + }, + "xAxis": { + "x": 0.9805857, + "y": -0.19572088, + "z": 0.012042397 + }, + "yAxis": { + "x": 0.19251902, + "y": 0.9725746, + "z": 0.13051844 + } + }, + "center": { + "x": 2.6894908, + "y": 28.365318 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.4030056, + "y": -14.413951, + "z": 94.984276 + }, + "xAxis": { + "x": -0.43996006, + "y": -0.8850655, + "z": -0.15196766 + }, + "yAxis": { + "x": 0.89694935, + "y": -0.44134974, + "z": -0.026310997 + } + }, + "center": { + "x": 2.6894908, + "y": 32.325317 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -6.1653647, + "y": -18.975784, + "z": 104.59315 + }, + "xAxis": { + "x": 0.7518818, + "y": -0.655687, + "z": -0.068908356 + }, + "yAxis": { + "x": 0.65692395, + "y": 0.7362096, + "z": 0.16262354 + } + }, + "center": { + "x": 2.6894908, + "y": 36.285316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -7.803879, + "y": -22.984964, + "z": 114.188 + }, + "xAxis": { + "x": -0.8283651, + "y": -0.53632927, + "z": -0.1617471 + }, + "yAxis": { + "x": 0.55544287, + "y": -0.8238691, + "z": -0.112795725 + } + }, + "center": { + "x": 2.6894908, + "y": 40.245316 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.282637, + "y": -3.4371912, + "z": 13.109857 + }, + "xAxis": { + "x": 0.39806253, + "y": 0.9144539, + "z": 0.07294013 + }, + "yAxis": { + "x": -0.9142915, + "y": 0.40197182, + "z": -0.049896974 + } + }, + "center": { + "x": 3.3603892, + "y": 1.603463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -20.038332, + "y": -1.3242905, + "z": 23.638098 + }, + "xAxis": { + "x": 0.7806767, + "y": -0.62488663, + "z": 0.0077807303 + }, + "yAxis": { + "x": 0.6220728, + "y": 0.7782312, + "z": 0.08591624 + } + }, + "center": { + "x": 3.3603892, + "y": 5.5634627 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -18.715727, + "y": 0.30089316, + "z": 34.227528 + }, + "xAxis": { + "x": 0.5931, + "y": -0.8043121, + "z": -0.03625492 + }, + "yAxis": { + "x": 0.8036349, + "y": 0.5886571, + "z": 0.08748644 + } + }, + "center": { + "x": 3.3603892, + "y": 9.523462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -16.756409, + "y": 1.1451697, + "z": 44.809345 + }, + "xAxis": { + "x": 0.3645689, + "y": -0.9278059, + "z": -0.079156294 + }, + "yAxis": { + "x": 0.93015814, + "y": 0.35887763, + "z": 0.077541836 + } + }, + "center": { + "x": 3.3603892, + "y": 13.483462 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -14.162896, + "y": 0.8956034, + "z": 55.327602 + }, + "xAxis": { + "x": 0.99286866, + "y": 0.10482726, + "z": 0.056772057 + }, + "yAxis": { + "x": -0.11093123, + "y": 0.9868042, + "z": 0.11794834 + } + }, + "center": { + "x": 3.3603892, + "y": 17.443464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -11.681972, + "y": -0.21815725, + "z": 65.75419 + }, + "xAxis": { + "x": 0.9874178, + "y": -0.15587676, + "z": 0.026617393 + }, + "yAxis": { + "x": 0.15022431, + "y": 0.9772156, + "z": 0.149941 + } + }, + "center": { + "x": 3.3603892, + "y": 21.403465 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -9.416815, + "y": -2.0496845, + "z": 76.09259 + }, + "xAxis": { + "x": -0.40078765, + "y": -0.8997052, + "z": -0.17291573 + }, + "yAxis": { + "x": 0.91418356, + "y": -0.40515563, + "z": -0.010831051 + } + }, + "center": { + "x": 3.3603892, + "y": 25.363464 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.3109913, + "y": -5.314782, + "z": 86.20826 + }, + "xAxis": { + "x": 0.7782444, + "y": -0.6257229, + "z": -0.052976377 + }, + "yAxis": { + "x": 0.6233832, + "y": 0.7596479, + "z": 0.18527928 + } + }, + "center": { + "x": 3.3603892, + "y": 29.323463 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.8561425, + "y": -8.826395, + "z": 96.25415 + }, + "xAxis": { + "x": -0.80257493, + "y": -0.5667562, + "z": -0.18617432 + }, + "yAxis": { + "x": 0.58902717, + "y": -0.8022831, + "z": -0.09689597 + } + }, + "center": { + "x": 3.3603892, + "y": 33.28346 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.263047, + "y": -13.4824095, + "z": 106.02104 + }, + "xAxis": { + "x": 0.3596533, + "y": -0.9225925, + "z": -0.13954419 + }, + "yAxis": { + "x": 0.9259366, + "y": 0.3344063, + "z": 0.17553876 + } + }, + "center": { + "x": 3.3603892, + "y": 37.243458 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.5350704, + "y": -18.235506, + "z": 115.68764 + }, + "xAxis": { + "x": 0.106028914, + "y": -0.97830814, + "z": -0.17796355 + }, + "yAxis": { + "x": 0.9849135, + "y": 0.078710705, + "z": 0.15411016 + } + }, + "center": { + "x": 3.3603892, + "y": 41.203457 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -21.653532, + "y": -9.411015, + "z": 13.928757 + }, + "xAxis": { + "x": -0.9963948, + "y": -0.06866809, + "z": -0.049820874 + }, + "yAxis": { + "x": 0.07027893, + "y": -0.99703515, + "z": -0.03133347 + } + }, + "center": { + "x": 3.1688933, + "y": 2.6894908 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.601881, + "y": -6.740543, + "z": 24.3487 + }, + "xAxis": { + "x": -0.98132765, + "y": 0.19145048, + "z": -0.018514432 + }, + "yAxis": { + "x": -0.18997745, + "y": -0.9798067, + "z": -0.062348798 + } + }, + "center": { + "x": 3.1688933, + "y": 6.6494904 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.570688, + "y": -4.29724, + "z": 34.86703 + }, + "xAxis": { + "x": -0.8989277, + "y": 0.43765178, + "z": 0.01974706 + }, + "yAxis": { + "x": -0.43767813, + "y": -0.8951846, + "z": -0.08415719 + } + }, + "center": { + "x": 3.1688933, + "y": 10.60949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -21.649525, + "y": -2.328531, + "z": 45.444443 + }, + "xAxis": { + "x": -0.754909, + "y": 0.65286285, + "z": 0.062310327 + }, + "yAxis": { + "x": -0.65564615, + "y": -0.7490369, + "z": -0.09524632 + } + }, + "center": { + "x": 3.1688933, + "y": 14.56949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -19.989672, + "y": -1.0489328, + "z": 56.03753 + }, + "xAxis": { + "x": -0.5592587, + "y": 0.82215947, + "z": 0.10622378 + }, + "yAxis": { + "x": -0.8287662, + "y": -0.5514985, + "z": -0.0948472 + } + }, + "center": { + "x": 3.1688933, + "y": 18.529491 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -17.793634, + "y": -0.6251731, + "z": 66.6018 + }, + "xAxis": { + "x": -0.3255444, + "y": 0.9338018, + "z": 0.1484422 + }, + "yAxis": { + "x": -0.9450332, + "y": -0.3162678, + "z": -0.08298751 + } + }, + "center": { + "x": 3.1688933, + "y": 22.489492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -15.301103, + "y": -1.1646315, + "z": 77.094765 + }, + "xAxis": { + "x": -0.06997317, + "y": 0.98004776, + "z": 0.18603791 + }, + "yAxis": { + "x": -0.9963845, + "y": -0.059657097, + "z": -0.060489673 + } + }, + "center": { + "x": 3.1688933, + "y": 26.449492 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -12.772328, + "y": -2.7078917, + "z": 87.47887 + }, + "xAxis": { + "x": 0.18973216, + "y": 0.9576905, + "z": 0.2164038 + }, + "yAxis": { + "x": -0.979259, + "y": 0.20053868, + "z": -0.028913813 + } + }, + "center": { + "x": 3.1688933, + "y": 30.40949 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -10.470075, + "y": -5.2259293, + "z": 97.72411 + }, + "xAxis": { + "x": 0.43556204, + "y": 0.86828035, + "z": 0.2374341 + }, + "yAxis": { + "x": -0.8948444, + "y": 0.44627598, + "z": 0.009550402 + } + }, + "center": { + "x": 3.1688933, + "y": 34.369488 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -8.6413965, + "y": -8.622122, + "z": 107.810135 + }, + "xAxis": { + "x": 0.6504692, + "y": 0.7180175, + "z": 0.24767049 + }, + "yAxis": { + "x": -0.74899447, + "y": 0.660514, + "z": 0.05223564 + } + }, + "center": { + "x": 3.1688933, + "y": 38.329487 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -7.500509, + "y": -12.738949, + "z": 117.7276 + }, + "xAxis": { + "x": 0.8195507, + "y": 0.5173222, + "z": 0.24640305 + }, + "yAxis": { + "x": -0.5518233, + "y": 0.8283961, + "z": 0.09618185 + } + }, + "center": { + "x": 3.1688933, + "y": 42.289486 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -18.320984, + "y": -14.0734005, + "z": 14.360628 + }, + "xAxis": { + "x": -0.9143623, + "y": 0.40360045, + "z": -0.03237674 + }, + "yAxis": { + "x": -0.40418872, + "y": -0.91456765, + "z": 0.01405443 + } + }, + "center": { + "x": 2.2107508, + "y": 3.3603892 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -20.574532, + "y": -12.115063, + "z": 24.534779 + }, + "xAxis": { + "x": -0.77989036, + "y": 0.6258398, + "z": 0.009771734 + }, + "yAxis": { + "x": -0.62586015, + "y": -0.77993435, + "z": 0.0011949074 + } + }, + "center": { + "x": 2.2107508, + "y": 7.3203893 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.993711, + "y": -10.015281, + "z": 34.83059 + }, + "xAxis": { + "x": -0.59165907, + "y": 0.8043917, + "z": 0.053791553 + }, + "yAxis": { + "x": -0.8055702, + "y": -0.59250027, + "z": -0.00038258414 + } + }, + "center": { + "x": 2.2107508, + "y": 11.28039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -22.56751, + "y": -7.9976597, + "z": 45.224186 + }, + "xAxis": { + "x": -0.36272138, + "y": 0.9268742, + "z": 0.09663012 + }, + "yAxis": { + "x": -0.9308565, + "y": -0.3652631, + "z": 0.00943135 + } + }, + "center": { + "x": 2.2107508, + "y": 15.24039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -22.343542, + "y": -6.2801065, + "z": 55.68491 + }, + "xAxis": { + "x": -0.108953364, + "y": 0.98479366, + "z": 0.13531676 + }, + "yAxis": { + "x": -0.9930312, + "y": -0.11398089, + "z": 0.029956153 + } + }, + "center": { + "x": 2.2107508, + "y": 19.20039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.424742, + "y": -5.05972, + "z": 66.17745 + }, + "xAxis": { + "x": 0.15204732, + "y": 0.9741336, + "z": 0.1671687 + }, + "yAxis": { + "x": -0.9877826, + "y": 0.143921, + "z": 0.059768513 + } + }, + "center": { + "x": 2.2107508, + "y": 23.16039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.962229, + "y": -4.499122, + "z": 76.66428 + }, + "xAxis": { + "x": 0.4021813, + "y": 0.8956332, + "z": 0.18997717 + }, + "yAxis": { + "x": -0.9154747, + "y": 0.39055812, + "z": 0.096801065 + } + }, + "center": { + "x": 2.2107508, + "y": 27.12039 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -18.144823, + "y": -4.715182, + "z": 87.108284 + }, + "xAxis": { + "x": 0.62410283, + "y": 0.75473624, + "z": 0.20216045 + }, + "yAxis": { + "x": -0.78112173, + "y": 0.6088272, + "z": 0.13848576 + } + }, + "center": { + "x": 2.2107508, + "y": 31.080389 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -16.185959, + "y": -5.77091, + "z": 97.47531 + }, + "xAxis": { + "x": 0.8024225, + "y": 0.5612133, + "z": 0.20287369 + }, + "yAxis": { + "x": -0.5940406, + "y": 0.7835921, + "z": 0.1819319 + } + }, + "center": { + "x": 2.2107508, + "y": 35.040386 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -14.308879, + "y": -7.6710887, + "z": 107.73654 + }, + "xAxis": { + "x": 0.9247746, + "y": 0.32848445, + "z": 0.19206746 + }, + "yAxis": { + "x": -0.36720452, + "y": 0.9027337, + "z": 0.22412671 + } + }, + "center": { + "x": 2.2107508, + "y": 39.000385 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -12.731154, + "y": -10.361941, + "z": 117.87049 + }, + "xAxis": { + "x": 0.9826745, + "y": 0.07268841, + "z": 0.17049108 + }, + "yAxis": { + "x": -0.11634371, + "y": 0.9579899, + "z": 0.26214415 + } + }, + "center": { + "x": 2.2107508, + "y": 42.960384 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.694787, + "y": -3.5572443, + "z": 33.27122 + }, + "xAxis": { + "x": 0.8177769, + "y": -0.5753389, + "z": -0.015033832 + }, + "yAxis": { + "x": 0.57471883, + "y": 0.81772906, + "z": -0.031897496 + } + }, + "center": { + "x": -0.12357646, + "y": 10.494074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -2.5303347, + "y": 0.49885267, + "z": 62.876194 + }, + "xAxis": { + "x": 0.17338446, + "y": -0.97823864, + "z": 0.11396066 + }, + "yAxis": { + "x": 0.98479384, + "y": 0.1709279, + "z": -0.031060498 + } + }, + "center": { + "x": -0.12357646, + "y": 22.374077 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": 3.3046646, + "y": 3.505185, + "z": 92.48181 + }, + "xAxis": { + "x": -0.570233, + "y": -0.7959064, + "z": 0.20338961 + }, + "yAxis": { + "x": 0.8186831, + "y": -0.5710203, + "z": 0.060776904 + } + }, + "center": { + "x": -0.12357646, + "y": 34.254074 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + } + ], + "connections": [], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2128.8", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "20.170755", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.2251e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "3.9635e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "729701", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "411233.988889", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "42939.502222", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "4.3747e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "336342", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "93.568468", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "74891.988889", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "66427", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "50587", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "69173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_flat.json b/assets/semio/design_nakagin-capsule-tower_flat.json index 8ab2b45c8..606c5a08b 100644 --- a/assets/semio/design_nakagin-capsule-tower_flat.json +++ b/assets/semio/design_nakagin-capsule-tower_flat.json @@ -1 +1,7118 @@ -{"name":"Nakagin Capsule Tower","description":"The digital shadow of the former Nakagin Capsule Tower which was a mixed-use residential and office tower designed by architect Kisho Kurokawa and located in Shimbashi, Tokyo, Japan. Completed in 1972, the building was a rare remaining example of Japanese Metabolism, an architectural movement emblematic of Japan's postwar cultural resurgence.","icon":"icons/nakagin-capsule-tower.svg","image":"images/nakagin-capsule-tower.png","variant":"","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":34.083332},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":39.583332},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":7.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":10.25},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":13.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":15.75},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":18.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":21.25},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":24.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":26.75},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":29.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-8.85,"y":-2.85,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-11.55,"y":-5.5499997,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-11.55,"y":-9.849999,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-11.55,"y":-9.849999,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-11.55,"y":-9.849999,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-11.55,"y":-9.849999,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-11.55,"y":-9.849999,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-11.55,"y":-9.849999,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":13.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":21.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-8.85,"y":-12.549999,"z":29.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":8.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":11.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":14.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":16.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":19.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":22.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":25.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":27.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-5.35,"y":-11.75,"z":30.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":8.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":11.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":14.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":16.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":19.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":22.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":25.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":27.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-2.65,"y":-9.05,"z":30.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-3.45,"y":-5.5499997,"z":9.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-2.65,"y":-6.35,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-2.65,"y":-6.35,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-3.45,"y":-5.5499997,"z":17.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-2.65,"y":-6.35,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-2.65,"y":-6.35,"z":23.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-3.45,"y":-5.5499997,"z":26.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-3.45,"y":-5.5499997,"z":28.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-2.65,"y":-6.35,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-6.15,"y":-2.85,"z":9.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-5.35,"y":-3.6499999,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-5.35,"y":-3.6499999,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-6.15,"y":-2.85,"z":17.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-5.35,"y":-3.6499999,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-6.15,"y":-2.85,"z":23.283333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-6.15,"y":-2.85,"z":26.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-6.15,"y":-2.85,"z":28.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-5.35,"y":-3.6499999,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":7.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":10.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":13.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":15.75},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":18.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":21.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":24.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":26.75},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":29.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":32.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":35.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":13.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":21.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":29.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":32.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-17.25,"y":-12.549999,"z":35.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":32.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-14.55,"y":-9.849999,"z":35.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":32.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-14.55,"y":-5.5499997,"z":35.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":32.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-17.25,"y":-2.85,"z":35.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-20.75,"y":-3.6499999,"z":8.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95,"y":-2.85,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95,"y":-2.85,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95,"y":-2.85,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-20.75,"y":-3.6499999,"z":19.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-20.75,"y":-3.6499999,"z":22.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95,"y":-2.85,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-20.75,"y":-3.6499999,"z":27.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95,"y":-2.85,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":{"origin":{"x":-20.75,"y":-3.6499999,"z":33.366665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95,"y":-2.85,"z":36.116665},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-23.45,"y":-6.35,"z":8.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-22.65,"y":-5.5499997,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-22.65,"y":-5.5499997,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-22.65,"y":-5.5499997,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-23.45,"y":-6.35,"z":19.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-23.45,"y":-6.35,"z":22.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-22.65,"y":-5.5499997,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-23.45,"y":-6.35,"z":27.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":{"origin":{"x":-22.65,"y":-5.5499997,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-23.45,"y":-6.35,"z":33.366665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":{"origin":{"x":-23.45,"y":-6.35,"z":36.116665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":9.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":12.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":15.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":17.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":20.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":23.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":26.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":28.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":31.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":34.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":{"origin":{"x":-22.65,"y":-9.849999,"z":37.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":9.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":12.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":15.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":17.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":20.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":23.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":26.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":28.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":31.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":34.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":{"origin":{"x":-19.95,"y":-12.549999,"z":37.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-15.85,"y":-8.099999,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-15.85,"y":-8.099999,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-15.85,"y":-8.099999,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]}],"connections":[],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2349.53","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"22.890446","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.0311e+7","unit":"€","definition":""},{"name":"return","value":"2.2088e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.818e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"276616.911111","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"53781.79","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.4854e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"232534","unit":"€/a","definition":""},{"name":"specific energy demand","value":"99.440124","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"44082.911111","unit":"€/a","definition":""},{"name":"heating energy demand","value":"83186","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"63366","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"70802","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "The digital shadow of the former Nakagin Capsule Tower which was a mixed-use residential and office tower designed by architect Kisho Kurokawa and located in Shimbashi, Tokyo, Japan. Completed in 1972, the building was a rare remaining example of Japanese Metabolism, an architectural movement emblematic of Japan's postwar cultural resurgence.", + "icon": "icons/nakagin-capsule-tower.svg", + "image": "images/nakagin-capsule-tower.png", + "variant": "", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 34.083332 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 39.583332 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 7.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 10.25 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 13.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 15.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 18.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 21.25 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 24.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 26.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 29.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -2.85, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -5.5499997, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -9.849999, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -9.849999, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -9.849999, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -9.849999, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -9.849999, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.55, + "y": -9.849999, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 13.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 21.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -8.85, + "y": -12.549999, + "z": 29.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -11.75, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -9.05, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.45, + "y": -5.5499997, + "z": 9.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -6.35, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -6.35, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.45, + "y": -5.5499997, + "z": 17.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -6.35, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -6.35, + "z": 23.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.45, + "y": -5.5499997, + "z": 26.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.45, + "y": -5.5499997, + "z": 28.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.65, + "y": -6.35, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.15, + "y": -2.85, + "z": 9.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -3.6499999, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -3.6499999, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.15, + "y": -2.85, + "z": 17.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -3.6499999, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.15, + "y": -2.85, + "z": 23.283333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.15, + "y": -2.85, + "z": 26.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.15, + "y": -2.85, + "z": 28.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.35, + "y": -3.6499999, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 7.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 10.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 13.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 15.75 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 18.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 21.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 24.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 26.75 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 29.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 32.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 35.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 13.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 21.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 29.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 32.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -12.549999, + "z": 35.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 32.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -9.849999, + "z": 35.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 32.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.55, + "y": -5.5499997, + "z": 35.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 32.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.25, + "y": -2.85, + "z": 35.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.75, + "y": -3.6499999, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -2.85, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -2.85, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -2.85, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.75, + "y": -3.6499999, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.75, + "y": -3.6499999, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -2.85, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.75, + "y": -3.6499999, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -2.85, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.75, + "y": -3.6499999, + "z": 33.366665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -2.85, + "z": 36.116665 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.45, + "y": -6.35, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -5.5499997, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -5.5499997, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -5.5499997, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.45, + "y": -6.35, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.45, + "y": -6.35, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -5.5499997, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.45, + "y": -6.35, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -5.5499997, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.45, + "y": -6.35, + "z": 33.366665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.45, + "y": -6.35, + "z": 36.116665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 9.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 15.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 17.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 20.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 23.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 26.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 28.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 31.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 34.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.65, + "y": -9.849999, + "z": 37.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 9.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 15.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 17.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 20.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 23.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 26.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 28.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 31.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 34.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -19.95, + "y": -12.549999, + "z": 37.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.85, + "y": -8.099999, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.85, + "y": -8.099999, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.85, + "y": -8.099999, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + } + ], + "connections": [], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2349.53", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "22.890446", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.0311e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "2.2088e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.818e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "276616.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "53781.79", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.4854e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "232534", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "99.440124", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "44082.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "83186", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "63366", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "70802", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_slanted.json b/assets/semio/design_nakagin-capsule-tower_slanted.json index 268a3f52c..867d60f49 100644 --- a/assets/semio/design_nakagin-capsule-tower_slanted.json +++ b/assets/semio/design_nakagin-capsule-tower_slanted.json @@ -1 +1,7477 @@ -{"name":"Nakagin Capsule Tower","description":"A sloped variant of the Nakagin Capsule Tower where the capsules have balconies and the towers are graduated in opposing directions. Each tower has a direction and every floor is stepped in this direction.","icon":"icons/nakagin-capsule-tower_slanted.svg","image":"images/nakagin-capsule-tower_slanted.png","variant":"Slanted","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2583.27","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"20.819268","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.0311e+7","unit":"€","definition":""},{"name":"return","value":"2.2088e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.818e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"276616.911111","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"53781.79","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.4854e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"232534","unit":"€/a","definition":""},{"name":"specific energy demand","value":"90.442561","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"44082.911111","unit":"€/a","definition":""},{"name":"heating energy demand","value":"83186","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"63366","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"70802","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "A sloped variant of the Nakagin Capsule Tower where the capsules have balconies and the towers are graduated in opposing directions. Each tower has a direction and every floor is stepped in this direction.", + "icon": "icons/nakagin-capsule-tower_slanted.svg", + "image": "images/nakagin-capsule-tower_slanted.png", + "variant": "Slanted", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2583.27", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "20.819268", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.0311e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "2.2088e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.818e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "276616.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "53781.79", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.4854e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "232534", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "90.442561", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "44082.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "83186", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "63366", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "70802", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_slanted_flat.json b/assets/semio/design_nakagin-capsule-tower_slanted_flat.json index 5103ad480..d8e6bba9e 100644 --- a/assets/semio/design_nakagin-capsule-tower_slanted_flat.json +++ b/assets/semio/design_nakagin-capsule-tower_slanted_flat.json @@ -1 +1,7118 @@ -{"name":"Nakagin Capsule Tower","description":"A sloped variant of the Nakagin Capsule Tower where the capsules have balconies and the towers are graduated in opposing directions. Each tower has a direction and every floor is stepped in this direction.","icon":"icons/nakagin-capsule-tower_slanted.svg","image":"images/nakagin-capsule-tower_slanted.png","variant":"Slanted","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":-7.5,"y":-3.6999998,"z":34.083332},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":{"origin":{"x":-18.6,"y":-12.7,"z":39.583332},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":-7.5,"y":-7.7,"z":7.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-7.2,"z":10.25},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-6.7,"z":13.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-6.2,"z":15.75},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-5.7,"z":18.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-5.2,"z":21.25},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-4.7,"z":24.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-7.5,"y":-4.2,"z":26.75},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-7.5,"y":-3.6999998,"z":29.5},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":-2.6999998,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":-2.1999998,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":-1.6999999,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":-1.1999999,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":-0.6999999,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":-0.1999999,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":0.3000001,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":0.8000001,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-9.05,"y":1.3000001,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-5.35,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-4.85,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-4.35,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-3.85,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-3.35,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-2.85,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-2.35,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-1.8499998,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-11.7,"y":-1.3499998,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-11.7,"y":-10.05,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-11.7,"y":-9.55,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-11.7,"y":-8.55,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-11.7,"y":-8.05,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-11.7,"y":-7.0499997,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-11.7,"y":-6.5499997,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-12.7,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-12.2,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-11.7,"z":13.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-11.2,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-10.7,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-10.2,"z":21.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-9.7,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-9.2,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-9.05,"y":-8.7,"z":29.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":-1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-11.9,"z":8.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-11.4,"z":11.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-10.9,"z":14.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-10.4,"z":16.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-9.9,"z":19.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-9.4,"z":22.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-5.15,"y":-8.9,"z":25.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-5.15,"y":-8.4,"z":27.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-5.15,"y":-7.8999996,"z":30.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-9.25,"z":8.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-8.75,"z":11.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-8.25,"z":14.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-7.75,"z":16.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-7.25,"z":19.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-6.75,"z":22.366667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-6.25,"z":25.116667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-5.75,"z":27.866667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-2.5,"y":-5.25,"z":30.616667},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-3.3,"y":-5.35,"z":9.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-2.5,"y":-5.6499996,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-2.5,"y":-5.1499996,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-3.3,"y":-3.85,"z":17.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-2.5,"y":-4.1499996,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-2.5,"y":-3.6499999,"z":23.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-3.3,"y":-2.35,"z":26.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-3.3,"y":-1.8499998,"z":28.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-2.5,"y":-2.1499999,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-5.95,"y":-2.6999998,"z":9.533333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-5.15,"y":-2.9999998,"z":12.283333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-5.15,"y":-2.4999998,"z":15.033333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-5.95,"y":-1.1999999,"z":17.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-5.15,"y":-1.4999999,"z":20.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-5.95,"y":-0.1999999,"z":23.283333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-5.95,"y":0.3000001,"z":26.033333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-5.95,"y":0.8000001,"z":28.783333},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":-2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-5.15,"y":0.5000001,"z":31.533333},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":-2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":{"origin":{"x":-18.6,"y":-7.7,"z":7.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-8.2,"z":10.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-8.7,"z":13.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-9.2,"z":15.75},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-9.7,"z":18.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-10.2,"z":21.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-10.7,"z":24.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-11.2,"z":26.75},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-11.7,"z":29.5},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":{"origin":{"x":-18.6,"y":-12.2,"z":32.25},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-18.6,"y":-12.7,"z":35.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-12.7,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-13.2,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-13.7,"z":13.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-14.2,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-14.7,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-15.2,"z":21.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-15.7,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-16.199999,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-16.699999,"z":29.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-17.199999,"z":32.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-17.050001,"y":-17.699999,"z":35.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":1.3557161,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-10.05,"z":7.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-10.55,"z":10.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-11.55,"z":15.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-12.05,"z":18.7},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-13.05,"z":24.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-13.55,"z":26.95},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-14.55,"z":32.45},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-14.400001,"y":-15.05,"z":35.2},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.52863014,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-5.35,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-5.85,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-6.35,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-6.85,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-7.35,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-7.85,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-8.349999,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-8.849999,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-9.349999,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-9.849999,"z":32.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-14.400001,"y":-10.349999,"z":35.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.52863014,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-2.6999998,"z":7.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-3.1999998,"z":10.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-3.6999998,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-4.2,"z":15.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-4.7,"z":18.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-5.2,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-5.7,"z":24.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-6.2,"z":26.95},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-6.7,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-7.2,"z":32.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-17.050001,"y":-7.7,"z":35.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":1.3557161,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-20.95,"y":-3.4999998,"z":8.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":0.52863014},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-20.15,"y":-3.1999998,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":4.4886303},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-20.15,"y":-3.6999998,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":8.44863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-20.15,"y":-4.2,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":12.40863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-20.95,"y":-5.5,"z":19.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":16.36863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-20.95,"y":-6.0,"z":22.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":20.32863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-20.15,"y":-5.7,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":24.28863},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-20.95,"y":-7.0,"z":27.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":28.248629},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-20.15,"y":-6.7,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":32.208626},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":{"origin":{"x":-20.95,"y":-8.0,"z":33.366665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":2.4584975,"y":36.168625},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":{"origin":{"x":-20.15,"y":-7.7,"z":36.116665},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":2.4584975,"y":40.128624},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-23.6,"y":-6.1499996,"z":8.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":1.3557161},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-22.800001,"y":-5.85,"z":11.366667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":5.3157163},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-22.800001,"y":-6.35,"z":14.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":9.275716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-22.800001,"y":-6.85,"z":16.866667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":13.235716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-23.6,"y":-8.15,"z":19.616667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":17.195715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-23.6,"y":-8.65,"z":22.366667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":21.155716},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-22.800001,"y":-8.349999,"z":25.116667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":25.115715},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-23.6,"y":-9.65,"z":27.866667},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":29.075714},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":{"origin":{"x":-22.800001,"y":-9.349999,"z":30.616667},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":3.2855835,"y":33.035713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-23.6,"y":-10.65,"z":33.366665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":36.995712},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-23.6,"y":-11.15,"z":36.116665},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":3.2855835,"y":40.95571},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-10.05,"z":9.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":2.4584975},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-10.55,"z":12.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":6.4184976},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-11.05,"z":15.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":10.378497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-11.55,"z":17.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":14.338497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-12.05,"z":20.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":18.298498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-12.55,"z":23.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":22.2585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-13.05,"z":26.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":26.218498},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-13.55,"z":28.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":30.178497},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-14.05,"z":31.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":34.138496},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-14.55,"z":34.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":38.098495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":{"origin":{"x":-22.800001,"y":-15.05,"z":37.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":3.2855835,"y":42.058495},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-12.7,"z":9.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":3.2855835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-13.2,"z":12.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":7.2455835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-13.7,"z":15.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":11.205583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-14.2,"z":17.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":15.165583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-14.7,"z":20.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":19.125584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-15.2,"z":23.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":23.085585},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-15.7,"z":26.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":27.045584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-16.199999,"z":28.783333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":31.005583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-16.699999,"z":31.533333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":34.965584},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-17.199999,"z":34.283333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":38.925583},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":{"origin":{"x":-20.15,"y":-17.699999,"z":37.033333},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":2.4584975,"y":42.885582},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-15.85,"y":-7.1,"z":13.2},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":10.197128},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-15.85,"y":-5.6,"z":21.45},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":22.07713},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-15.85,"y":-4.1,"z":29.7},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.004673004,"y":33.957127},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]}],"connections":[],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2583.27","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"20.819268","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.0311e+7","unit":"€","definition":""},{"name":"return","value":"2.2088e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.818e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"276616.911111","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"53781.79","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.4854e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"232534","unit":"€/a","definition":""},{"name":"specific energy demand","value":"90.442561","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"44082.911111","unit":"€/a","definition":""},{"name":"heating energy demand","value":"83186","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"63366","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"70802","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "A sloped variant of the Nakagin Capsule Tower where the capsules have balconies and the towers are graduated in opposing directions. Each tower has a direction and every floor is stepped in this direction.", + "icon": "icons/nakagin-capsule-tower_slanted.svg", + "image": "images/nakagin-capsule-tower_slanted.png", + "variant": "Slanted", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -3.6999998, + "z": 34.083332 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -12.7, + "z": 39.583332 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.7, + "z": 7.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -7.2, + "z": 10.25 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -6.7, + "z": 13.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -6.2, + "z": 15.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -5.7, + "z": 18.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -5.2, + "z": 21.25 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -4.7, + "z": 24.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -4.2, + "z": 26.75 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -7.5, + "y": -3.6999998, + "z": 29.5 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -2.6999998, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -2.1999998, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -1.6999999, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -1.1999999, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -0.6999999, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -0.1999999, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": 0.3000001, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": 0.8000001, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.05, + "y": 1.3000001, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -5.35, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -4.85, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -4.35, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -3.85, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -3.35, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -2.85, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -2.35, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -1.8499998, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -1.3499998, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -10.05, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -9.55, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -8.55, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -8.05, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -7.0499997, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.7, + "y": -6.5499997, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -12.7, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -12.2, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -11.7, + "z": 13.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -11.2, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -10.7, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -10.2, + "z": 21.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -9.7, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -9.2, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.05, + "y": -8.7, + "z": 29.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": -1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -11.9, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -11.4, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -10.9, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -10.4, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -9.9, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -9.4, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -8.9, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -8.4, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -7.8999996, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -9.25, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -8.75, + "z": 11.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -8.25, + "z": 14.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -7.75, + "z": 16.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -7.25, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -6.75, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -6.25, + "z": 25.116667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -5.75, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -5.25, + "z": 30.616667 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.3, + "y": -5.35, + "z": 9.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -5.6499996, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -5.1499996, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.3, + "y": -3.85, + "z": 17.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -4.1499996, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -3.6499999, + "z": 23.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.3, + "y": -2.35, + "z": 26.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -3.3, + "y": -1.8499998, + "z": 28.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -2.5, + "y": -2.1499999, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.95, + "y": -2.6999998, + "z": 9.533333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -2.9999998, + "z": 12.283333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -2.4999998, + "z": 15.033333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.95, + "y": -1.1999999, + "z": 17.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.15, + "y": -1.4999999, + "z": 20.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.95, + "y": -0.1999999, + "z": 23.283333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.95, + "y": 0.3000001, + "z": 26.033333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.95, + "y": 0.8000001, + "z": 28.783333 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -5.15, + "y": 0.5000001, + "z": 31.533333 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": -2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -7.7, + "z": 7.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -8.2, + "z": 10.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -8.7, + "z": 13.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -9.2, + "z": 15.75 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -9.7, + "z": 18.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -10.2, + "z": 21.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -10.7, + "z": 24.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -11.2, + "z": 26.75 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -11.7, + "z": 29.5 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -12.2, + "z": 32.25 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -18.6, + "y": -12.7, + "z": 35.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -12.7, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -13.2, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -13.7, + "z": 13.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -14.2, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -14.7, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -15.2, + "z": 21.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -15.7, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -16.199999, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -16.699999, + "z": 29.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -17.199999, + "z": 32.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -17.699999, + "z": 35.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -10.05, + "z": 7.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -10.55, + "z": 10.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -11.55, + "z": 15.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -12.05, + "z": 18.7 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -13.05, + "z": 24.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -13.55, + "z": 26.95 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -14.55, + "z": 32.45 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -15.05, + "z": 35.2 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -5.35, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -5.85, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -6.35, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -6.85, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -7.35, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -7.85, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -8.349999, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -8.849999, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -9.349999, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -9.849999, + "z": 32.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -14.400001, + "y": -10.349999, + "z": 35.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.52863014, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -2.6999998, + "z": 7.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -3.1999998, + "z": 10.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -3.6999998, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -4.2, + "z": 15.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -4.7, + "z": 18.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -5.2, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -5.7, + "z": 24.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -6.2, + "z": 26.95 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -6.7, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -7.2, + "z": 32.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.050001, + "y": -7.7, + "z": 35.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 1.3557161, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.95, + "y": -3.4999998, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 0.52863014 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -3.1999998, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 4.4886303 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -3.6999998, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 8.44863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -4.2, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 12.40863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.95, + "y": -5.5, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 16.36863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.95, + "y": -6.0, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 20.32863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -5.7, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 24.28863 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.95, + "y": -7.0, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 28.248629 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -6.7, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 32.208626 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.95, + "y": -8.0, + "z": 33.366665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 36.168625 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -7.7, + "z": 36.116665 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 40.128624 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.6, + "y": -6.1499996, + "z": 8.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 1.3557161 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -5.85, + "z": 11.366667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 5.3157163 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -6.35, + "z": 14.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 9.275716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -6.85, + "z": 16.866667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 13.235716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.6, + "y": -8.15, + "z": 19.616667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 17.195715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.6, + "y": -8.65, + "z": 22.366667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 21.155716 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -8.349999, + "z": 25.116667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 25.115715 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.6, + "y": -9.65, + "z": 27.866667 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 29.075714 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -9.349999, + "z": 30.616667 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 33.035713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.6, + "y": -10.65, + "z": 33.366665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 36.995712 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -23.6, + "y": -11.15, + "z": 36.116665 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 40.95571 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -10.05, + "z": 9.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 2.4584975 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -10.55, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 6.4184976 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -11.05, + "z": 15.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 10.378497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -11.55, + "z": 17.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 14.338497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -12.05, + "z": 20.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 18.298498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -12.55, + "z": 23.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 22.2585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -13.05, + "z": 26.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 26.218498 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -13.55, + "z": 28.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 30.178497 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -14.05, + "z": 31.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 34.138496 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -14.55, + "z": 34.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 38.098495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.800001, + "y": -15.05, + "z": 37.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 3.2855835, + "y": 42.058495 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -12.7, + "z": 9.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 3.2855835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -13.2, + "z": 12.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 7.2455835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -13.7, + "z": 15.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 11.205583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -14.2, + "z": 17.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 15.165583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -14.7, + "z": 20.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 19.125584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -15.2, + "z": 23.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 23.085585 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -15.7, + "z": 26.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 27.045584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -16.199999, + "z": 28.783333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 31.005583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -16.699999, + "z": 31.533333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 34.965584 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -17.199999, + "z": 34.283333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 38.925583 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": { + "origin": { + "x": -20.15, + "y": -17.699999, + "z": 37.033333 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 2.4584975, + "y": 42.885582 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.85, + "y": -7.1, + "z": 13.2 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 10.197128 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.85, + "y": -5.6, + "z": 21.45 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 22.07713 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -15.85, + "y": -4.1, + "z": 29.7 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.004673004, + "y": 33.957127 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + } + ], + "connections": [], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2583.27", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "20.819268", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.0311e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "2.2088e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.818e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "276616.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "53781.79", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.4854e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "232534", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "90.442561", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "44082.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "83186", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "63366", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "70802", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_twisted.json b/assets/semio/design_nakagin-capsule-tower_twisted.json index fc2c8705e..48fa2ee53 100644 --- a/assets/semio/design_nakagin-capsule-tower_twisted.json +++ b/assets/semio/design_nakagin-capsule-tower_twisted.json @@ -1 +1,7477 @@ -{"name":"Nakagin Capsule Tower","description":"A twisted variant of the Nakagin Capsule Tower where the capsules are trapezoids and towers are round with the floors twisting in one direction.","icon":"icons/nakagin-capsule-tower_twisted.svg","image":"images/nakagin-capsule-tower_twisted.png","variant":"Twisted","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":267.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":87.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2157.63","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"21.247135","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"1.9389e+7","unit":"€","definition":""},{"name":"return","value":"1.8828e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.5882e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"244724.133333","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"45843.456667","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.1275e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"206070","unit":"€/a","definition":""},{"name":"specific energy demand","value":"94.229007","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"38654.133333","unit":"€/a","definition":""},{"name":"heating energy demand","value":"70686","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"54102","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"64658","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "A twisted variant of the Nakagin Capsule Tower where the capsules are trapezoids and towers are round with the floors twisting in one direction.", + "icon": "icons/nakagin-capsule-tower_twisted.svg", + "image": "images/nakagin-capsule-tower_twisted.png", + "variant": "Twisted", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 267.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 87.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2157.63", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "21.247135", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "1.9389e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "1.8828e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.5882e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "244724.133333", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "45843.456667", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.1275e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "206070", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "94.229007", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "38654.133333", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "70686", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "54102", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "64658", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/design_nakagin-capsule-tower_twisted_flat.json b/assets/semio/design_nakagin-capsule-tower_twisted_flat.json index 92d79c764..9015e6902 100644 --- a/assets/semio/design_nakagin-capsule-tower_twisted_flat.json +++ b/assets/semio/design_nakagin-capsule-tower_twisted_flat.json @@ -1 +1,7118 @@ -{"name":"Nakagin Capsule Tower","description":"A twisted variant of the Nakagin Capsule Tower where the capsules are trapezoids and towers are round with the floors twisting in one direction.","icon":"icons/nakagin-capsule-tower_twisted.svg","image":"images/nakagin-capsule-tower_twisted.png","variant":"Twisted","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":34.083332},"xAxis":{"x":0.9335804,"y":-0.35836795,"z":0.0},"yAxis":{"x":0.35836795,"y":0.9335804,"z":0.0}},"center":{"x":-1.9071069,"y":36.187103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":39.583332},"xAxis":{"x":0.8910065,"y":-0.45399052,"z":0.0},"yAxis":{"x":0.45399052,"y":0.8910065,"z":0.0}},"center":{"x":1.9071069,"y":44.1071},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":7.5},"xAxis":{"x":-0.052335955,"y":0.9986295,"z":0.0},"yAxis":{"x":-0.9986295,"y":-0.052335955,"z":0.0}},"center":{"x":-1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":10.25},"xAxis":{"x":-2.3554114E-10,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":-2.3554114E-10,"z":0.0}},"center":{"x":-1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":13.0},"xAxis":{"x":0.052335955,"y":0.9986295,"z":0.0},"yAxis":{"x":-0.9986295,"y":0.052335955,"z":0.0}},"center":{"x":-1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":15.75},"xAxis":{"x":0.104528464,"y":0.9945219,"z":0.0},"yAxis":{"x":-0.9945219,"y":0.104528464,"z":0.0}},"center":{"x":-1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":18.5},"xAxis":{"x":0.15643446,"y":0.98768836,"z":0.0},"yAxis":{"x":-0.98768836,"y":0.15643446,"z":0.0}},"center":{"x":-1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":21.25},"xAxis":{"x":0.20791169,"y":0.9781476,"z":0.0},"yAxis":{"x":-0.9781476,"y":0.20791169,"z":0.0}},"center":{"x":-1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":24.0},"xAxis":{"x":0.25881904,"y":0.9659258,"z":0.0},"yAxis":{"x":-0.9659258,"y":0.25881904,"z":0.0}},"center":{"x":-1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":26.75},"xAxis":{"x":0.309017,"y":0.95105654,"z":0.0},"yAxis":{"x":-0.95105654,"y":0.309017,"z":0.0}},"center":{"x":-1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-8.5,"y":-7.7,"z":29.5},"xAxis":{"x":0.35836795,"y":0.9335804,"z":0.0},"yAxis":{"x":-0.9335804,"y":0.35836795,"z":0.0}},"center":{"x":-1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-9.820534,"y":-4.768862,"z":7.7},"xAxis":{"x":0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":-1.4286158,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-9.66532,"y":-4.7037673,"z":10.45},"xAxis":{"x":0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":-1.4286158,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-9.506912,"y":-4.6468854,"z":13.2},"xAxis":{"x":0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":-1.4286158,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-9.345745,"y":-4.598372,"z":15.95},"xAxis":{"x":0.9596648,"y":0.28114665,"z":0.0},"yAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0}},"center":{"x":-1.4286158,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-9.18226,"y":-4.5583596,"z":18.7},"xAxis":{"x":0.9730637,"y":0.23053637,"z":0.0},"yAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0}},"center":{"x":-1.4286158,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-9.016904,"y":-4.5269585,"z":21.45},"xAxis":{"x":0.9837955,"y":0.17929421,"z":0.0},"yAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0}},"center":{"x":-1.4286158,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-8.850131,"y":-4.5042543,"z":24.2},"xAxis":{"x":0.99183077,"y":0.1275606,"z":0.0},"yAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0}},"center":{"x":-1.4286158,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-8.682399,"y":-4.4903097,"z":26.95},"xAxis":{"x":0.9971475,"y":0.07547738,"z":0.0},"yAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0}},"center":{"x":-1.4286158,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-8.514167,"y":-4.4851623,"z":29.7},"xAxis":{"x":0.9997311,"y":0.023187257,"z":0.0},"yAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0}},"center":{"x":-1.4286158,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.553115,"y":-6.693087,"z":7.7},"xAxis":{"x":0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":-0.5593769,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.496233,"y":-6.5346794,"z":10.45},"xAxis":{"x":0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":-0.5593769,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.431138,"y":-6.379466,"z":13.2},"xAxis":{"x":0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":-0.5593769,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.358009,"y":-6.227872,"z":15.95},"xAxis":{"x":0.47452843,"y":0.88024014,"z":0.0},"yAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0}},"center":{"x":-0.5593769,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.277048,"y":-6.0803127,"z":18.7},"xAxis":{"x":0.51994634,"y":0.85419893,"z":0.0},"yAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0}},"center":{"x":-0.5593769,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.188474,"y":-5.937193,"z":21.45},"xAxis":{"x":0.5639391,"y":0.8258164,"z":0.0},"yAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0}},"center":{"x":-0.5593769,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-11.092531,"y":-5.798905,"z":24.2},"xAxis":{"x":0.6063861,"y":0.79517037,"z":0.0},"yAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0}},"center":{"x":-0.5593769,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-10.989483,"y":-5.6658278,"z":26.95},"xAxis":{"x":0.6471711,"y":0.7623448,"z":0.0},"yAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0}},"center":{"x":-0.5593769,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-10.879611,"y":-5.538326,"z":29.7},"xAxis":{"x":0.6861822,"y":0.7274297,"z":0.0},"yAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0}},"center":{"x":-0.5593769,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.431138,"y":-9.020534,"z":7.7},"xAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":-0.5016618,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.496233,"y":-8.86532,"z":10.45},"xAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":-0.5016618,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.601628,"y":-8.545745,"z":15.95},"xAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0},"yAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0}},"center":{"x":-0.5016618,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.641641,"y":-8.382259,"z":18.7},"xAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0},"yAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0}},"center":{"x":-0.5016618,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.695745,"y":-8.050131,"z":24.2},"xAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0},"yAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0}},"center":{"x":-0.5016618,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-11.70969,"y":-7.8823986,"z":26.95},"xAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0},"yAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0}},"center":{"x":-0.5016618,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.506912,"y":-10.753115,"z":7.7},"xAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":-1.284328,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.66532,"y":-10.696233,"z":10.45},"xAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":-1.284328,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.820534,"y":-10.631138,"z":13.2},"xAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":-1.284328,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-9.972128,"y":-10.558009,"z":15.95},"xAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0},"yAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0}},"center":{"x":-1.284328,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-10.119687,"y":-10.477048,"z":18.7},"xAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0},"yAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0}},"center":{"x":-1.284328,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-10.262807,"y":-10.3884735,"z":21.45},"xAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0},"yAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0}},"center":{"x":-1.284328,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-10.401095,"y":-10.292531,"z":24.2},"xAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0},"yAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0}},"center":{"x":-1.284328,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-10.534172,"y":-10.189483,"z":26.95},"xAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0},"yAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0}},"center":{"x":-1.284328,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-10.661674,"y":-10.079611,"z":29.7},"xAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0},"yAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0}},"center":{"x":-1.284328,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.1794662,"y":-10.631138,"z":8.616667},"xAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":-2.385598,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.3346796,"y":-10.696233,"z":11.366667},"xAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":-2.385598,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.4930873,"y":-10.753115,"z":14.116667},"xAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":-2.385598,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.654255,"y":-10.801628,"z":16.866667},"xAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0},"yAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0}},"center":{"x":-2.385598,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.817741,"y":-10.84164,"z":19.616667},"xAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0},"yAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0}},"center":{"x":-2.385598,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-7.9830966,"y":-10.873041,"z":22.366667},"xAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0},"yAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0}},"center":{"x":-2.385598,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-8.149869,"y":-10.895745,"z":25.116667},"xAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0},"yAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0}},"center":{"x":-2.385598,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-8.317601,"y":-10.90969,"z":27.866667},"xAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0},"yAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0}},"center":{"x":-2.385598,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-8.485833,"y":-10.914837,"z":30.616667},"xAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0},"yAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0}},"center":{"x":-2.385598,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.4468856,"y":-8.706912,"z":8.616667},"xAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":-3.2548368,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.5037675,"y":-8.86532,"z":11.366667},"xAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":-3.2548368,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.568862,"y":-9.020534,"z":14.116667},"xAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":-3.2548368,"y":10.449885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.64199,"y":-9.172128,"z":16.866667},"xAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0},"yAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0}},"center":{"x":-3.2548368,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.7229524,"y":-9.319687,"z":19.616667},"xAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0},"yAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0}},"center":{"x":-3.2548368,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.811526,"y":-9.462807,"z":22.366667},"xAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0},"yAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0}},"center":{"x":-3.2548368,"y":22.329885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-5.907469,"y":-9.601095,"z":25.116667},"xAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0},"yAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0}},"center":{"x":-3.2548368,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.010517,"y":-9.734172,"z":27.866667},"xAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0},"yAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0}},"center":{"x":-3.2548368,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.1203895,"y":-9.861673,"z":30.616667},"xAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0},"yAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0}},"center":{"x":-3.2548368,"y":34.209885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.568862,"y":-6.379466,"z":9.533333},"xAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":-3.312552,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.5037675,"y":-6.5346794,"z":12.283333},"xAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":-3.312552,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.4468856,"y":-6.693087,"z":15.033333},"xAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":-3.312552,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.398372,"y":-6.8542547,"z":17.783333},"xAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0},"yAxis":{"x":0.9596648,"y":0.28114665,"z":0.0}},"center":{"x":-3.312552,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.35836,"y":-7.0177407,"z":20.533333},"xAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0},"yAxis":{"x":0.9730637,"y":0.23053637,"z":0.0}},"center":{"x":-3.312552,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.3269587,"y":-7.1830964,"z":23.283333},"xAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0},"yAxis":{"x":0.9837955,"y":0.17929421,"z":0.0}},"center":{"x":-3.312552,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.3042545,"y":-7.349869,"z":26.033333},"xAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0},"yAxis":{"x":0.99183077,"y":0.1275606,"z":0.0}},"center":{"x":-3.312552,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-5.29031,"y":-7.517601,"z":28.783333},"xAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0},"yAxis":{"x":0.9971475,"y":0.07547738,"z":0.0}},"center":{"x":-3.312552,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-5.2851624,"y":-7.6858335,"z":31.533333},"xAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0},"yAxis":{"x":0.9997311,"y":0.023187257,"z":0.0}},"center":{"x":-3.312552,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.4930873,"y":-4.6468854,"z":9.533333},"xAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":-2.5298858,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-7.3346796,"y":-4.7037673,"z":12.283333},"xAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":-2.5298858,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-7.1794662,"y":-4.768862,"z":15.033333},"xAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":-2.5298858,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-7.027872,"y":-4.84199,"z":17.783333},"xAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0},"yAxis":{"x":0.47452843,"y":0.88024014,"z":0.0}},"center":{"x":-2.5298858,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-6.880313,"y":-4.922952,"z":20.533333},"xAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0},"yAxis":{"x":0.51994634,"y":0.85419893,"z":0.0}},"center":{"x":-2.5298858,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.737193,"y":-5.0115256,"z":23.283333},"xAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0},"yAxis":{"x":0.5639391,"y":0.8258164,"z":0.0}},"center":{"x":-2.5298858,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.598905,"y":-5.1074686,"z":26.033333},"xAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0},"yAxis":{"x":0.6063861,"y":0.79517037,"z":0.0}},"center":{"x":-2.5298858,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-6.465828,"y":-5.210517,"z":28.783333},"xAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0},"yAxis":{"x":0.6471711,"y":0.7623448,"z":0.0}},"center":{"x":-2.5298858,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c0","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-6.338326,"y":-5.3203893,"z":31.533333},"xAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0},"yAxis":{"x":0.6861822,"y":0.7274297,"z":0.0}},"center":{"x":-2.5298858,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":7.5},"xAxis":{"x":0.052335955,"y":-0.9986295,"z":0.0},"yAxis":{"x":0.9986295,"y":0.052335955,"z":0.0}},"center":{"x":1.9071069,"y":1.9071069},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"b","unit":"","definition":""}]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":10.25},"xAxis":{"x":2.3554114E-10,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":2.3554114E-10,"z":0.0}},"center":{"x":1.9071069,"y":5.867107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":13.0},"xAxis":{"x":-0.052335955,"y":-0.9986295,"z":0.0},"yAxis":{"x":0.9986295,"y":-0.052335955,"z":0.0}},"center":{"x":1.9071069,"y":9.827106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":15.75},"xAxis":{"x":-0.104528464,"y":-0.9945219,"z":0.0},"yAxis":{"x":0.9945219,"y":-0.104528464,"z":0.0}},"center":{"x":1.9071069,"y":13.7871065},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":18.5},"xAxis":{"x":-0.15643446,"y":-0.98768836,"z":0.0},"yAxis":{"x":0.98768836,"y":-0.15643446,"z":0.0}},"center":{"x":1.9071069,"y":17.747107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":21.25},"xAxis":{"x":-0.20791169,"y":-0.9781476,"z":0.0},"yAxis":{"x":0.9781476,"y":-0.20791169,"z":0.0}},"center":{"x":1.9071069,"y":21.707108},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":24.0},"xAxis":{"x":-0.25881904,"y":-0.9659258,"z":0.0},"yAxis":{"x":0.9659258,"y":-0.25881904,"z":0.0}},"center":{"x":1.9071069,"y":25.667107},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":26.75},"xAxis":{"x":-0.309017,"y":-0.95105654,"z":0.0},"yAxis":{"x":0.95105654,"y":-0.309017,"z":0.0}},"center":{"x":1.9071069,"y":29.627106},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":29.5},"xAxis":{"x":-0.35836795,"y":-0.9335804,"z":0.0},"yAxis":{"x":0.9335804,"y":-0.35836795,"z":0.0}},"center":{"x":1.9071069,"y":33.587105},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":32.25},"xAxis":{"x":-0.40673664,"y":-0.9135454,"z":0.0},"yAxis":{"x":0.9135454,"y":-0.40673664,"z":0.0}},"center":{"x":1.9071069,"y":37.547104},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":{"origin":{"x":-19.6,"y":-7.7,"z":35.0},"xAxis":{"x":-0.45399052,"y":-0.8910065,"z":0.0},"yAxis":{"x":0.8910065,"y":-0.45399052,"z":0.0}},"center":{"x":1.9071069,"y":41.507103},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.279467,"y":-10.631138,"z":7.7},"xAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":1.4286158,"y":3.312552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.43468,"y":-10.696233,"z":10.45},"xAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":1.4286158,"y":7.272552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.593088,"y":-10.753115,"z":13.2},"xAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":1.4286158,"y":11.232552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.754255,"y":-10.801628,"z":15.95},"xAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0},"yAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0}},"center":{"x":1.4286158,"y":15.192552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-18.917742,"y":-10.84164,"z":18.7},"xAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0},"yAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0}},"center":{"x":1.4286158,"y":19.152552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.083097,"y":-10.873041,"z":21.45},"xAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0},"yAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0}},"center":{"x":1.4286158,"y":23.112553},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.24987,"y":-10.895745,"z":24.2},"xAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0},"yAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0}},"center":{"x":1.4286158,"y":27.072552},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.417603,"y":-10.90969,"z":26.95},"xAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0},"yAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0}},"center":{"x":1.4286158,"y":31.03255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.585835,"y":-10.914837,"z":29.7},"xAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0},"yAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0}},"center":{"x":1.4286158,"y":34.99255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.754105,"y":-10.911173,"z":32.45},"xAxis":{"x":-0.99957454,"y":0.029166406,"z":0.0},"yAxis":{"x":-0.029166406,"y":-0.99957454,"z":0.0}},"center":{"x":1.4286158,"y":38.95255},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.921953,"y":-10.898706,"z":35.2},"xAxis":{"x":-0.99667823,"y":0.08144013,"z":0.0},"yAxis":{"x":-0.08144013,"y":-0.99667823,"z":0.0}},"center":{"x":1.4286158,"y":42.912548},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-16.546886,"y":-8.706912,"z":7.7},"xAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":0.5593769,"y":2.5298858},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-16.603767,"y":-8.86532,"z":10.45},"xAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":0.5593769,"y":6.489886},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-16.741991,"y":-9.172128,"z":15.95},"xAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0},"yAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0}},"center":{"x":0.5593769,"y":14.409885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-16.822952,"y":-9.319687,"z":18.7},"xAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0},"yAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0}},"center":{"x":0.5593769,"y":18.369884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-17.00747,"y":-9.601095,"z":24.2},"xAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0},"yAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0}},"center":{"x":0.5593769,"y":26.289885},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-17.110518,"y":-9.734172,"z":26.95},"xAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0},"yAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0}},"center":{"x":0.5593769,"y":30.249884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-17.336784,"y":-9.983251,"z":32.45},"xAxis":{"x":-0.72331256,"y":-0.69052076,"z":0.0},"yAxis":{"x":0.69052076,"y":-0.72331256,"z":0.0}},"center":{"x":0.5593769,"y":38.169884},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-17.459381,"y":-10.098569,"z":35.2},"xAxis":{"x":-0.75846034,"y":-0.6517192,"z":0.0},"yAxis":{"x":0.6517192,"y":-0.75846034,"z":0.0}},"center":{"x":0.5593769,"y":42.129883},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.668861,"y":-6.379466,"z":7.7},"xAxis":{"x":0.42780992,"y":-0.90386873,"z":0.0},"yAxis":{"x":0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":0.5016618,"y":1.4286158},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.603767,"y":-6.5346794,"z":10.45},"xAxis":{"x":0.37991878,"y":-0.92501986,"z":0.0},"yAxis":{"x":0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":0.5016618,"y":5.3886156},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.546886,"y":-6.693087,"z":13.2},"xAxis":{"x":0.33098632,"y":-0.9436356,"z":0.0},"yAxis":{"x":0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":0.5016618,"y":9.348616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.498373,"y":-6.8542547,"z":15.95},"xAxis":{"x":0.28114665,"y":-0.9596648,"z":0.0},"yAxis":{"x":0.9596648,"y":0.28114665,"z":0.0}},"center":{"x":0.5016618,"y":13.308615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.45836,"y":-7.0177407,"z":18.7},"xAxis":{"x":0.23053637,"y":-0.9730637,"z":0.0},"yAxis":{"x":0.9730637,"y":0.23053637,"z":0.0}},"center":{"x":0.5016618,"y":17.268616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.426958,"y":-7.1830964,"z":21.45},"xAxis":{"x":0.17929421,"y":-0.9837955,"z":0.0},"yAxis":{"x":0.9837955,"y":0.17929421,"z":0.0}},"center":{"x":0.5016618,"y":21.228617},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.404255,"y":-7.349869,"z":24.2},"xAxis":{"x":0.1275606,"y":-0.99183077,"z":0.0},"yAxis":{"x":0.99183077,"y":0.1275606,"z":0.0}},"center":{"x":0.5016618,"y":25.188616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.39031,"y":-7.517601,"z":26.95},"xAxis":{"x":0.07547738,"y":-0.9971475,"z":0.0},"yAxis":{"x":0.9971475,"y":0.07547738,"z":0.0}},"center":{"x":0.5016618,"y":29.148615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.385162,"y":-7.6858335,"z":29.7},"xAxis":{"x":0.023187257,"y":-0.9997311,"z":0.0},"yAxis":{"x":0.9997311,"y":0.023187257,"z":0.0}},"center":{"x":0.5016618,"y":33.108616},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.388826,"y":-7.8541045,"z":32.45},"xAxis":{"x":-0.029166406,"y":-0.99957454,"z":0.0},"yAxis":{"x":0.99957454,"y":-0.029166406,"z":0.0}},"center":{"x":0.5016618,"y":37.068615},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-16.401293,"y":-8.021953,"z":35.2},"xAxis":{"x":-0.08144013,"y":-0.99667823,"z":0.0},"yAxis":{"x":0.99667823,"y":-0.08144013,"z":0.0}},"center":{"x":0.5016618,"y":41.028614},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-18.593088,"y":-4.6468854,"z":7.7},"xAxis":{"x":0.9436356,"y":-0.33098632,"z":0.0},"yAxis":{"x":0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":1.284328,"y":0.5593769},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-18.43468,"y":-4.7037673,"z":10.45},"xAxis":{"x":0.92501986,"y":-0.37991878,"z":0.0},"yAxis":{"x":0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":1.284328,"y":4.5193768},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-18.279467,"y":-4.768862,"z":13.2},"xAxis":{"x":0.90386873,"y":-0.42780992,"z":0.0},"yAxis":{"x":0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":1.284328,"y":8.479377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-18.127872,"y":-4.84199,"z":15.95},"xAxis":{"x":0.88024014,"y":-0.47452843,"z":0.0},"yAxis":{"x":0.47452843,"y":0.88024014,"z":0.0}},"center":{"x":1.284328,"y":12.439377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.980312,"y":-4.922952,"z":18.7},"xAxis":{"x":0.85419893,"y":-0.51994634,"z":0.0},"yAxis":{"x":0.51994634,"y":0.85419893,"z":0.0}},"center":{"x":1.284328,"y":16.399378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.837193,"y":-5.0115256,"z":21.45},"xAxis":{"x":0.8258164,"y":-0.5639391,"z":0.0},"yAxis":{"x":0.5639391,"y":0.8258164,"z":0.0}},"center":{"x":1.284328,"y":20.359379},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.698906,"y":-5.1074686,"z":24.2},"xAxis":{"x":0.79517037,"y":-0.6063861,"z":0.0},"yAxis":{"x":0.6063861,"y":0.79517037,"z":0.0}},"center":{"x":1.284328,"y":24.319378},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.565828,"y":-5.210517,"z":26.95},"xAxis":{"x":0.7623448,"y":-0.6471711,"z":0.0},"yAxis":{"x":0.6471711,"y":0.7623448,"z":0.0}},"center":{"x":1.284328,"y":28.279377},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.438326,"y":-5.3203893,"z":29.7},"xAxis":{"x":0.7274297,"y":-0.6861822,"z":0.0},"yAxis":{"x":0.6861822,"y":0.7274297,"z":0.0}},"center":{"x":1.284328,"y":32.239372},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.31675,"y":-5.436784,"z":32.45},"xAxis":{"x":0.69052076,"y":-0.72331256,"z":0.0},"yAxis":{"x":0.72331256,"y":0.69052076,"z":0.0}},"center":{"x":1.284328,"y":36.19937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-17.201431,"y":-5.5593815,"z":35.2},"xAxis":{"x":0.6517192,"y":-0.75846034,"z":0.0},"yAxis":{"x":0.75846034,"y":0.6517192,"z":0.0}},"center":{"x":1.284328,"y":40.15937},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-20.920534,"y":-4.768862,"z":8.616667},"xAxis":{"x":0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0}},"center":{"x":2.385598,"y":0.5016618},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.76532,"y":-4.7037673,"z":11.366667},"xAxis":{"x":0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0}},"center":{"x":2.385598,"y":4.461662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.606913,"y":-4.6468854,"z":14.116667},"xAxis":{"x":0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0}},"center":{"x":2.385598,"y":8.421661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-20.445745,"y":-4.598372,"z":16.866667},"xAxis":{"x":0.9596648,"y":0.28114665,"z":0.0},"yAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0}},"center":{"x":2.385598,"y":12.381661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-20.282259,"y":-4.5583596,"z":19.616667},"xAxis":{"x":0.9730637,"y":0.23053637,"z":0.0},"yAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0}},"center":{"x":2.385598,"y":16.341661},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-20.116903,"y":-4.5269585,"z":22.366667},"xAxis":{"x":0.9837955,"y":0.17929421,"z":0.0},"yAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0}},"center":{"x":2.385598,"y":20.301662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.95013,"y":-4.5042543,"z":25.116667},"xAxis":{"x":0.99183077,"y":0.1275606,"z":0.0},"yAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0}},"center":{"x":2.385598,"y":24.261662},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-19.782398,"y":-4.4903097,"z":27.866667},"xAxis":{"x":0.9971475,"y":0.07547738,"z":0.0},"yAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0}},"center":{"x":2.385598,"y":28.22166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.614166,"y":-4.4851623,"z":30.616667},"xAxis":{"x":0.9997311,"y":0.023187257,"z":0.0},"yAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0}},"center":{"x":2.385598,"y":32.18166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":{"origin":{"x":-19.445896,"y":-4.4888268,"z":33.366665},"xAxis":{"x":0.99957454,"y":-0.029166406,"z":0.0},"yAxis":{"x":0.029166406,"y":0.99957454,"z":0.0}},"center":{"x":2.385598,"y":36.14166},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":{"origin":{"x":-19.278048,"y":-4.5012927,"z":36.116665},"xAxis":{"x":0.99667823,"y":-0.08144013,"z":0.0},"yAxis":{"x":0.08144013,"y":0.99667823,"z":0.0}},"center":{"x":2.385598,"y":40.101658},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-22.653114,"y":-6.693087,"z":8.616667},"xAxis":{"x":0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0}},"center":{"x":3.2548368,"y":1.284328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-22.596233,"y":-6.5346794,"z":11.366667},"xAxis":{"x":0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0}},"center":{"x":3.2548368,"y":5.244328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-22.53114,"y":-6.379466,"z":14.116667},"xAxis":{"x":0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0}},"center":{"x":3.2548368,"y":9.204328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-22.45801,"y":-6.227872,"z":16.866667},"xAxis":{"x":0.47452843,"y":0.88024014,"z":0.0},"yAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0}},"center":{"x":3.2548368,"y":13.164328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-22.377048,"y":-6.0803127,"z":19.616667},"xAxis":{"x":0.51994634,"y":0.85419893,"z":0.0},"yAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0}},"center":{"x":3.2548368,"y":17.124329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-22.288475,"y":-5.937193,"z":22.366667},"xAxis":{"x":0.5639391,"y":0.8258164,"z":0.0},"yAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0}},"center":{"x":3.2548368,"y":21.08433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-22.192532,"y":-5.798905,"z":25.116667},"xAxis":{"x":0.6063861,"y":0.79517037,"z":0.0},"yAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0}},"center":{"x":3.2548368,"y":25.044329},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-22.089483,"y":-5.6658278,"z":27.866667},"xAxis":{"x":0.6471711,"y":0.7623448,"z":0.0},"yAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0}},"center":{"x":3.2548368,"y":29.004328},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":{"origin":{"x":-21.97961,"y":-5.538326,"z":30.616667},"xAxis":{"x":0.6861822,"y":0.7274297,"z":0.0},"yAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0}},"center":{"x":3.2548368,"y":32.964325},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-21.863216,"y":-5.416749,"z":33.366665},"xAxis":{"x":0.72331256,"y":0.69052076,"z":0.0},"yAxis":{"x":-0.69052076,"y":0.72331256,"z":0.0}},"center":{"x":3.2548368,"y":36.924324},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":{"origin":{"x":-21.74062,"y":-5.3014307,"z":36.116665},"xAxis":{"x":0.75846034,"y":0.6517192,"z":0.0},"yAxis":{"x":-0.6517192,"y":0.75846034,"z":0.0}},"center":{"x":3.2548368,"y":40.884323},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.53114,"y":-9.020534,"z":9.533333},"xAxis":{"x":-0.42780992,"y":0.90386873,"z":0.0},"yAxis":{"x":-0.90386873,"y":-0.42780992,"z":0.0}},"center":{"x":3.312552,"y":2.385598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.596233,"y":-8.86532,"z":12.283333},"xAxis":{"x":-0.37991878,"y":0.92501986,"z":0.0},"yAxis":{"x":-0.92501986,"y":-0.37991878,"z":0.0}},"center":{"x":3.312552,"y":6.345598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.653114,"y":-8.706912,"z":15.033333},"xAxis":{"x":-0.33098632,"y":0.9436356,"z":0.0},"yAxis":{"x":-0.9436356,"y":-0.33098632,"z":0.0}},"center":{"x":3.312552,"y":10.305597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.701628,"y":-8.545745,"z":17.783333},"xAxis":{"x":-0.28114665,"y":0.9596648,"z":0.0},"yAxis":{"x":-0.9596648,"y":-0.28114665,"z":0.0}},"center":{"x":3.312552,"y":14.265598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.74164,"y":-8.382259,"z":20.533333},"xAxis":{"x":-0.23053637,"y":0.9730637,"z":0.0},"yAxis":{"x":-0.9730637,"y":-0.23053637,"z":0.0}},"center":{"x":3.312552,"y":18.225597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.773043,"y":-8.216904,"z":23.283333},"xAxis":{"x":-0.17929421,"y":0.9837955,"z":0.0},"yAxis":{"x":-0.9837955,"y":-0.17929421,"z":0.0}},"center":{"x":3.312552,"y":22.185598},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.795746,"y":-8.050131,"z":26.033333},"xAxis":{"x":-0.1275606,"y":0.99183077,"z":0.0},"yAxis":{"x":-0.99183077,"y":-0.1275606,"z":0.0}},"center":{"x":3.312552,"y":26.145597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.80969,"y":-7.8823986,"z":28.783333},"xAxis":{"x":-0.07547738,"y":0.9971475,"z":0.0},"yAxis":{"x":-0.9971475,"y":-0.07547738,"z":0.0}},"center":{"x":3.312552,"y":30.105597},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.814838,"y":-7.714166,"z":31.533333},"xAxis":{"x":-0.023187257,"y":0.9997311,"z":0.0},"yAxis":{"x":-0.9997311,"y":-0.023187257,"z":0.0}},"center":{"x":3.312552,"y":34.065594},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.811174,"y":-7.545895,"z":34.283333},"xAxis":{"x":0.029166406,"y":0.99957454,"z":0.0},"yAxis":{"x":-0.99957454,"y":0.029166406,"z":0.0}},"center":{"x":3.312552,"y":38.025593},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":{"origin":{"x":-22.798708,"y":-7.3780465,"z":37.033333},"xAxis":{"x":0.08144013,"y":0.99667823,"z":0.0},"yAxis":{"x":-0.99667823,"y":0.08144013,"z":0.0}},"center":{"x":3.312552,"y":41.98559},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-20.606913,"y":-10.753115,"z":9.533333},"xAxis":{"x":-0.9436356,"y":0.33098632,"z":0.0},"yAxis":{"x":-0.33098632,"y":-0.9436356,"z":0.0}},"center":{"x":2.5298858,"y":3.2548368},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f0_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-20.76532,"y":-10.696233,"z":12.283333},"xAxis":{"x":-0.92501986,"y":0.37991878,"z":0.0},"yAxis":{"x":-0.37991878,"y":-0.92501986,"z":0.0}},"center":{"x":2.5298858,"y":7.214837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f1_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-20.920534,"y":-10.631138,"z":15.033333},"xAxis":{"x":-0.90386873,"y":0.42780992,"z":0.0},"yAxis":{"x":-0.42780992,"y":-0.90386873,"z":0.0}},"center":{"x":2.5298858,"y":11.174836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.072128,"y":-10.558009,"z":17.783333},"xAxis":{"x":-0.88024014,"y":0.47452843,"z":0.0},"yAxis":{"x":-0.47452843,"y":-0.88024014,"z":0.0}},"center":{"x":2.5298858,"y":15.134836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f3_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.219688,"y":-10.477048,"z":20.533333},"xAxis":{"x":-0.85419893,"y":0.51994634,"z":0.0},"yAxis":{"x":-0.51994634,"y":-0.85419893,"z":0.0}},"center":{"x":2.5298858,"y":19.094835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f4_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.362808,"y":-10.3884735,"z":23.283333},"xAxis":{"x":-0.8258164,"y":0.5639391,"z":0.0},"yAxis":{"x":-0.5639391,"y":-0.8258164,"z":0.0}},"center":{"x":2.5298858,"y":23.054836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.501095,"y":-10.292531,"z":26.033333},"xAxis":{"x":-0.79517037,"y":0.6063861,"z":0.0},"yAxis":{"x":-0.6063861,"y":-0.79517037,"z":0.0}},"center":{"x":2.5298858,"y":27.014835},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f6_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.634172,"y":-10.189483,"z":28.783333},"xAxis":{"x":-0.7623448,"y":0.6471711,"z":0.0},"yAxis":{"x":-0.6471711,"y":-0.7623448,"z":0.0}},"center":{"x":2.5298858,"y":30.974834},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f7_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.761675,"y":-10.079611,"z":31.533333},"xAxis":{"x":-0.7274297,"y":0.6861822,"z":0.0},"yAxis":{"x":-0.6861822,"y":-0.7274297,"z":0.0}},"center":{"x":2.5298858,"y":34.934837},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.883251,"y":-9.963216,"z":34.283333},"xAxis":{"x":-0.69052076,"y":0.72331256,"z":0.0},"yAxis":{"x":-0.72331256,"y":-0.69052076,"z":0.0}},"center":{"x":2.5298858,"y":38.894836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f9_b_c1","unit":"","definition":""}]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":{"origin":{"x":-21.99857,"y":-9.840618,"z":37.033333},"xAxis":{"x":-0.6517192,"y":0.75846034,"z":0.0},"yAxis":{"x":-0.75846034,"y":-0.6517192,"z":0.0}},"center":{"x":2.5298858,"y":42.854836},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f10_b_c1","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-17.286348,"y":-8.871574,"z":13.2},"xAxis":{"x":0.9821934,"y":0.1878725,"z":0.0},"yAxis":{"x":-0.1878725,"y":0.9821934,"z":0.0}},"center":{"x":0.018135905,"y":10.147437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f2_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-17.361448,"y":-7.482663,"z":21.45},"xAxis":{"x":0.99949074,"y":0.031910583,"z":0.0},"yAxis":{"x":-0.031910583,"y":0.99949074,"z":0.0}},"center":{"x":0.018135905,"y":22.027437},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f5_b_c0","unit":"","definition":""}]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":{"origin":{"x":-17.21835,"y":-6.099103,"z":29.7},"xAxis":{"x":0.99217725,"y":-0.12483711,"z":0.0},"yAxis":{"x":0.12483711,"y":0.99217725,"z":0.0}},"center":{"x":0.018135905,"y":33.907433},"hidden":false,"locked":false,"qualities":[{"name":"semio.parent","value":"t_f8_b_c0","unit":"","definition":""}]}],"connections":[],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2157.63","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"21.247135","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"1.9389e+7","unit":"€","definition":""},{"name":"return","value":"1.8828e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.5882e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"244724.133333","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"45843.456667","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.1275e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"206070","unit":"€/a","definition":""},{"name":"specific energy demand","value":"94.229007","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"38654.133333","unit":"€/a","definition":""},{"name":"heating energy demand","value":"70686","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"54102","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"64658","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]} \ No newline at end of file +{ + "name": "Nakagin Capsule Tower", + "description": "A twisted variant of the Nakagin Capsule Tower where the capsules are trapezoids and towers are round with the floors twisting in one direction.", + "icon": "icons/nakagin-capsule-tower_twisted.svg", + "image": "images/nakagin-capsule-tower_twisted.png", + "variant": "Twisted", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 34.083332 + }, + "xAxis": { + "x": 0.9335804, + "y": -0.35836795, + "z": 0.0 + }, + "yAxis": { + "x": 0.35836795, + "y": 0.9335804, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 36.187103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 39.583332 + }, + "xAxis": { + "x": 0.8910065, + "y": -0.45399052, + "z": 0.0 + }, + "yAxis": { + "x": 0.45399052, + "y": 0.8910065, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 44.1071 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 7.5 + }, + "xAxis": { + "x": -0.052335955, + "y": 0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986295, + "y": -0.052335955, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 10.25 + }, + "xAxis": { + "x": -2.3554114e-10, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": -2.3554114e-10, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 13.0 + }, + "xAxis": { + "x": 0.052335955, + "y": 0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": -0.9986295, + "y": 0.052335955, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 15.75 + }, + "xAxis": { + "x": 0.104528464, + "y": 0.9945219, + "z": 0.0 + }, + "yAxis": { + "x": -0.9945219, + "y": 0.104528464, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 18.5 + }, + "xAxis": { + "x": 0.15643446, + "y": 0.98768836, + "z": 0.0 + }, + "yAxis": { + "x": -0.98768836, + "y": 0.15643446, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 21.25 + }, + "xAxis": { + "x": 0.20791169, + "y": 0.9781476, + "z": 0.0 + }, + "yAxis": { + "x": -0.9781476, + "y": 0.20791169, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 24.0 + }, + "xAxis": { + "x": 0.25881904, + "y": 0.9659258, + "z": 0.0 + }, + "yAxis": { + "x": -0.9659258, + "y": 0.25881904, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 26.75 + }, + "xAxis": { + "x": 0.309017, + "y": 0.95105654, + "z": 0.0 + }, + "yAxis": { + "x": -0.95105654, + "y": 0.309017, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -8.5, + "y": -7.7, + "z": 29.5 + }, + "xAxis": { + "x": 0.35836795, + "y": 0.9335804, + "z": 0.0 + }, + "yAxis": { + "x": -0.9335804, + "y": 0.35836795, + "z": 0.0 + } + }, + "center": { + "x": -1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.820534, + "y": -4.768862, + "z": 7.7 + }, + "xAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.66532, + "y": -4.7037673, + "z": 10.45 + }, + "xAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.506912, + "y": -4.6468854, + "z": 13.2 + }, + "xAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.345745, + "y": -4.598372, + "z": 15.95 + }, + "xAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.18226, + "y": -4.5583596, + "z": 18.7 + }, + "xAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -9.016904, + "y": -4.5269585, + "z": 21.45 + }, + "xAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.850131, + "y": -4.5042543, + "z": 24.2 + }, + "xAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.682399, + "y": -4.4903097, + "z": 26.95 + }, + "xAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -8.514167, + "y": -4.4851623, + "z": 29.7 + }, + "xAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + } + }, + "center": { + "x": -1.4286158, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.553115, + "y": -6.693087, + "z": 7.7 + }, + "xAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.496233, + "y": -6.5346794, + "z": 10.45 + }, + "xAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.431138, + "y": -6.379466, + "z": 13.2 + }, + "xAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.358009, + "y": -6.227872, + "z": 15.95 + }, + "xAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.277048, + "y": -6.0803127, + "z": 18.7 + }, + "xAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.188474, + "y": -5.937193, + "z": 21.45 + }, + "xAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + }, + "yAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -11.092531, + "y": -5.798905, + "z": 24.2 + }, + "xAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -10.989483, + "y": -5.6658278, + "z": 26.95 + }, + "xAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -10.879611, + "y": -5.538326, + "z": 29.7 + }, + "xAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + }, + "yAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + } + }, + "center": { + "x": -0.5593769, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.431138, + "y": -9.020534, + "z": 7.7 + }, + "xAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.496233, + "y": -8.86532, + "z": 10.45 + }, + "xAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.601628, + "y": -8.545745, + "z": 15.95 + }, + "xAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.641641, + "y": -8.382259, + "z": 18.7 + }, + "xAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.695745, + "y": -8.050131, + "z": 24.2 + }, + "xAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -11.70969, + "y": -7.8823986, + "z": 26.95 + }, + "xAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + } + }, + "center": { + "x": -0.5016618, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.506912, + "y": -10.753115, + "z": 7.7 + }, + "xAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.66532, + "y": -10.696233, + "z": 10.45 + }, + "xAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.820534, + "y": -10.631138, + "z": 13.2 + }, + "xAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -9.972128, + "y": -10.558009, + "z": 15.95 + }, + "xAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -10.119687, + "y": -10.477048, + "z": 18.7 + }, + "xAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -10.262807, + "y": -10.3884735, + "z": 21.45 + }, + "xAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -10.401095, + "y": -10.292531, + "z": 24.2 + }, + "xAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -10.534172, + "y": -10.189483, + "z": 26.95 + }, + "xAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -10.661674, + "y": -10.079611, + "z": 29.7 + }, + "xAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + } + }, + "center": { + "x": -1.284328, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.1794662, + "y": -10.631138, + "z": 8.616667 + }, + "xAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.3346796, + "y": -10.696233, + "z": 11.366667 + }, + "xAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.4930873, + "y": -10.753115, + "z": 14.116667 + }, + "xAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.654255, + "y": -10.801628, + "z": 16.866667 + }, + "xAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.817741, + "y": -10.84164, + "z": 19.616667 + }, + "xAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -7.9830966, + "y": -10.873041, + "z": 22.366667 + }, + "xAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -8.149869, + "y": -10.895745, + "z": 25.116667 + }, + "xAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -8.317601, + "y": -10.90969, + "z": 27.866667 + }, + "xAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -8.485833, + "y": -10.914837, + "z": 30.616667 + }, + "xAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + } + }, + "center": { + "x": -2.385598, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.4468856, + "y": -8.706912, + "z": 8.616667 + }, + "xAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.5037675, + "y": -8.86532, + "z": 11.366667 + }, + "xAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.568862, + "y": -9.020534, + "z": 14.116667 + }, + "xAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 10.449885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.64199, + "y": -9.172128, + "z": 16.866667 + }, + "xAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.7229524, + "y": -9.319687, + "z": 19.616667 + }, + "xAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.811526, + "y": -9.462807, + "z": 22.366667 + }, + "xAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + }, + "yAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 22.329885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -5.907469, + "y": -9.601095, + "z": 25.116667 + }, + "xAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.010517, + "y": -9.734172, + "z": 27.866667 + }, + "xAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.1203895, + "y": -9.861673, + "z": 30.616667 + }, + "xAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + }, + "yAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + } + }, + "center": { + "x": -3.2548368, + "y": 34.209885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.568862, + "y": -6.379466, + "z": 9.533333 + }, + "xAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.5037675, + "y": -6.5346794, + "z": 12.283333 + }, + "xAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.4468856, + "y": -6.693087, + "z": 15.033333 + }, + "xAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.398372, + "y": -6.8542547, + "z": 17.783333 + }, + "xAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.35836, + "y": -7.0177407, + "z": 20.533333 + }, + "xAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.3269587, + "y": -7.1830964, + "z": 23.283333 + }, + "xAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + }, + "yAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.3042545, + "y": -7.349869, + "z": 26.033333 + }, + "xAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -5.29031, + "y": -7.517601, + "z": 28.783333 + }, + "xAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -5.2851624, + "y": -7.6858335, + "z": 31.533333 + }, + "xAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + }, + "yAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + } + }, + "center": { + "x": -3.312552, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.4930873, + "y": -4.6468854, + "z": 9.533333 + }, + "xAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -7.3346796, + "y": -4.7037673, + "z": 12.283333 + }, + "xAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -7.1794662, + "y": -4.768862, + "z": 15.033333 + }, + "xAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -7.027872, + "y": -4.84199, + "z": 17.783333 + }, + "xAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -6.880313, + "y": -4.922952, + "z": 20.533333 + }, + "xAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.737193, + "y": -5.0115256, + "z": 23.283333 + }, + "xAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.598905, + "y": -5.1074686, + "z": 26.033333 + }, + "xAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -6.465828, + "y": -5.210517, + "z": 28.783333 + }, + "xAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -6.338326, + "y": -5.3203893, + "z": 31.533333 + }, + "xAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + } + }, + "center": { + "x": -2.5298858, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 7.5 + }, + "xAxis": { + "x": 0.052335955, + "y": -0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986295, + "y": 0.052335955, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 1.9071069 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "b", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 10.25 + }, + "xAxis": { + "x": 2.3554114e-10, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 2.3554114e-10, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 5.867107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 13.0 + }, + "xAxis": { + "x": -0.052335955, + "y": -0.9986295, + "z": 0.0 + }, + "yAxis": { + "x": 0.9986295, + "y": -0.052335955, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 9.827106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 15.75 + }, + "xAxis": { + "x": -0.104528464, + "y": -0.9945219, + "z": 0.0 + }, + "yAxis": { + "x": 0.9945219, + "y": -0.104528464, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 13.7871065 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 18.5 + }, + "xAxis": { + "x": -0.15643446, + "y": -0.98768836, + "z": 0.0 + }, + "yAxis": { + "x": 0.98768836, + "y": -0.15643446, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 17.747107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 21.25 + }, + "xAxis": { + "x": -0.20791169, + "y": -0.9781476, + "z": 0.0 + }, + "yAxis": { + "x": 0.9781476, + "y": -0.20791169, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 21.707108 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 24.0 + }, + "xAxis": { + "x": -0.25881904, + "y": -0.9659258, + "z": 0.0 + }, + "yAxis": { + "x": 0.9659258, + "y": -0.25881904, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 25.667107 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 26.75 + }, + "xAxis": { + "x": -0.309017, + "y": -0.95105654, + "z": 0.0 + }, + "yAxis": { + "x": 0.95105654, + "y": -0.309017, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 29.627106 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 29.5 + }, + "xAxis": { + "x": -0.35836795, + "y": -0.9335804, + "z": 0.0 + }, + "yAxis": { + "x": 0.9335804, + "y": -0.35836795, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 33.587105 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 32.25 + }, + "xAxis": { + "x": -0.40673664, + "y": -0.9135454, + "z": 0.0 + }, + "yAxis": { + "x": 0.9135454, + "y": -0.40673664, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 37.547104 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": { + "origin": { + "x": -19.6, + "y": -7.7, + "z": 35.0 + }, + "xAxis": { + "x": -0.45399052, + "y": -0.8910065, + "z": 0.0 + }, + "yAxis": { + "x": 0.8910065, + "y": -0.45399052, + "z": 0.0 + } + }, + "center": { + "x": 1.9071069, + "y": 41.507103 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.279467, + "y": -10.631138, + "z": 7.7 + }, + "xAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 3.312552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.43468, + "y": -10.696233, + "z": 10.45 + }, + "xAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 7.272552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.593088, + "y": -10.753115, + "z": 13.2 + }, + "xAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 11.232552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.754255, + "y": -10.801628, + "z": 15.95 + }, + "xAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 15.192552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -18.917742, + "y": -10.84164, + "z": 18.7 + }, + "xAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 19.152552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.083097, + "y": -10.873041, + "z": 21.45 + }, + "xAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 23.112553 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.24987, + "y": -10.895745, + "z": 24.2 + }, + "xAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 27.072552 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.417603, + "y": -10.90969, + "z": 26.95 + }, + "xAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 31.03255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.585835, + "y": -10.914837, + "z": 29.7 + }, + "xAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 34.99255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.754105, + "y": -10.911173, + "z": 32.45 + }, + "xAxis": { + "x": -0.99957454, + "y": 0.029166406, + "z": 0.0 + }, + "yAxis": { + "x": -0.029166406, + "y": -0.99957454, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 38.95255 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.921953, + "y": -10.898706, + "z": 35.2 + }, + "xAxis": { + "x": -0.99667823, + "y": 0.08144013, + "z": 0.0 + }, + "yAxis": { + "x": -0.08144013, + "y": -0.99667823, + "z": 0.0 + } + }, + "center": { + "x": 1.4286158, + "y": 42.912548 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -16.546886, + "y": -8.706912, + "z": 7.7 + }, + "xAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 2.5298858 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -16.603767, + "y": -8.86532, + "z": 10.45 + }, + "xAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 6.489886 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -16.741991, + "y": -9.172128, + "z": 15.95 + }, + "xAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 14.409885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -16.822952, + "y": -9.319687, + "z": 18.7 + }, + "xAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 18.369884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -17.00747, + "y": -9.601095, + "z": 24.2 + }, + "xAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 26.289885 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -17.110518, + "y": -9.734172, + "z": 26.95 + }, + "xAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 30.249884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -17.336784, + "y": -9.983251, + "z": 32.45 + }, + "xAxis": { + "x": -0.72331256, + "y": -0.69052076, + "z": 0.0 + }, + "yAxis": { + "x": 0.69052076, + "y": -0.72331256, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 38.169884 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -17.459381, + "y": -10.098569, + "z": 35.2 + }, + "xAxis": { + "x": -0.75846034, + "y": -0.6517192, + "z": 0.0 + }, + "yAxis": { + "x": 0.6517192, + "y": -0.75846034, + "z": 0.0 + } + }, + "center": { + "x": 0.5593769, + "y": 42.129883 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.668861, + "y": -6.379466, + "z": 7.7 + }, + "xAxis": { + "x": 0.42780992, + "y": -0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 1.4286158 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.603767, + "y": -6.5346794, + "z": 10.45 + }, + "xAxis": { + "x": 0.37991878, + "y": -0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 5.3886156 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.546886, + "y": -6.693087, + "z": 13.2 + }, + "xAxis": { + "x": 0.33098632, + "y": -0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 9.348616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.498373, + "y": -6.8542547, + "z": 15.95 + }, + "xAxis": { + "x": 0.28114665, + "y": -0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 13.308615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.45836, + "y": -7.0177407, + "z": 18.7 + }, + "xAxis": { + "x": 0.23053637, + "y": -0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 17.268616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.426958, + "y": -7.1830964, + "z": 21.45 + }, + "xAxis": { + "x": 0.17929421, + "y": -0.9837955, + "z": 0.0 + }, + "yAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 21.228617 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.404255, + "y": -7.349869, + "z": 24.2 + }, + "xAxis": { + "x": 0.1275606, + "y": -0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 25.188616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.39031, + "y": -7.517601, + "z": 26.95 + }, + "xAxis": { + "x": 0.07547738, + "y": -0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 29.148615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.385162, + "y": -7.6858335, + "z": 29.7 + }, + "xAxis": { + "x": 0.023187257, + "y": -0.9997311, + "z": 0.0 + }, + "yAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 33.108616 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.388826, + "y": -7.8541045, + "z": 32.45 + }, + "xAxis": { + "x": -0.029166406, + "y": -0.99957454, + "z": 0.0 + }, + "yAxis": { + "x": 0.99957454, + "y": -0.029166406, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 37.068615 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -16.401293, + "y": -8.021953, + "z": 35.2 + }, + "xAxis": { + "x": -0.08144013, + "y": -0.99667823, + "z": 0.0 + }, + "yAxis": { + "x": 0.99667823, + "y": -0.08144013, + "z": 0.0 + } + }, + "center": { + "x": 0.5016618, + "y": 41.028614 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -18.593088, + "y": -4.6468854, + "z": 7.7 + }, + "xAxis": { + "x": 0.9436356, + "y": -0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 0.5593769 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -18.43468, + "y": -4.7037673, + "z": 10.45 + }, + "xAxis": { + "x": 0.92501986, + "y": -0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 4.5193768 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -18.279467, + "y": -4.768862, + "z": 13.2 + }, + "xAxis": { + "x": 0.90386873, + "y": -0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 8.479377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -18.127872, + "y": -4.84199, + "z": 15.95 + }, + "xAxis": { + "x": 0.88024014, + "y": -0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 12.439377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.980312, + "y": -4.922952, + "z": 18.7 + }, + "xAxis": { + "x": 0.85419893, + "y": -0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 16.399378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.837193, + "y": -5.0115256, + "z": 21.45 + }, + "xAxis": { + "x": 0.8258164, + "y": -0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 20.359379 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.698906, + "y": -5.1074686, + "z": 24.2 + }, + "xAxis": { + "x": 0.79517037, + "y": -0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 24.319378 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.565828, + "y": -5.210517, + "z": 26.95 + }, + "xAxis": { + "x": 0.7623448, + "y": -0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 28.279377 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.438326, + "y": -5.3203893, + "z": 29.7 + }, + "xAxis": { + "x": 0.7274297, + "y": -0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 32.239372 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.31675, + "y": -5.436784, + "z": 32.45 + }, + "xAxis": { + "x": 0.69052076, + "y": -0.72331256, + "z": 0.0 + }, + "yAxis": { + "x": 0.72331256, + "y": 0.69052076, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 36.19937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -17.201431, + "y": -5.5593815, + "z": 35.2 + }, + "xAxis": { + "x": 0.6517192, + "y": -0.75846034, + "z": 0.0 + }, + "yAxis": { + "x": 0.75846034, + "y": 0.6517192, + "z": 0.0 + } + }, + "center": { + "x": 1.284328, + "y": 40.15937 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.920534, + "y": -4.768862, + "z": 8.616667 + }, + "xAxis": { + "x": 0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 0.5016618 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.76532, + "y": -4.7037673, + "z": 11.366667 + }, + "xAxis": { + "x": 0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 4.461662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.606913, + "y": -4.6468854, + "z": 14.116667 + }, + "xAxis": { + "x": 0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 8.421661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -20.445745, + "y": -4.598372, + "z": 16.866667 + }, + "xAxis": { + "x": 0.9596648, + "y": 0.28114665, + "z": 0.0 + }, + "yAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 12.381661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.282259, + "y": -4.5583596, + "z": 19.616667 + }, + "xAxis": { + "x": 0.9730637, + "y": 0.23053637, + "z": 0.0 + }, + "yAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 16.341661 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -20.116903, + "y": -4.5269585, + "z": 22.366667 + }, + "xAxis": { + "x": 0.9837955, + "y": 0.17929421, + "z": 0.0 + }, + "yAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 20.301662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.95013, + "y": -4.5042543, + "z": 25.116667 + }, + "xAxis": { + "x": 0.99183077, + "y": 0.1275606, + "z": 0.0 + }, + "yAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 24.261662 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -19.782398, + "y": -4.4903097, + "z": 27.866667 + }, + "xAxis": { + "x": 0.9971475, + "y": 0.07547738, + "z": 0.0 + }, + "yAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 28.22166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.614166, + "y": -4.4851623, + "z": 30.616667 + }, + "xAxis": { + "x": 0.9997311, + "y": 0.023187257, + "z": 0.0 + }, + "yAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 32.18166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": { + "origin": { + "x": -19.445896, + "y": -4.4888268, + "z": 33.366665 + }, + "xAxis": { + "x": 0.99957454, + "y": -0.029166406, + "z": 0.0 + }, + "yAxis": { + "x": 0.029166406, + "y": 0.99957454, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 36.14166 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": { + "origin": { + "x": -19.278048, + "y": -4.5012927, + "z": 36.116665 + }, + "xAxis": { + "x": 0.99667823, + "y": -0.08144013, + "z": 0.0 + }, + "yAxis": { + "x": 0.08144013, + "y": 0.99667823, + "z": 0.0 + } + }, + "center": { + "x": 2.385598, + "y": 40.101658 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -22.653114, + "y": -6.693087, + "z": 8.616667 + }, + "xAxis": { + "x": 0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 1.284328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.596233, + "y": -6.5346794, + "z": 11.366667 + }, + "xAxis": { + "x": 0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 5.244328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.53114, + "y": -6.379466, + "z": 14.116667 + }, + "xAxis": { + "x": 0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 9.204328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.45801, + "y": -6.227872, + "z": 16.866667 + }, + "xAxis": { + "x": 0.47452843, + "y": 0.88024014, + "z": 0.0 + }, + "yAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 13.164328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -22.377048, + "y": -6.0803127, + "z": 19.616667 + }, + "xAxis": { + "x": 0.51994634, + "y": 0.85419893, + "z": 0.0 + }, + "yAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 17.124329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -22.288475, + "y": -5.937193, + "z": 22.366667 + }, + "xAxis": { + "x": 0.5639391, + "y": 0.8258164, + "z": 0.0 + }, + "yAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 21.08433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -22.192532, + "y": -5.798905, + "z": 25.116667 + }, + "xAxis": { + "x": 0.6063861, + "y": 0.79517037, + "z": 0.0 + }, + "yAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 25.044329 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -22.089483, + "y": -5.6658278, + "z": 27.866667 + }, + "xAxis": { + "x": 0.6471711, + "y": 0.7623448, + "z": 0.0 + }, + "yAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 29.004328 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": { + "origin": { + "x": -21.97961, + "y": -5.538326, + "z": 30.616667 + }, + "xAxis": { + "x": 0.6861822, + "y": 0.7274297, + "z": 0.0 + }, + "yAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 32.964325 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -21.863216, + "y": -5.416749, + "z": 33.366665 + }, + "xAxis": { + "x": 0.72331256, + "y": 0.69052076, + "z": 0.0 + }, + "yAxis": { + "x": -0.69052076, + "y": 0.72331256, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 36.924324 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": { + "origin": { + "x": -21.74062, + "y": -5.3014307, + "z": 36.116665 + }, + "xAxis": { + "x": 0.75846034, + "y": 0.6517192, + "z": 0.0 + }, + "yAxis": { + "x": -0.6517192, + "y": 0.75846034, + "z": 0.0 + } + }, + "center": { + "x": 3.2548368, + "y": 40.884323 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.53114, + "y": -9.020534, + "z": 9.533333 + }, + "xAxis": { + "x": -0.42780992, + "y": 0.90386873, + "z": 0.0 + }, + "yAxis": { + "x": -0.90386873, + "y": -0.42780992, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 2.385598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.596233, + "y": -8.86532, + "z": 12.283333 + }, + "xAxis": { + "x": -0.37991878, + "y": 0.92501986, + "z": 0.0 + }, + "yAxis": { + "x": -0.92501986, + "y": -0.37991878, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 6.345598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.653114, + "y": -8.706912, + "z": 15.033333 + }, + "xAxis": { + "x": -0.33098632, + "y": 0.9436356, + "z": 0.0 + }, + "yAxis": { + "x": -0.9436356, + "y": -0.33098632, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 10.305597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.701628, + "y": -8.545745, + "z": 17.783333 + }, + "xAxis": { + "x": -0.28114665, + "y": 0.9596648, + "z": 0.0 + }, + "yAxis": { + "x": -0.9596648, + "y": -0.28114665, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 14.265598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.74164, + "y": -8.382259, + "z": 20.533333 + }, + "xAxis": { + "x": -0.23053637, + "y": 0.9730637, + "z": 0.0 + }, + "yAxis": { + "x": -0.9730637, + "y": -0.23053637, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 18.225597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.773043, + "y": -8.216904, + "z": 23.283333 + }, + "xAxis": { + "x": -0.17929421, + "y": 0.9837955, + "z": 0.0 + }, + "yAxis": { + "x": -0.9837955, + "y": -0.17929421, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 22.185598 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.795746, + "y": -8.050131, + "z": 26.033333 + }, + "xAxis": { + "x": -0.1275606, + "y": 0.99183077, + "z": 0.0 + }, + "yAxis": { + "x": -0.99183077, + "y": -0.1275606, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 26.145597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.80969, + "y": -7.8823986, + "z": 28.783333 + }, + "xAxis": { + "x": -0.07547738, + "y": 0.9971475, + "z": 0.0 + }, + "yAxis": { + "x": -0.9971475, + "y": -0.07547738, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 30.105597 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.814838, + "y": -7.714166, + "z": 31.533333 + }, + "xAxis": { + "x": -0.023187257, + "y": 0.9997311, + "z": 0.0 + }, + "yAxis": { + "x": -0.9997311, + "y": -0.023187257, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 34.065594 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.811174, + "y": -7.545895, + "z": 34.283333 + }, + "xAxis": { + "x": 0.029166406, + "y": 0.99957454, + "z": 0.0 + }, + "yAxis": { + "x": -0.99957454, + "y": 0.029166406, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 38.025593 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": { + "origin": { + "x": -22.798708, + "y": -7.3780465, + "z": 37.033333 + }, + "xAxis": { + "x": 0.08144013, + "y": 0.99667823, + "z": 0.0 + }, + "yAxis": { + "x": -0.99667823, + "y": 0.08144013, + "z": 0.0 + } + }, + "center": { + "x": 3.312552, + "y": 41.98559 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -20.606913, + "y": -10.753115, + "z": 9.533333 + }, + "xAxis": { + "x": -0.9436356, + "y": 0.33098632, + "z": 0.0 + }, + "yAxis": { + "x": -0.33098632, + "y": -0.9436356, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 3.2548368 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f0_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -20.76532, + "y": -10.696233, + "z": 12.283333 + }, + "xAxis": { + "x": -0.92501986, + "y": 0.37991878, + "z": 0.0 + }, + "yAxis": { + "x": -0.37991878, + "y": -0.92501986, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 7.214837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f1_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -20.920534, + "y": -10.631138, + "z": 15.033333 + }, + "xAxis": { + "x": -0.90386873, + "y": 0.42780992, + "z": 0.0 + }, + "yAxis": { + "x": -0.42780992, + "y": -0.90386873, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 11.174836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.072128, + "y": -10.558009, + "z": 17.783333 + }, + "xAxis": { + "x": -0.88024014, + "y": 0.47452843, + "z": 0.0 + }, + "yAxis": { + "x": -0.47452843, + "y": -0.88024014, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 15.134836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f3_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.219688, + "y": -10.477048, + "z": 20.533333 + }, + "xAxis": { + "x": -0.85419893, + "y": 0.51994634, + "z": 0.0 + }, + "yAxis": { + "x": -0.51994634, + "y": -0.85419893, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 19.094835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f4_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.362808, + "y": -10.3884735, + "z": 23.283333 + }, + "xAxis": { + "x": -0.8258164, + "y": 0.5639391, + "z": 0.0 + }, + "yAxis": { + "x": -0.5639391, + "y": -0.8258164, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 23.054836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.501095, + "y": -10.292531, + "z": 26.033333 + }, + "xAxis": { + "x": -0.79517037, + "y": 0.6063861, + "z": 0.0 + }, + "yAxis": { + "x": -0.6063861, + "y": -0.79517037, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 27.014835 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f6_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.634172, + "y": -10.189483, + "z": 28.783333 + }, + "xAxis": { + "x": -0.7623448, + "y": 0.6471711, + "z": 0.0 + }, + "yAxis": { + "x": -0.6471711, + "y": -0.7623448, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 30.974834 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f7_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.761675, + "y": -10.079611, + "z": 31.533333 + }, + "xAxis": { + "x": -0.7274297, + "y": 0.6861822, + "z": 0.0 + }, + "yAxis": { + "x": -0.6861822, + "y": -0.7274297, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 34.934837 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.883251, + "y": -9.963216, + "z": 34.283333 + }, + "xAxis": { + "x": -0.69052076, + "y": 0.72331256, + "z": 0.0 + }, + "yAxis": { + "x": -0.72331256, + "y": -0.69052076, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 38.894836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f9_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": { + "origin": { + "x": -21.99857, + "y": -9.840618, + "z": 37.033333 + }, + "xAxis": { + "x": -0.6517192, + "y": 0.75846034, + "z": 0.0 + }, + "yAxis": { + "x": -0.75846034, + "y": -0.6517192, + "z": 0.0 + } + }, + "center": { + "x": 2.5298858, + "y": 42.854836 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f10_b_c1", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -17.286348, + "y": -8.871574, + "z": 13.2 + }, + "xAxis": { + "x": 0.9821934, + "y": 0.1878725, + "z": 0.0 + }, + "yAxis": { + "x": -0.1878725, + "y": 0.9821934, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 10.147437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f2_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -17.361448, + "y": -7.482663, + "z": 21.45 + }, + "xAxis": { + "x": 0.99949074, + "y": 0.031910583, + "z": 0.0 + }, + "yAxis": { + "x": -0.031910583, + "y": 0.99949074, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 22.027437 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f5_b_c0", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": { + "origin": { + "x": -17.21835, + "y": -6.099103, + "z": 29.7 + }, + "xAxis": { + "x": 0.99217725, + "y": -0.12483711, + "z": 0.0 + }, + "yAxis": { + "x": 0.12483711, + "y": 0.99217725, + "z": 0.0 + } + }, + "center": { + "x": 0.018135905, + "y": 33.907433 + }, + "hidden": false, + "locked": false, + "attributes": [ + { + "name": "semio.parent", + "value": "t_f8_b_c0", + "unit": "", + "definition": "" + } + ] + } + ], + "connections": [], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2157.63", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "21.247135", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "1.9389e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "1.8828e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.5882e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "244724.133333", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "45843.456667", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.1275e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "206070", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "94.229007", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "38654.133333", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "70686", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "54102", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "64658", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] +} \ No newline at end of file diff --git a/assets/semio/kit_metabolism.json b/assets/semio/kit_metabolism.json index 13418f337..465e5c457 100644 --- a/assets/semio/kit_metabolism.json +++ b/assets/semio/kit_metabolism.json @@ -1 +1,158156 @@ -{"name":"Metabolism","description":"Everything for metabolistic architecture.","icon":"icons/metabolism.svg","image":"images/metabolism.png","preview":"docs/preview.png","version":"r25.07-1","remote":"https://github.com/usalu/metabolism/archive/refs/tags/r25.07-1.zip","homepage":"https://github.com/usalu/metabolism/tree/r25.07-1","license":"","types":[{"name":"Base","description":"A polygonal two storey office building with an entrance hall and access to the staircases and elevators of the rectangular cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.","icon":"icons/base.svg","image":"images/base.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/base.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/base_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/base_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e5267da44d","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b394acfd5c","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/base_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"c0","description":"The center of the east rectangular core (an elevator and a staircase around it).","mandatory":false,"family":"core rectangular bottom","compatibleFamilies":["core rectangular top"],"point":{"x":-7.5,"y":-7.7,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":-0.125,"qualities":[{"name":"core","value":"east","unit":"","definition":""}]},{"id_":"c1","description":"The center of the west rectangular core (an elevator and a staircase around it).","mandatory":false,"family":"core rectangular bottom","compatibleFamilies":["core rectangular top"],"point":{"x":-18.6,"y":-7.7,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.125,"qualities":[{"name":"core","value":"west","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"storey","value":"2","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"3.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"ground floor height","value":"4","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"cores","value":"2","unit":"","definition":""},{"name":"core length","value":"5.5","unit":"m","definition":""},{"name":"core width","value":"5.5","unit":"m","definition":""},{"name":"effective floor area","value":"519.37","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"2856480","unit":"€","definition":""},{"name":"heating energy demand","value":"12984","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"18178","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"20774","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"467424","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"46742","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"415488","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Base","description":"A blobby two storey office building with an entrance hall and access to the staircases and elevators of the round cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.","icon":"icons/base_blob.svg","image":"images/base_blob.png","variant":"Blob","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/base_blob.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/base_blob_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e5d9d8631c","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/base_blob_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/2069b62658","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/base_blob_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"c0","description":"The center of the east round core (an elevator and a staircase around it).","mandatory":false,"family":"core circular bottom","compatibleFamilies":["core circular top"],"point":{"x":-6.75,"y":-7.75,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":-0.125,"qualities":[{"name":"core","value":"east","unit":"","definition":""}]},{"id_":"c1","description":"The center of the west round core (an elevator and a staircase around it).","mandatory":false,"family":"core circular bottom","compatibleFamilies":["core circular top"],"point":{"x":-18.85,"y":-7.75,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.125,"qualities":[{"name":"core","value":"west","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"storey","value":"2","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"3.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"ground floor height","value":"4","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"cores","value":"2","unit":"","definition":""},{"name":"core diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"effective floor area","value":"532.12","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"3990871","unit":"€","definition":""},{"name":"heating energy demand","value":"15963","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"21285","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"21285","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"542759","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"54276","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"478905","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Bridge","description":"A bridge with two segments an addition on the west along the main path.","icon":"","image":"images/bridge.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/bridge.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/bridge_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/833a270493","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/bridge_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c7c924a1d6","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/bridge_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"e","description":"The middle of the east side of the plattform.","mandatory":false,"family":"platform east","compatibleFamilies":["door tambour west"],"point":{"x":5.6,"y":-1.3,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.25,"qualities":[{"name":"east","value":"","unit":"","definition":""}]},{"id_":"w","description":"The middle of the west side of the plattform.","mandatory":false,"family":"platform west","compatibleFamilies":["door tambour east"],"point":{"x":0.0,"y":-1.3,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.75,"qualities":[{"name":"west","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"length","value":"5.6","unit":"m","definition":""},{"name":"platform west length","value":"2.6","unit":"m","definition":""},{"name":"platform east length","value":"2.6","unit":"m","definition":""},{"name":"gap","value":"0.4","unit":"m","definition":""},{"name":"width","value":"2.6","unit":"m","definition":""},{"name":"height","value":"2.5","unit":"m","definition":""},{"name":"base height","value":"20","unit":"m","definition":""},{"name":"primary rod diameter","value":"10","unit":"m","definition":""},{"name":"secondary rod diameter","value":"8","unit":"m","definition":""},{"name":"tertiary rod diameter","value":"6","unit":"m","definition":""},{"name":"parapet height","value":"125","unit":"m","definition":""},{"name":"construction cost","value":"65973","unit":"€","definition":""},{"name":"maintenance expenses","value":"880","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"5864","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Capital","description":"A roof that has the skin of a cut extruded cuboid.","icon":"icons/capital.svg","image":"images/capital.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capital.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capital_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capital_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/82fd28f19e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/90435c0046","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capital_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The center of the bottom.","mandatory":false,"family":"roof rectangular top","compatibleFamilies":["roof rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.0,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"peak","value":"north west","unit":"","definition":""},{"name":"length","value":"5.5","unit":"m","definition":""},{"name":"width","value":"5.5","unit":"m","definition":""},{"name":"height","value":"5.5","unit":"m","definition":""},{"name":"height side","value":"5.5","unit":"m","definition":""},{"name":"height low","value":"1","unit":"m","definition":""},{"name":"wall thickness","value":"0.3","unit":"m","definition":""},{"name":"construction cost","value":"60025","unit":"€","definition":""},{"name":"maintenance expenses","value":"720","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"4802","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Cylindric Capital","description":"A roof that has the skin of a cut extruded cylinder.","icon":"icons/cylindric-capital.svg","image":"images/cylindric-capital.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-capital.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-capital_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ae4ed21120","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-capital_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9e40d26d9a","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-capital_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The center of the bottom.","mandatory":false,"family":"roof circular top","compatibleFamilies":["roof circular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.0,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"peak","value":"south west","unit":"","definition":""},{"name":"diameter","value":"6.5","unit":"m","definition":""},{"name":"height side","value":"5.5","unit":"m","definition":""},{"name":"height low","value":"1","unit":"m","definition":""},{"name":"wall thickness","value":"0.3","unit":"m","definition":""},{"name":"construction cost","value":"123029","unit":"€","definition":""},{"name":"maintenance expenses","value":"820","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8202","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the front.","icon":"icons/capsule_backslash.svg","image":"images/capsule_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule_slash.svg","image":"images/capsule_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the side.","icon":"icons/capsule_q.svg","image":"images/capsule_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule_p.svg","image":"images/capsule_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the front.","icon":"icons/capsule_J.svg","image":"images/capsule_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule_L.svg","image":"images/capsule_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the side.","icon":"icons/capsule_s.svg","image":"images/capsule_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule_z.svg","image":"images/capsule_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.","icon":"icons/capsule-with-balcony_backslash.svg","image":"images/capsule-with-balcony_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_slash.svg","image":"images/capsule-with-balcony_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.","icon":"icons/capsule-with-balcony_q.svg","image":"images/capsule-with-balcony_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_p.svg","image":"images/capsule-with-balcony_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.","icon":"icons/capsule-with-balcony_J.svg","image":"images/capsule-with-balcony_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_L.svg","image":"images/capsule-with-balcony_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.","icon":"icons/capsule-with-balcony_s.svg","image":"images/capsule-with-balcony_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Capsule with Balcony","description":"An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_z.svg","image":"images/capsule-with-balcony_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_backslash.svg","image":"images/ellipsoid-capsule_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f8a0750f34","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/08abe6efbe","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_slash.svg","image":"images/ellipsoid-capsule_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/d7c20e7ea4","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/2a87d1fb6f","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_q.svg","image":"images/ellipsoid-capsule_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/58af8da8c8","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/d6ddf1d05d","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_p.svg","image":"images/ellipsoid-capsule_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/80ad44ffe9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0c53ae86dc","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_J.svg","image":"images/ellipsoid-capsule_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/22564f1ee2","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/19c41d4361","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_L.svg","image":"images/ellipsoid-capsule_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c35e56f23a","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/fa19ddafc5","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_s.svg","image":"images/ellipsoid-capsule_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c5306eb015","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/bfdbce0be1","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_z.svg","image":"images/ellipsoid-capsule_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ada7ff222e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ba36f367e7","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.","icon":"icons/trapezoid-capsule_backslash.svg","image":"images/trapezoid-capsule_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_slash.svg","image":"images/trapezoid-capsule_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.","icon":"icons/trapezoid-capsule_q.svg","image":"images/trapezoid-capsule_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_p.svg","image":"images/trapezoid-capsule_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.","icon":"icons/trapezoid-capsule_J.svg","image":"images/trapezoid-capsule_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_L.svg","image":"images/trapezoid-capsule_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.","icon":"icons/trapezoid-capsule_s.svg","image":"images/trapezoid-capsule_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]},{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_z.svg","image":"images/trapezoid-capsule_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]},{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour.svg","image":"images/tambour.svg","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f9222724e5","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b27c179b7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour rectangular bottom","compatibleFamilies":["tambour rectangular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour rectangular top","compatibleFamilies":["tambour rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour_first-storey.svg","image":"images/tambour_first-storey.svg","variant":"First Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour_first-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_first-storey_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_first-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/89d6e55762","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c5850e2821","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_first-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core rectangular top","compatibleFamilies":["core rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour rectangular top","compatibleFamilies":["tambourrectangular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour_last-storey.svg","image":"images/tambour_last-storey.svg","variant":"Last Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour_last-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_last-storey_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_last-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/53dc156694","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/345fa2173d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_last-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour rectangular bottom","compatibleFamilies":["tambour rectangular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof rectangular bottom","compatibleFamilies":["roof rectangular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour_single-storey.svg","image":"images/tambour_single-storey.svg","variant":"Single Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour_single-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_single-storey_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_single-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/73566dc911","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/8965b08c83","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_single-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core rectangular top","compatibleFamilies":["core rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof rectangular bottom","compatibleFamilies":["roof rectangular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour.svg","image":"images/cylindric-tambour.svg","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/2a6977ed68","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/1152f570e6","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour circular bottom","compatibleFamilies":["tambour circular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour circular top","compatibleFamilies":["tambour circular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour_first-storey.svg","image":"images/cylindric-tambour_first-storey.svg","variant":"First Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour_first-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_first-storey_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_first-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b862062ab5","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/152ecb7f14","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_first-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core circular top","compatibleFamilies":["core circular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour circular top","compatibleFamilies":["tambour circular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour_last-storey.svg","image":"images/cylindric-tambour_last-storey.svg","variant":"Last Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour_last-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_last-storey_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_last-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ec423cca22","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/4088e8e156","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_last-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour circular bottom","compatibleFamilies":["tambour circular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof circular bottom","compatibleFamilies":["roof circular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]},{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour_single-storey.svg","image":"images/cylindric-tambour_single-storey.svg","variant":"Single Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour_single-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_single-storey_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_single-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6e372d67ee","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/025c85ea51","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_single-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core circular top","compatibleFamilies":["core circular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof circular bottom","compatibleFamilies":["roof circular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]}],"designs":[{"name":"Nakagin Capsule Tower","description":"The digital shadow of the former Nakagin Capsule Tower which was a mixed-use residential and office tower designed by architect Kisho Kurokawa and located in Shimbashi, Tokyo, Japan. Completed in 1972, the building was a rare remaining example of Japanese Metabolism, an architectural movement emblematic of Japan's postwar cultural resurgence.","icon":"icons/nakagin-capsule-tower.svg","image":"images/nakagin-capsule-tower.png","variant":"","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2349.53","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"22.890446","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.0311e+7","unit":"€","definition":""},{"name":"return","value":"2.2088e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.818e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"276616.911111","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"53781.79","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.4854e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"232534","unit":"€/a","definition":""},{"name":"specific energy demand","value":"99.440124","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"44082.911111","unit":"€/a","definition":""},{"name":"heating energy demand","value":"83186","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"63366","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"70802","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]},{"name":"Nakagin Capsule Tower","description":"A sloped variant of the Nakagin Capsule Tower where the capsules have balconies and the towers are graduated in opposing directions. Each tower has a direction and every floor is stepped in this direction.","icon":"icons/nakagin-capsule-tower_slanted.svg","image":"images/nakagin-capsule-tower_slanted.png","variant":"Slanted","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2583.27","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"20.819268","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.0311e+7","unit":"€","definition":""},{"name":"return","value":"2.2088e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.818e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"276616.911111","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"53781.79","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.4854e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"232534","unit":"€/a","definition":""},{"name":"specific energy demand","value":"90.442561","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"44082.911111","unit":"€/a","definition":""},{"name":"heating energy demand","value":"83186","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"63366","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"70802","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]},{"name":"Nakagin Capsule Tower","description":"A twisted variant of the Nakagin Capsule Tower where the capsules are trapezoids and towers are round with the floors twisting in one direction.","icon":"icons/nakagin-capsule-tower_twisted.svg","image":"images/nakagin-capsule-tower_twisted.png","variant":"Twisted","view":"","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":267.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":87.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2157.63","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"21.247135","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"1.9389e+7","unit":"€","definition":""},{"name":"return","value":"1.8828e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1.5882e+6","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"244724.133333","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"45843.456667","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"2.1275e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"206070","unit":"€/a","definition":""},{"name":"specific energy demand","value":"94.229007","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"38654.133333","unit":"€/a","definition":""},{"name":"heating energy demand","value":"70686","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"54102","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"64658","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]},{"name":"Nakagin Capsule Tower","description":"The expolsion axonometry of a futuristic variant of the Nakagin Capsule Tower where two towers are dancing with each other. The capsules are ellipsoids around a round shaft and a blob base.","icon":"icons/nakagin-capsule-tower_dancing_axonometry_explosion.svg","image":"images/nakagin-capsule-tower_dancing_axonometry_explosion.png","variant":"Dancing","view":"Explosion Axonometry","location":null,"unit":"m","pieces":[{"id_":"b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":0.0,"y":0.0,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":289.0,"turn":0.0,"tilt":5.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":100.0,"turn":0.0,"tilt":5.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":81.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"ci_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"connecting":{"piece":{"id_":"cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"connecting":{"piece":{"id_":"cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"connecting":{"piece":{"id_":"cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"connecting":{"piece":{"id_":"cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"connecting":{"piece":{"id_":"cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"connecting":{"piece":{"id_":"cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"connecting":{"piece":{"id_":"cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"connecting":{"piece":{"id_":"br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"2128.8","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"20.170755","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"2.2251e+7","unit":"€","definition":""},{"name":"return","value":"3.9635e+6","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"729701","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"411233.988889","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"42939.502222","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"4.3747e+6","unit":"€","definition":""},{"name":"maintenance expenses","value":"336342","unit":"€/a","definition":""},{"name":"specific energy demand","value":"93.568468","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"74891.988889","unit":"€/a","definition":""},{"name":"heating energy demand","value":"66427","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"50587","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"69173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]},{"name":"Capsule Dream","description":"A wild dream of capsule towers.","icon":"icons/capsule-dream.svg","image":"images/capsule-dream.png","variant":"","view":"","location":null,"unit":"m","pieces":[{"id_":"Nakagin Capsule Tower,,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":0.0,"y":27.5,"z":0.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":27.5,"y":137.5,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":137.5,"y":110.0,"z":0.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":110.0,"y":0.0,"z":0.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":9.075,"y":63.8,"z":0.0},"xAxis":{"x":0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":18.425,"y":101.2,"z":0.0},"xAxis":{"x":0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":36.3,"y":18.425,"z":0.0},"xAxis":{"x":-0.44184983,"y":0.897089,"z":0.0},"yAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":73.7,"y":9.075,"z":0.0},"xAxis":{"x":-0.897089,"y":0.44184983,"z":0.0},"yAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":63.8,"y":128.425,"z":0.0},"xAxis":{"x":0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":101.2,"y":119.075,"z":0.0},"xAxis":{"x":0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":119.075,"y":36.3,"z":0.0},"xAxis":{"x":-0.897089,"y":-0.44184983,"z":0.0},"yAxis":{"x":0.44184983,"y":-0.897089,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":128.425,"y":73.7,"z":0.0},"xAxis":{"x":-0.44184983,"y":-0.897089,"z":0.0},"yAxis":{"x":0.897089,"y":-0.44184983,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":54.725,"y":92.125,"z":0.0},"xAxis":{"x":1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule with Balcony","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule with Balcony","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":82.775,"y":45.375,"z":0.0},"xAxis":{"x":-1.0,"y":0.0,"z":0.0},"yAxis":{"x":0.0,"y":-1.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Trapezoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Trapezoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b","description":"","type":{"name":"Base","variant":""},"plane":{"origin":{"x":45.375,"y":54.725,"z":0.0},"xAxis":{"x":0.0,"y":1.0,"z":0.0},"yAxis":{"x":-1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0","description":"","type":{"name":"Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1","description":"","type":{"name":"Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0","description":"","type":{"name":"Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1","description":"","type":{"name":"Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b","description":"","type":{"name":"Base","variant":"Blob"},"plane":{"origin":{"x":92.125,"y":82.775,"z":0.0},"xAxis":{"x":0.0,"y":-1.0,"z":0.0},"yAxis":{"x":1.0,"y":0.0,"z":0.0}},"center":{"x":0.0,"y":0.0},"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0","description":"","type":{"name":"Bridge","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0","description":"","type":{"name":"Cylindric Capital","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"J"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"\\"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"s"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"/"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0","description":"","type":{"name":"Ellipsoid Capsule","variant":"L"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1","description":"","type":{"name":"Ellipsoid Capsule","variant":"p"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"First Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0","description":"","type":{"name":"Cylindric Tambour","variant":"Last Storey"},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]},{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1","description":"","type":{"name":"Cylindric Tambour","variant":""},"plane":null,"center":null,"hidden":false,"locked":false,"qualities":[]}],"connections":[{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.15,"shift":-0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.15,"shift":0.2,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.5,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":289.0,"turn":0.0,"tilt":5.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.0,"shift":5.0,"rise":0.0,"rotation":100.0,"turn":0.0,"tilt":5.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":5.0,"shift":0.0,"rise":0.0,"rotation":81.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":2.5,"shift":-0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":2.5,"shift":0.5,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":2.0,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":7.5,"shift":-0.5,"rise":0.0,"rotation":15.0,"turn":0.0,"tilt":358.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":267.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-1.0,"rise":0.0,"rotation":87.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":3.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":269.01,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":89.01001,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":267.99,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":87.98999,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":276.27002,"turn":0.0,"tilt":1.6499939,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":93.29999,"turn":0.0,"tilt":1.6499939,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":87.03,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.9255,"shift":-0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.9255,"shift":0.299,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":0.17,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":282.72998,"turn":0.0,"tilt":3.350006,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":96.70001,"turn":0.0,"tilt":3.350006,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":83.97,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.7245001,"shift":-0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.7245001,"shift":0.401,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.17,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":0.98,"rise":0.0,"rotation":274.26,"turn":0.0,"tilt":1.6499939,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":0.98,"rise":0.0,"rotation":91.29001,"turn":0.0,"tilt":1.6499939,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":87.03,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":6.9599915,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.02,"rise":0.0,"rotation":281.74,"turn":0.0,"tilt":3.350006,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.02,"rise":0.0,"rotation":95.70999,"turn":0.0,"tilt":3.350006,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":83.97,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":11.040009,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":269.01,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.33,"rise":0.0,"rotation":89.01001,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.1005,"shift":-0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.1005,"shift":0.134,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.335,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":267.99,"turn":0.0,"tilt":0.0,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":-0.67,"rise":0.0,"rotation":87.98999,"turn":0.0,"tilt":0.0,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93880373,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.0,"rise":0.0,"rotation":90.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.15620214,"y":0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.15620214,"y":-0.45880374,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.4399628,"y":0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.4399628,"y":-0.2033045,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.45880374,"y":-0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.049500003,"shift":-0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.45880374,"y":0.15620214,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":-0.2033045,"y":-0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.049500003,"shift":0.066,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.2033045,"y":0.4399628,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":0.0,"shift":0.165,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":0.0,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":276.27002,"turn":0.0,"tilt":1.6499939,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":1.65,"shift":1.65,"rise":0.0,"rotation":93.29999,"turn":0.0,"tilt":1.6499939,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.93,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":1.65,"shift":0.0,"rise":0.0,"rotation":87.03,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.45,"y":-0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":0.825,"shift":-0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.45,"y":0.18,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":-0.18,"y":-0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":0.825,"shift":0.165,"rise":0.0,"rotation":0.98999023,"turn":0.0,"tilt":0.66000366,"x":0.18,"y":0.45,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":2.475,"shift":-0.165,"rise":0.0,"rotation":4.950012,"turn":0.0,"tilt":359.33997,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c0"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":282.72998,"turn":0.0,"tilt":3.350006,"x":-1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b"},"port":{"id_":"c1"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"b"}},"description":"","gap":3.35,"shift":3.35,"rise":0.0,"rotation":96.70001,"turn":0.0,"tilt":3.350006,"x":1.2,"y":1.2,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0"},"port":{"id_":"e"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":0.0,"shift":-0.8,"rise":0.0,"rotation":0.0,"turn":0.0,"tilt":0.0,"x":0.8468811,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":270.0,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"t"}},"description":"","gap":3.35,"shift":0.0,"rise":0.0,"rotation":83.97,"turn":0.0,"tilt":0.0,"x":0.0,"y":1.6,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.31669903,"y":-0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.2554071,"y":0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.48408562,"y":-0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.47442016,"y":0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.36688107,"y":0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d2"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.4119068,"y":-0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.023687685,"y":0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl0_d3"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.099123724,"y":-0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.31669903,"y":0.36688107,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.2554071,"y":-0.4119068,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.48408562,"y":0.023687685,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl1_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.47442016,"y":-0.099123724,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.36688107,"y":-0.31669903,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d0"}},"description":"","gap":1.675,"shift":-0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.4119068,"y":0.2554071,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":-0.023687685,"y":-0.48408562,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1"},"port":{"id_":""}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"sl2_d1"}},"description":"","gap":1.675,"shift":0.335,"rise":0.0,"rotation":2.0100098,"turn":0.0,"tilt":1.3399963,"x":0.099123724,"y":0.47442016,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1"},"port":{"id_":"b"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"t"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]},{"connected":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1"},"port":{"id_":"t"}},"connecting":{"piece":{"id_":"Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1"},"port":{"id_":"b"}},"description":"","gap":5.025,"shift":-0.335,"rise":0.0,"rotation":10.049988,"turn":0.0,"tilt":358.66003,"x":0.0,"y":2.96,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"effective floor area","value":"36876.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"specific operational global warming potential","value":"21.297397","unit":"kgCO2e/m²a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"construction cost","value":"3.2905e+8","unit":"€","definition":""},{"name":"return","value":"4.1202e+7","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"2.3816e+7","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"operational cost","value":"4.6906e+6","unit":"€/a","definition":""},{"name":"operational global warming potential","value":"785382.405556","unit":"kgCO2e/a","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"income","value":"4.5893e+7","unit":"€","definition":""},{"name":"maintenance expenses","value":"4.0299e+6","unit":"€/a","definition":""},{"name":"specific energy demand","value":"94.343562","unit":"kWh/m²a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"operational energy cost","value":"660707.555556","unit":"€/a","definition":""},{"name":"heating energy demand","value":"1.2139e+6","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"925684","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"1.1017e+6","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"}]}],"qualities":[]} \ No newline at end of file +{ + "name": "Metabolism", + "description": "Everything for metabolistic architecture.", + "icon": "icons/metabolism.svg", + "image": "images/metabolism.png", + "preview": "docs/preview.png", + "version": "r25.07-1", + "remote": "https://github.com/usalu/metabolism/archive/refs/tags/r25.07-1.zip", + "homepage": "https://github.com/usalu/metabolism/tree/r25.07-1", + "license": "", + "types": [ + { + "name": "Base", + "description": "A polygonal two storey office building with an entrance hall and access to the staircases and elevators of the rectangular cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.", + "icon": "icons/base.svg", + "image": "images/base.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/base.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/base_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/base_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e5267da44d", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b394acfd5c", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/base_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "c0", + "description": "The center of the east rectangular core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core rectangular bottom", + "compatibleFamilies": [ + "core rectangular top" + ], + "point": { + "x": -7.5, + "y": -7.7, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": -0.125, + "attributes": [ + { + "name": "core", + "value": "east", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "c1", + "description": "The center of the west rectangular core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core rectangular bottom", + "compatibleFamilies": [ + "core rectangular top" + ], + "point": { + "x": -18.6, + "y": -7.7, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.125, + "attributes": [ + { + "name": "core", + "value": "west", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "storey", + "value": "2", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "3.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "ground floor height", + "value": "4", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "cores", + "value": "2", + "unit": "", + "definition": "" + }, + { + "name": "core length", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "core width", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "519.37", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "2856480", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "12984", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "18178", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "20774", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "467424", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "46742", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "415488", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Base", + "description": "A blobby two storey office building with an entrance hall and access to the staircases and elevators of the round cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.", + "icon": "icons/base_blob.svg", + "image": "images/base_blob.png", + "variant": "Blob", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/base_blob.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/base_blob_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e5d9d8631c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/base_blob_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/2069b62658", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/base_blob_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "c0", + "description": "The center of the east round core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core circular bottom", + "compatibleFamilies": [ + "core circular top" + ], + "point": { + "x": -6.75, + "y": -7.75, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": -0.125, + "attributes": [ + { + "name": "core", + "value": "east", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "c1", + "description": "The center of the west round core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core circular bottom", + "compatibleFamilies": [ + "core circular top" + ], + "point": { + "x": -18.85, + "y": -7.75, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.125, + "attributes": [ + { + "name": "core", + "value": "west", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "storey", + "value": "2", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "3.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "ground floor height", + "value": "4", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "cores", + "value": "2", + "unit": "", + "definition": "" + }, + { + "name": "core diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "effective floor area", + "value": "532.12", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "3990871", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "15963", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "21285", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "21285", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "542759", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "54276", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "478905", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Bridge", + "description": "A bridge with two segments an addition on the west along the main path.", + "icon": "", + "image": "images/bridge.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/bridge.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/bridge_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/833a270493", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/bridge_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c7c924a1d6", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/bridge_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "e", + "description": "The middle of the east side of the plattform.", + "mandatory": false, + "family": "platform east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 5.6, + "y": -1.3, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.25, + "attributes": [ + { + "name": "east", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "w", + "description": "The middle of the west side of the plattform.", + "mandatory": false, + "family": "platform west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.0, + "y": -1.3, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.75, + "attributes": [ + { + "name": "west", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "length", + "value": "5.6", + "unit": "m", + "definition": "" + }, + { + "name": "platform west length", + "value": "2.6", + "unit": "m", + "definition": "" + }, + { + "name": "platform east length", + "value": "2.6", + "unit": "m", + "definition": "" + }, + { + "name": "gap", + "value": "0.4", + "unit": "m", + "definition": "" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "" + }, + { + "name": "height", + "value": "2.5", + "unit": "m", + "definition": "" + }, + { + "name": "base height", + "value": "20", + "unit": "m", + "definition": "" + }, + { + "name": "primary rod diameter", + "value": "10", + "unit": "m", + "definition": "" + }, + { + "name": "secondary rod diameter", + "value": "8", + "unit": "m", + "definition": "" + }, + { + "name": "tertiary rod diameter", + "value": "6", + "unit": "m", + "definition": "" + }, + { + "name": "parapet height", + "value": "125", + "unit": "m", + "definition": "" + }, + { + "name": "construction cost", + "value": "65973", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "880", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "5864", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Capital", + "description": "A roof that has the skin of a cut extruded cuboid.", + "icon": "icons/capital.svg", + "image": "images/capital.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capital.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capital_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capital_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/82fd28f19e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/90435c0046", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capital_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The center of the bottom.", + "mandatory": false, + "family": "roof rectangular top", + "compatibleFamilies": [ + "roof rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "peak", + "value": "north west", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height side", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height low", + "value": "1", + "unit": "m", + "definition": "" + }, + { + "name": "wall thickness", + "value": "0.3", + "unit": "m", + "definition": "" + }, + { + "name": "construction cost", + "value": "60025", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "720", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "4802", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Cylindric Capital", + "description": "A roof that has the skin of a cut extruded cylinder.", + "icon": "icons/cylindric-capital.svg", + "image": "images/cylindric-capital.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-capital.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-capital_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ae4ed21120", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-capital_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9e40d26d9a", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-capital_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The center of the bottom.", + "mandatory": false, + "family": "roof circular top", + "compatibleFamilies": [ + "roof circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "peak", + "value": "south west", + "unit": "", + "definition": "" + }, + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "" + }, + { + "name": "height side", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height low", + "value": "1", + "unit": "m", + "definition": "" + }, + { + "name": "wall thickness", + "value": "0.3", + "unit": "m", + "definition": "" + }, + { + "name": "construction cost", + "value": "123029", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "820", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8202", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the front.", + "icon": "icons/capsule_backslash.svg", + "image": "images/capsule_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule_slash.svg", + "image": "images/capsule_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the side.", + "icon": "icons/capsule_q.svg", + "image": "images/capsule_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule_p.svg", + "image": "images/capsule_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the front.", + "icon": "icons/capsule_J.svg", + "image": "images/capsule_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule_L.svg", + "image": "images/capsule_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the side.", + "icon": "icons/capsule_s.svg", + "image": "images/capsule_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule_z.svg", + "image": "images/capsule_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.", + "icon": "icons/capsule-with-balcony_backslash.svg", + "image": "images/capsule-with-balcony_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_slash.svg", + "image": "images/capsule-with-balcony_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.", + "icon": "icons/capsule-with-balcony_q.svg", + "image": "images/capsule-with-balcony_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_p.svg", + "image": "images/capsule-with-balcony_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.", + "icon": "icons/capsule-with-balcony_J.svg", + "image": "images/capsule-with-balcony_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_L.svg", + "image": "images/capsule-with-balcony_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.", + "icon": "icons/capsule-with-balcony_s.svg", + "image": "images/capsule-with-balcony_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_z.svg", + "image": "images/capsule-with-balcony_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_backslash.svg", + "image": "images/ellipsoid-capsule_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f8a0750f34", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/08abe6efbe", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_slash.svg", + "image": "images/ellipsoid-capsule_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/d7c20e7ea4", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/2a87d1fb6f", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_q.svg", + "image": "images/ellipsoid-capsule_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/58af8da8c8", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/d6ddf1d05d", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_p.svg", + "image": "images/ellipsoid-capsule_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/80ad44ffe9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0c53ae86dc", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_J.svg", + "image": "images/ellipsoid-capsule_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/22564f1ee2", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/19c41d4361", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_L.svg", + "image": "images/ellipsoid-capsule_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c35e56f23a", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/fa19ddafc5", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_s.svg", + "image": "images/ellipsoid-capsule_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c5306eb015", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/bfdbce0be1", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_z.svg", + "image": "images/ellipsoid-capsule_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ada7ff222e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ba36f367e7", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.", + "icon": "icons/trapezoid-capsule_backslash.svg", + "image": "images/trapezoid-capsule_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_slash.svg", + "image": "images/trapezoid-capsule_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.", + "icon": "icons/trapezoid-capsule_q.svg", + "image": "images/trapezoid-capsule_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_p.svg", + "image": "images/trapezoid-capsule_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.", + "icon": "icons/trapezoid-capsule_J.svg", + "image": "images/trapezoid-capsule_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_L.svg", + "image": "images/trapezoid-capsule_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.", + "icon": "icons/trapezoid-capsule_s.svg", + "image": "images/trapezoid-capsule_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] + }, + { + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_z.svg", + "image": "images/trapezoid-capsule_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour.svg", + "image": "images/tambour.svg", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f9222724e5", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b27c179b7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular bottom", + "compatibleFamilies": [ + "tambour rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular top", + "compatibleFamilies": [ + "tambour rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour_first-storey.svg", + "image": "images/tambour_first-storey.svg", + "variant": "First Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour_first-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_first-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_first-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/89d6e55762", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c5850e2821", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_first-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core rectangular top", + "compatibleFamilies": [ + "core rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular top", + "compatibleFamilies": [ + "tambourrectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour_last-storey.svg", + "image": "images/tambour_last-storey.svg", + "variant": "Last Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour_last-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_last-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_last-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/53dc156694", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/345fa2173d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_last-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular bottom", + "compatibleFamilies": [ + "tambour rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof rectangular bottom", + "compatibleFamilies": [ + "roof rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour_single-storey.svg", + "image": "images/tambour_single-storey.svg", + "variant": "Single Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour_single-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_single-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_single-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/73566dc911", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/8965b08c83", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_single-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core rectangular top", + "compatibleFamilies": [ + "core rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof rectangular bottom", + "compatibleFamilies": [ + "roof rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour.svg", + "image": "images/cylindric-tambour.svg", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/2a6977ed68", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/1152f570e6", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour circular bottom", + "compatibleFamilies": [ + "tambour circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour circular top", + "compatibleFamilies": [ + "tambour circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour_first-storey.svg", + "image": "images/cylindric-tambour_first-storey.svg", + "variant": "First Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour_first-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_first-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_first-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b862062ab5", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/152ecb7f14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_first-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core circular top", + "compatibleFamilies": [ + "core circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour circular top", + "compatibleFamilies": [ + "tambour circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour_last-storey.svg", + "image": "images/cylindric-tambour_last-storey.svg", + "variant": "Last Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour_last-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_last-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_last-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ec423cca22", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/4088e8e156", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_last-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour circular bottom", + "compatibleFamilies": [ + "tambour circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof circular bottom", + "compatibleFamilies": [ + "roof circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + }, + { + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour_single-storey.svg", + "image": "images/cylindric-tambour_single-storey.svg", + "variant": "Single Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour_single-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_single-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_single-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6e372d67ee", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/025c85ea51", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_single-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core circular top", + "compatibleFamilies": [ + "core circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof circular bottom", + "compatibleFamilies": [ + "roof circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] + } + ], + "designs": [ + { + "name": "Nakagin Capsule Tower", + "description": "The digital shadow of the former Nakagin Capsule Tower which was a mixed-use residential and office tower designed by architect Kisho Kurokawa and located in Shimbashi, Tokyo, Japan. Completed in 1972, the building was a rare remaining example of Japanese Metabolism, an architectural movement emblematic of Japan's postwar cultural resurgence.", + "icon": "icons/nakagin-capsule-tower.svg", + "image": "images/nakagin-capsule-tower.png", + "variant": "", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2349.53", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "22.890446", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.0311e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "2.2088e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.818e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "276616.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "53781.79", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.4854e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "232534", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "99.440124", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "44082.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "83186", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "63366", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "70802", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] + }, + { + "name": "Nakagin Capsule Tower", + "description": "A sloped variant of the Nakagin Capsule Tower where the capsules have balconies and the towers are graduated in opposing directions. Each tower has a direction and every floor is stepped in this direction.", + "icon": "icons/nakagin-capsule-tower_slanted.svg", + "image": "images/nakagin-capsule-tower_slanted.png", + "variant": "Slanted", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2583.27", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "20.819268", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.0311e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "2.2088e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.818e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "276616.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "53781.79", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.4854e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "232534", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "90.442561", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "44082.911111", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "83186", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "63366", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "70802", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] + }, + { + "name": "Nakagin Capsule Tower", + "description": "A twisted variant of the Nakagin Capsule Tower where the capsules are trapezoids and towers are round with the floors twisting in one direction.", + "icon": "icons/nakagin-capsule-tower_twisted.svg", + "image": "images/nakagin-capsule-tower_twisted.png", + "variant": "Twisted", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 267.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 87.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2157.63", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "21.247135", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "1.9389e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "1.8828e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1.5882e+6", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "244724.133333", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "45843.456667", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "2.1275e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "206070", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "94.229007", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "38654.133333", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "70686", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "54102", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "64658", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] + }, + { + "name": "Nakagin Capsule Tower", + "description": "The expolsion axonometry of a futuristic variant of the Nakagin Capsule Tower where two towers are dancing with each other. The capsules are ellipsoids around a round shaft and a blob base.", + "icon": "icons/nakagin-capsule-tower_dancing_axonometry_explosion.svg", + "image": "images/nakagin-capsule-tower_dancing_axonometry_explosion.png", + "variant": "Dancing", + "view": "Explosion Axonometry", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 289.0, + "turn": 0.0, + "tilt": 5.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 100.0, + "turn": 0.0, + "tilt": 5.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 81.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "connecting": { + "piece": { + "id_": "cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "connecting": { + "piece": { + "id_": "br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "2128.8", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "20.170755", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "2.2251e+7", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "3.9635e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "729701", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "411233.988889", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "42939.502222", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "4.3747e+6", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "336342", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "93.568468", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "74891.988889", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "66427", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "50587", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "69173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] + }, + { + "name": "Capsule Dream", + "description": "A wild dream of capsule towers.", + "icon": "icons/capsule-dream.svg", + "image": "images/capsule-dream.png", + "variant": "", + "view": "", + "location": null, + "unit": "m", + "pieces": [ + { + "id_": "Nakagin Capsule Tower,,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 0.0, + "y": 27.5, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 27.5, + "y": 137.5, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 137.5, + "y": 110.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 110.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 9.075, + "y": 63.8, + "z": 0.0 + }, + "xAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 18.425, + "y": 101.2, + "z": 0.0 + }, + "xAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 36.3, + "y": 18.425, + "z": 0.0 + }, + "xAxis": { + "x": -0.44184983, + "y": 0.897089, + "z": 0.0 + }, + "yAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 73.7, + "y": 9.075, + "z": 0.0 + }, + "xAxis": { + "x": -0.897089, + "y": 0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 63.8, + "y": 128.425, + "z": 0.0 + }, + "xAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": 0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 101.2, + "y": 119.075, + "z": 0.0 + }, + "xAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": 0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 119.075, + "y": 36.3, + "z": 0.0 + }, + "xAxis": { + "x": -0.897089, + "y": -0.44184983, + "z": 0.0 + }, + "yAxis": { + "x": 0.44184983, + "y": -0.897089, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 128.425, + "y": 73.7, + "z": 0.0 + }, + "xAxis": { + "x": -0.44184983, + "y": -0.897089, + "z": 0.0 + }, + "yAxis": { + "x": 0.897089, + "y": -0.44184983, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 54.725, + "y": 92.125, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule with Balcony", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 82.775, + "y": 45.375, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Trapezoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b", + "description": "", + "type": { + "name": "Base", + "variant": "" + }, + "plane": { + "origin": { + "x": 45.375, + "y": 54.725, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0", + "description": "", + "type": { + "name": "Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1", + "description": "", + "type": { + "name": "Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b", + "description": "", + "type": { + "name": "Base", + "variant": "Blob" + }, + "plane": { + "origin": { + "x": 92.125, + "y": 82.775, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "yAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + } + }, + "center": { + "x": 0.0, + "y": 0.0 + }, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0", + "description": "", + "type": { + "name": "Bridge", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Capital", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "J" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "\\" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "s" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "/" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "L" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1", + "description": "", + "type": { + "name": "Ellipsoid Capsule", + "variant": "p" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "First Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "Last Storey" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + }, + { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1", + "description": "", + "type": { + "name": "Cylindric Tambour", + "variant": "" + }, + "plane": null, + "center": null, + "hidden": false, + "locked": false, + "attributes": [] + } + ], + "connections": [ + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.15, + "shift": -0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.15, + "shift": 0.2, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.5, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 289.0, + "turn": 0.0, + "tilt": 5.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.0, + "shift": 5.0, + "rise": 0.0, + "rotation": 100.0, + "turn": 0.0, + "tilt": 5.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 81.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 2.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 2.5, + "shift": 0.5, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 2.0, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Dancing,Explosion Axonometry,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 7.5, + "shift": -0.5, + "rise": 0.0, + "rotation": 15.0, + "turn": 0.0, + "tilt": 358.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 267.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -1.0, + "rise": 0.0, + "rotation": 87.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 3.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Slanted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 269.01, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 89.01001, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 267.99, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 87.98999, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 276.27002, + "turn": 0.0, + "tilt": 1.6499939, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 93.29999, + "turn": 0.0, + "tilt": 1.6499939, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 87.03, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.9255, + "shift": -0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.9255, + "shift": 0.299, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": 0.17, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 282.72998, + "turn": 0.0, + "tilt": 3.350006, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 96.70001, + "turn": 0.0, + "tilt": 3.350006, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 83.97, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.7245001, + "shift": -0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.7245001, + "shift": 0.401, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.17, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.98, + "rise": 0.0, + "rotation": 274.26, + "turn": 0.0, + "tilt": 1.6499939, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.98, + "rise": 0.0, + "rotation": 91.29001, + "turn": 0.0, + "tilt": 1.6499939, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 87.03, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 6.9599915, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.02, + "rise": 0.0, + "rotation": 281.74, + "turn": 0.0, + "tilt": 3.350006, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.02, + "rise": 0.0, + "rotation": 95.70999, + "turn": 0.0, + "tilt": 3.350006, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 83.97, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Twisted U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 11.040009, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 269.01, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.33, + "rise": 0.0, + "rotation": 89.01001, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.1005, + "shift": -0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.1005, + "shift": 0.134, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.335, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 267.99, + "turn": 0.0, + "tilt": 0.0, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.67, + "rise": 0.0, + "rotation": 87.98999, + "turn": 0.0, + "tilt": 0.0, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93880373, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.0, + "rise": 0.0, + "rotation": 90.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.15620214, + "y": 0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.15620214, + "y": -0.45880374, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.4399628, + "y": 0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.4399628, + "y": -0.2033045, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.45880374, + "y": -0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.049500003, + "shift": -0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.45880374, + "y": 0.15620214, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": -0.2033045, + "y": -0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.049500003, + "shift": 0.066, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.2033045, + "y": 0.4399628, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower,Slanted U Nakagin Capsule Tower,Twisted,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 0.0, + "shift": 0.165, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 276.27002, + "turn": 0.0, + "tilt": 1.6499939, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 1.65, + "shift": 1.65, + "rise": 0.0, + "rotation": 93.29999, + "turn": 0.0, + "tilt": 1.6499939, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.93, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 1.65, + "shift": 0.0, + "rise": 0.0, + "rotation": 87.03, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.45, + "y": -0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 0.825, + "shift": -0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.45, + "y": 0.18, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": -0.18, + "y": -0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 0.825, + "shift": 0.165, + "rise": 0.0, + "rotation": 0.98999023, + "turn": 0.0, + "tilt": 0.66000366, + "x": 0.18, + "y": 0.45, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.33,0.67,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 2.475, + "shift": -0.165, + "rise": 0.0, + "rotation": 4.950012, + "turn": 0.0, + "tilt": 359.33997, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c0" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 282.72998, + "turn": 0.0, + "tilt": 3.350006, + "x": -1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,b" + }, + "port": { + "id_": "c1" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 3.35, + "shift": 3.35, + "rise": 0.0, + "rotation": 96.70001, + "turn": 0.0, + "tilt": 3.350006, + "x": 1.2, + "y": 1.2, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f2_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f5_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,br_sl0_d2_t_f8_b_c0" + }, + "port": { + "id_": "e" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 0.0, + "shift": -0.8, + "rise": 0.0, + "rotation": 0.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.8468811, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 270.0, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,ci_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 3.35, + "shift": 0.0, + "rise": 0.0, + "rotation": 83.97, + "turn": 0.0, + "tilt": 0.0, + "x": 0.0, + "y": 1.6, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.31669903, + "y": -0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.2554071, + "y": 0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.48408562, + "y": -0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.47442016, + "y": 0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.36688107, + "y": 0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d2_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d2" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.4119068, + "y": -0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.023687685, + "y": 0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl0_d3_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl0_d3" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.099123724, + "y": -0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.31669903, + "y": 0.36688107, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.2554071, + "y": -0.4119068, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.48408562, + "y": 0.023687685, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl1_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl1_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.47442016, + "y": -0.099123724, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.36688107, + "y": -0.31669903, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d0_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d0" + } + }, + "description": "", + "gap": 1.675, + "shift": -0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.4119068, + "y": 0.2554071, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f0_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f1_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f10_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f2_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f3_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f4_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f5_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f6_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f7_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c0" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": -0.023687685, + "y": -0.48408562, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f8_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,cs_sl2_d1_t_f9_b_c1" + }, + "port": { + "id_": "" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "sl2_d1" + } + }, + "description": "", + "gap": 1.675, + "shift": 0.335, + "rise": 0.0, + "rotation": 2.0100098, + "turn": 0.0, + "tilt": 1.3399963, + "x": 0.099123724, + "y": 0.47442016, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f0_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f1_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f10_b_c1" + }, + "port": { + "id_": "b" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "t" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f2_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f3_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f4_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f5_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f6_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c0" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c0" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f7_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + }, + { + "connected": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f8_b_c1" + }, + "port": { + "id_": "t" + } + }, + "connecting": { + "piece": { + "id_": "Nakagin Capsule Tower, U Nakagin Capsule Tower,Dancing,0.67,0.33,,t_f9_b_c1" + }, + "port": { + "id_": "b" + } + }, + "description": "", + "gap": 5.025, + "shift": -0.335, + "rise": 0.0, + "rotation": 10.049988, + "turn": 0.0, + "tilt": 358.66003, + "x": 0.0, + "y": 2.96, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "effective floor area", + "value": "36876.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "specific operational global warming potential", + "value": "21.297397", + "unit": "kgCO2e/m²a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "construction cost", + "value": "3.2905e+8", + "unit": "€", + "definition": "" + }, + { + "name": "return", + "value": "4.1202e+7", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "2.3816e+7", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "operational cost", + "value": "4.6906e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "operational global warming potential", + "value": "785382.405556", + "unit": "kgCO2e/a", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "income", + "value": "4.5893e+7", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "4.0299e+6", + "unit": "€/a", + "definition": "" + }, + { + "name": "specific energy demand", + "value": "94.343562", + "unit": "kWh/m²a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "operational energy cost", + "value": "660707.555556", + "unit": "€/a", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "1.2139e+6", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "925684", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "1.1017e+6", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + } + ] + } + ], + "attributes": [] +} \ No newline at end of file diff --git a/assets/semio/type_base.json b/assets/semio/type_base.json index de84c865e..560bd9c33 100644 --- a/assets/semio/type_base.json +++ b/assets/semio/type_base.json @@ -1 +1,220 @@ -{"name":"Base","description":"A polygonal two storey office building with an entrance hall and access to the staircases and elevators of the rectangular cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.","icon":"icons/base.svg","image":"images/base.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/base.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/base_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/base_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e5267da44d","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b394acfd5c","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/base_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"c0","description":"The center of the east rectangular core (an elevator and a staircase around it).","mandatory":false,"family":"core rectangular bottom","compatibleFamilies":["core rectangular top"],"point":{"x":-7.5,"y":-7.7,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":-0.125,"qualities":[{"name":"core","value":"east","unit":"","definition":""}]},{"id_":"c1","description":"The center of the west rectangular core (an elevator and a staircase around it).","mandatory":false,"family":"core rectangular bottom","compatibleFamilies":["core rectangular top"],"point":{"x":-18.6,"y":-7.7,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.125,"qualities":[{"name":"core","value":"west","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"storey","value":"2","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"3.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"ground floor height","value":"4","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"cores","value":"2","unit":"","definition":""},{"name":"core length","value":"5.5","unit":"m","definition":""},{"name":"core width","value":"5.5","unit":"m","definition":""},{"name":"effective floor area","value":"519.37","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"2856480","unit":"€","definition":""},{"name":"heating energy demand","value":"12984","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"18178","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"20774","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"467424","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"46742","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"415488","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Base", + "description": "A polygonal two storey office building with an entrance hall and access to the staircases and elevators of the rectangular cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.", + "icon": "icons/base.svg", + "image": "images/base.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/base.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/base_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/base_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e5267da44d", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b394acfd5c", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/base_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "c0", + "description": "The center of the east rectangular core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core rectangular bottom", + "compatibleFamilies": [ + "core rectangular top" + ], + "point": { + "x": -7.5, + "y": -7.7, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": -0.125, + "attributes": [ + { + "name": "core", + "value": "east", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "c1", + "description": "The center of the west rectangular core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core rectangular bottom", + "compatibleFamilies": [ + "core rectangular top" + ], + "point": { + "x": -18.6, + "y": -7.7, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.125, + "attributes": [ + { + "name": "core", + "value": "west", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "storey", + "value": "2", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "3.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "ground floor height", + "value": "4", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "cores", + "value": "2", + "unit": "", + "definition": "" + }, + { + "name": "core length", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "core width", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "519.37", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "2856480", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "12984", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "18178", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "20774", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "467424", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "46742", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "415488", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_base_blob.json b/assets/semio/type_base_blob.json index 9ea2b5613..b982794fa 100644 --- a/assets/semio/type_base_blob.json +++ b/assets/semio/type_base_blob.json @@ -1 +1,212 @@ -{"name":"Base","description":"A blobby two storey office building with an entrance hall and access to the staircases and elevators of the round cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.","icon":"icons/base_blob.svg","image":"images/base_blob.png","variant":"Blob","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/base_blob.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/base_blob_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e5d9d8631c","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/base_blob_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/2069b62658","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/base_blob_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"c0","description":"The center of the east round core (an elevator and a staircase around it).","mandatory":false,"family":"core circular bottom","compatibleFamilies":["core circular top"],"point":{"x":-6.75,"y":-7.75,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":-0.125,"qualities":[{"name":"core","value":"east","unit":"","definition":""}]},{"id_":"c1","description":"The center of the west round core (an elevator and a staircase around it).","mandatory":false,"family":"core circular bottom","compatibleFamilies":["core circular top"],"point":{"x":-18.85,"y":-7.75,"z":7.5},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.125,"qualities":[{"name":"core","value":"west","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"storey","value":"2","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"3.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"ground floor height","value":"4","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"cores","value":"2","unit":"","definition":""},{"name":"core diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"effective floor area","value":"532.12","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"3990871","unit":"€","definition":""},{"name":"heating energy demand","value":"15963","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"21285","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"21285","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"542759","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"54276","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"478905","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Base", + "description": "A blobby two storey office building with an entrance hall and access to the staircases and elevators of the round cores on the groundfloor. It has a setback and a colonade towards the street. On the second floor are the office rooms.", + "icon": "icons/base_blob.svg", + "image": "images/base_blob.png", + "variant": "Blob", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/base_blob.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/base_blob_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e5d9d8631c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/base_blob_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/2069b62658", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/base_blob_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "c0", + "description": "The center of the east round core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core circular bottom", + "compatibleFamilies": [ + "core circular top" + ], + "point": { + "x": -6.75, + "y": -7.75, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": -0.125, + "attributes": [ + { + "name": "core", + "value": "east", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "c1", + "description": "The center of the west round core (an elevator and a staircase around it).", + "mandatory": false, + "family": "core circular bottom", + "compatibleFamilies": [ + "core circular top" + ], + "point": { + "x": -18.85, + "y": -7.75, + "z": 7.5 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.125, + "attributes": [ + { + "name": "core", + "value": "west", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "storey", + "value": "2", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "3.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "ground floor height", + "value": "4", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "cores", + "value": "2", + "unit": "", + "definition": "" + }, + { + "name": "core diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "effective floor area", + "value": "532.12", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "3990871", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "15963", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "21285", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "21285", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "542759", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "54276", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "478905", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_bridge.json b/assets/semio/type_bridge.json index 9a3ff69d8..484fe0164 100644 --- a/assets/semio/type_bridge.json +++ b/assets/semio/type_bridge.json @@ -1 +1,218 @@ -{"name":"Bridge","description":"A bridge with two segments an addition on the west along the main path.","icon":"","image":"images/bridge.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/bridge.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/bridge_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/833a270493","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/bridge_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c7c924a1d6","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/bridge_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"e","description":"The middle of the east side of the plattform.","mandatory":false,"family":"platform east","compatibleFamilies":["door tambour west"],"point":{"x":5.6,"y":-1.3,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.25,"qualities":[{"name":"east","value":"","unit":"","definition":""}]},{"id_":"w","description":"The middle of the west side of the plattform.","mandatory":false,"family":"platform west","compatibleFamilies":["door tambour east"],"point":{"x":0.0,"y":-1.3,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.75,"qualities":[{"name":"west","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"length","value":"5.6","unit":"m","definition":""},{"name":"platform west length","value":"2.6","unit":"m","definition":""},{"name":"platform east length","value":"2.6","unit":"m","definition":""},{"name":"gap","value":"0.4","unit":"m","definition":""},{"name":"width","value":"2.6","unit":"m","definition":""},{"name":"height","value":"2.5","unit":"m","definition":""},{"name":"base height","value":"20","unit":"m","definition":""},{"name":"primary rod diameter","value":"10","unit":"m","definition":""},{"name":"secondary rod diameter","value":"8","unit":"m","definition":""},{"name":"tertiary rod diameter","value":"6","unit":"m","definition":""},{"name":"parapet height","value":"125","unit":"m","definition":""},{"name":"construction cost","value":"65973","unit":"€","definition":""},{"name":"maintenance expenses","value":"880","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"5864","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Bridge", + "description": "A bridge with two segments an addition on the west along the main path.", + "icon": "", + "image": "images/bridge.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/bridge.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/bridge_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/833a270493", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/bridge_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c7c924a1d6", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/bridge_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "e", + "description": "The middle of the east side of the plattform.", + "mandatory": false, + "family": "platform east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 5.6, + "y": -1.3, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.25, + "attributes": [ + { + "name": "east", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "w", + "description": "The middle of the west side of the plattform.", + "mandatory": false, + "family": "platform west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.0, + "y": -1.3, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.75, + "attributes": [ + { + "name": "west", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "length", + "value": "5.6", + "unit": "m", + "definition": "" + }, + { + "name": "platform west length", + "value": "2.6", + "unit": "m", + "definition": "" + }, + { + "name": "platform east length", + "value": "2.6", + "unit": "m", + "definition": "" + }, + { + "name": "gap", + "value": "0.4", + "unit": "m", + "definition": "" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "" + }, + { + "name": "height", + "value": "2.5", + "unit": "m", + "definition": "" + }, + { + "name": "base height", + "value": "20", + "unit": "m", + "definition": "" + }, + { + "name": "primary rod diameter", + "value": "10", + "unit": "m", + "definition": "" + }, + { + "name": "secondary rod diameter", + "value": "8", + "unit": "m", + "definition": "" + }, + { + "name": "tertiary rod diameter", + "value": "6", + "unit": "m", + "definition": "" + }, + { + "name": "parapet height", + "value": "125", + "unit": "m", + "definition": "" + }, + { + "name": "construction cost", + "value": "65973", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "880", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "5864", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capital.json b/assets/semio/type_capital.json index a4e32fb89..0f1e19b02 100644 --- a/assets/semio/type_capital.json +++ b/assets/semio/type_capital.json @@ -1 +1,172 @@ -{"name":"Capital","description":"A roof that has the skin of a cut extruded cuboid.","icon":"icons/capital.svg","image":"images/capital.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capital.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capital_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capital_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/82fd28f19e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/90435c0046","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capital_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The center of the bottom.","mandatory":false,"family":"roof rectangular top","compatibleFamilies":["roof rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.0,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"peak","value":"north west","unit":"","definition":""},{"name":"length","value":"5.5","unit":"m","definition":""},{"name":"width","value":"5.5","unit":"m","definition":""},{"name":"height","value":"5.5","unit":"m","definition":""},{"name":"height side","value":"5.5","unit":"m","definition":""},{"name":"height low","value":"1","unit":"m","definition":""},{"name":"wall thickness","value":"0.3","unit":"m","definition":""},{"name":"construction cost","value":"60025","unit":"€","definition":""},{"name":"maintenance expenses","value":"720","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"4802","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Capital", + "description": "A roof that has the skin of a cut extruded cuboid.", + "icon": "icons/capital.svg", + "image": "images/capital.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capital.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capital_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capital_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/82fd28f19e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/90435c0046", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capital_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The center of the bottom.", + "mandatory": false, + "family": "roof rectangular top", + "compatibleFamilies": [ + "roof rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "peak", + "value": "north west", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height side", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height low", + "value": "1", + "unit": "m", + "definition": "" + }, + { + "name": "wall thickness", + "value": "0.3", + "unit": "m", + "definition": "" + }, + { + "name": "construction cost", + "value": "60025", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "720", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "4802", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_backslash.json b/assets/semio/type_capsule-with-balcony_backslash.json index d1671623c..4136eddfa 100644 --- a/assets/semio/type_capsule-with-balcony_backslash.json +++ b/assets/semio/type_capsule-with-balcony_backslash.json @@ -1 +1,190 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.","icon":"icons/capsule-with-balcony_backslash.svg","image":"images/capsule-with-balcony_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.", + "icon": "icons/capsule-with-balcony_backslash.svg", + "image": "images/capsule-with-balcony_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_j.json b/assets/semio/type_capsule-with-balcony_j.json index 4b0c6efac..ef775f63c 100644 --- a/assets/semio/type_capsule-with-balcony_j.json +++ b/assets/semio/type_capsule-with-balcony_j.json @@ -1 +1,190 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.","icon":"icons/capsule-with-balcony_J.svg","image":"images/capsule-with-balcony_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.", + "icon": "icons/capsule-with-balcony_J.svg", + "image": "images/capsule-with-balcony_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_l.json b/assets/semio/type_capsule-with-balcony_l.json index 94f25b37e..ec4a38adb 100644 --- a/assets/semio/type_capsule-with-balcony_l.json +++ b/assets/semio/type_capsule-with-balcony_l.json @@ -1 +1,196 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_L.svg","image":"images/capsule-with-balcony_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_L.svg", + "image": "images/capsule-with-balcony_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_p.json b/assets/semio/type_capsule-with-balcony_p.json index aff4aaa6a..05ddd4e7b 100644 --- a/assets/semio/type_capsule-with-balcony_p.json +++ b/assets/semio/type_capsule-with-balcony_p.json @@ -1 +1,196 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_p.svg","image":"images/capsule-with-balcony_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_p.svg", + "image": "images/capsule-with-balcony_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_q.json b/assets/semio/type_capsule-with-balcony_q.json index 9821dcf16..f579b6405 100644 --- a/assets/semio/type_capsule-with-balcony_q.json +++ b/assets/semio/type_capsule-with-balcony_q.json @@ -1 +1,190 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.","icon":"icons/capsule-with-balcony_q.svg","image":"images/capsule-with-balcony_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.", + "icon": "icons/capsule-with-balcony_q.svg", + "image": "images/capsule-with-balcony_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_s.json b/assets/semio/type_capsule-with-balcony_s.json index be4d626ff..02a31912c 100644 --- a/assets/semio/type_capsule-with-balcony_s.json +++ b/assets/semio/type_capsule-with-balcony_s.json @@ -1 +1,190 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.","icon":"icons/capsule-with-balcony_s.svg","image":"images/capsule-with-balcony_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.", + "icon": "icons/capsule-with-balcony_s.svg", + "image": "images/capsule-with-balcony_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_slash.json b/assets/semio/type_capsule-with-balcony_slash.json index 89031b8a5..fbb6607ec 100644 --- a/assets/semio/type_capsule-with-balcony_slash.json +++ b/assets/semio/type_capsule-with-balcony_slash.json @@ -1 +1,196 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_slash.svg","image":"images/capsule-with-balcony_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"5.7","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"10.17","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_slash.svg", + "image": "images/capsule-with-balcony_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "5.7", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "10.17", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule-with-balcony_z.json b/assets/semio/type_capsule-with-balcony_z.json index 66cb5c76b..6a494b2b7 100644 --- a/assets/semio/type_capsule-with-balcony_z.json +++ b/assets/semio/type_capsule-with-balcony_z.json @@ -1 +1,196 @@ -{"name":"Capsule with Balcony","description":"An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule-with-balcony_z.svg","image":"images/capsule-with-balcony_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule-with-balcony_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule-with-balcony_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule-with-balcony_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule-with-balcony_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4.1","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"11.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule with Balcony", + "description": "An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule-with-balcony_z.svg", + "image": "images/capsule-with-balcony_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule-with-balcony_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule-with-balcony_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4.1", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "11.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_backslash.json b/assets/semio/type_capsule_backslash.json index 80b7b3eda..f0e4da086 100644 --- a/assets/semio/type_capsule_backslash.json +++ b/assets/semio/type_capsule_backslash.json @@ -1 +1,190 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the front.","icon":"icons/capsule_backslash.svg","image":"images/capsule_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the front.", + "icon": "icons/capsule_backslash.svg", + "image": "images/capsule_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_j.json b/assets/semio/type_capsule_j.json index 3e8b78ef6..9b6d301c5 100644 --- a/assets/semio/type_capsule_j.json +++ b/assets/semio/type_capsule_j.json @@ -1 +1,190 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the front.","icon":"icons/capsule_J.svg","image":"images/capsule_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the front.", + "icon": "icons/capsule_J.svg", + "image": "images/capsule_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_l.json b/assets/semio/type_capsule_l.json index 22987e533..fbcaf3ce2 100644 --- a/assets/semio/type_capsule_l.json +++ b/assets/semio/type_capsule_l.json @@ -1 +1,196 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule_L.svg","image":"images/capsule_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule_L.svg", + "image": "images/capsule_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_p.json b/assets/semio/type_capsule_p.json index 40d79d208..2cfec19aa 100644 --- a/assets/semio/type_capsule_p.json +++ b/assets/semio/type_capsule_p.json @@ -1 +1,196 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule_p.svg","image":"images/capsule_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule_p.svg", + "image": "images/capsule_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_q.json b/assets/semio/type_capsule_q.json index 8a4289d85..c376e406d 100644 --- a/assets/semio/type_capsule_q.json +++ b/assets/semio/type_capsule_q.json @@ -1 +1,190 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the side.","icon":"icons/capsule_q.svg","image":"images/capsule_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the side.", + "icon": "icons/capsule_q.svg", + "image": "images/capsule_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_s.json b/assets/semio/type_capsule_s.json index 0ed6841b5..eb5f3c009 100644 --- a/assets/semio/type_capsule_s.json +++ b/assets/semio/type_capsule_s.json @@ -1 +1,190 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the side.","icon":"icons/capsule_s.svg","image":"images/capsule_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour west"],"point":{"x":-1.3,"y":-1.25,"z":0.0},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the side.", + "icon": "icons/capsule_s.svg", + "image": "images/capsule_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_slash.json b/assets/semio/type_capsule_slash.json index 96852fdd9..5707099a5 100644 --- a/assets/semio/type_capsule_slash.json +++ b/assets/semio/type_capsule_slash.json @@ -1 +1,196 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the back and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/capsule_slash.svg","image":"images/capsule_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":-0.45,"y":-2.1,"z":2.7755576E-17},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the back and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/capsule_slash.svg", + "image": "images/capsule_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.45, + "y": -2.1, + "z": 2.7755576e-17 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_capsule_z.json b/assets/semio/type_capsule_z.json index 77a8d95d3..4de0f047d 100644 --- a/assets/semio/type_capsule_z.json +++ b/assets/semio/type_capsule_z.json @@ -1 +1,196 @@ -{"name":"Capsule","description":"An apartment capsule for one person. It has the entrance on the side and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/capsule_z.svg","image":"images/capsule_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/capsule_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/capsule_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/capsule_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/capsule_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour east"],"point":{"x":1.3,"y":-1.25,"z":0.0},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"4.2","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"8.74","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"82992","unit":"€","definition":""},{"name":"heating energy demand","value":"393","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"262","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"13104","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1048","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8736.01","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Capsule", + "description": "An apartment capsule for one person. It has the entrance on the side and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/capsule_z.svg", + "image": "images/capsule_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/capsule_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/capsule_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/capsule_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/capsule_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 1.3, + "y": -1.25, + "z": 0.0 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "4.2", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "8.74", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "82992", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "393", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "262", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "13104", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1048", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8736.01", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_cylindric-capital.json b/assets/semio/type_cylindric-capital.json index ec7d1be14..05d41a68a 100644 --- a/assets/semio/type_cylindric-capital.json +++ b/assets/semio/type_cylindric-capital.json @@ -1 +1,160 @@ -{"name":"Cylindric Capital","description":"A roof that has the skin of a cut extruded cylinder.","icon":"icons/cylindric-capital.svg","image":"images/cylindric-capital.png","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-capital.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-capital_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ae4ed21120","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-capital_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9e40d26d9a","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-capital_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The center of the bottom.","mandatory":false,"family":"roof circular top","compatibleFamilies":["roof circular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.0,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"peak","value":"south west","unit":"","definition":""},{"name":"diameter","value":"6.5","unit":"m","definition":""},{"name":"height side","value":"5.5","unit":"m","definition":""},{"name":"height low","value":"1","unit":"m","definition":""},{"name":"wall thickness","value":"0.3","unit":"m","definition":""},{"name":"construction cost","value":"123029","unit":"€","definition":""},{"name":"maintenance expenses","value":"820","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"8202","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Cylindric Capital", + "description": "A roof that has the skin of a cut extruded cylinder.", + "icon": "icons/cylindric-capital.svg", + "image": "images/cylindric-capital.png", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-capital.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-capital_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ae4ed21120", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-capital_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9e40d26d9a", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-capital_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The center of the bottom.", + "mandatory": false, + "family": "roof circular top", + "compatibleFamilies": [ + "roof circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "peak", + "value": "south west", + "unit": "", + "definition": "" + }, + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "" + }, + { + "name": "height side", + "value": "5.5", + "unit": "m", + "definition": "" + }, + { + "name": "height low", + "value": "1", + "unit": "m", + "definition": "" + }, + { + "name": "wall thickness", + "value": "0.3", + "unit": "m", + "definition": "" + }, + { + "name": "construction cost", + "value": "123029", + "unit": "€", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "820", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "8202", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_cylindric-tambour.json b/assets/semio/type_cylindric-tambour.json index 1753cd6d1..695fb2f4e 100644 --- a/assets/semio/type_cylindric-tambour.json +++ b/assets/semio/type_cylindric-tambour.json @@ -1 +1,394 @@ -{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour.svg","image":"images/cylindric-tambour.svg","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/2a6977ed68","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/1152f570e6","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour circular bottom","compatibleFamilies":["tambour circular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour circular top","compatibleFamilies":["tambour circular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour.svg", + "image": "images/cylindric-tambour.svg", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/2a6977ed68", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/1152f570e6", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour circular bottom", + "compatibleFamilies": [ + "tambour circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour circular top", + "compatibleFamilies": [ + "tambour circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_cylindric-tambour_first-storey.json b/assets/semio/type_cylindric-tambour_first-storey.json index 5da1ae180..4aab98fb2 100644 --- a/assets/semio/type_cylindric-tambour_first-storey.json +++ b/assets/semio/type_cylindric-tambour_first-storey.json @@ -1 +1,394 @@ -{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour_first-storey.svg","image":"images/cylindric-tambour_first-storey.svg","variant":"First Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour_first-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_first-storey_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_first-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b862062ab5","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/152ecb7f14","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_first-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core circular top","compatibleFamilies":["core circular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour circular top","compatibleFamilies":["tambour circular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour_first-storey.svg", + "image": "images/cylindric-tambour_first-storey.svg", + "variant": "First Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour_first-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_first-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_first-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b862062ab5", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/152ecb7f14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_first-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core circular top", + "compatibleFamilies": [ + "core circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour circular top", + "compatibleFamilies": [ + "tambour circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_cylindric-tambour_last-storey.json b/assets/semio/type_cylindric-tambour_last-storey.json index 57e41e080..de63d8524 100644 --- a/assets/semio/type_cylindric-tambour_last-storey.json +++ b/assets/semio/type_cylindric-tambour_last-storey.json @@ -1 +1,394 @@ -{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour_last-storey.svg","image":"images/cylindric-tambour_last-storey.svg","variant":"Last Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour_last-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_last-storey_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_last-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ec423cca22","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/4088e8e156","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_last-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour circular bottom","compatibleFamilies":["tambour circular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof circular bottom","compatibleFamilies":["roof circular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour_last-storey.svg", + "image": "images/cylindric-tambour_last-storey.svg", + "variant": "Last Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour_last-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_last-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_last-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ec423cca22", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/4088e8e156", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_last-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour circular bottom", + "compatibleFamilies": [ + "tambour circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof circular bottom", + "compatibleFamilies": [ + "roof circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_cylindric-tambour_single-storey.json b/assets/semio/type_cylindric-tambour_single-storey.json index 859b37d47..8cdddbf46 100644 --- a/assets/semio/type_cylindric-tambour_single-storey.json +++ b/assets/semio/type_cylindric-tambour_single-storey.json @@ -1 +1,394 @@ -{"name":"Cylindric Tambour","description":"An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.","icon":"icons/cylindric-tambour_single-storey.svg","image":"images/cylindric-tambour_single-storey.svg","variant":"Single Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/cylindric-tambour_single-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/cylindric-tambour_single-storey_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/cylindric-tambour_single-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6e372d67ee","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/025c85ea51","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/cylindric-tambour_single-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core circular top","compatibleFamilies":["core circular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof circular bottom","compatibleFamilies":["roof circular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":0.97101486,"y":0.23901905,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":0.23901905,"y":0.97101486,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.7768119,"y":3.1557984,"z":0.2},"direction":{"x":-0.23901905,"y":0.97101486,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-3.1557984,"y":0.7768119,"z":0.2},"direction":{"x":-0.97101486,"y":0.23901905,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-3.1557984,"y":-0.7768119,"z":1.1166667},"direction":{"x":-0.97101486,"y":-0.23901905,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.7768119,"y":-3.1557984,"z":1.1166667},"direction":{"x":-0.23901905,"y":-0.97101486,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.7768119,"y":-3.1557984,"z":2.0333333},"direction":{"x":0.23901905,"y":-0.97101486,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":3.1557984,"y":-0.7768119,"z":2.0333333},"direction":{"x":0.97101486,"y":-0.23901905,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"diameter","value":"6.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter"},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.75","unit":"m","definition":""},{"name":"effective floor area","value":"26.55","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"278738","unit":"€","definition":""},{"name":"heating energy demand","value":"398","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"133","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"531","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1115","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1600","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Cylindric Tambour", + "description": "An efficient 1 storey core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. Hence the doors are spiraling around.", + "icon": "icons/cylindric-tambour_single-storey.svg", + "image": "images/cylindric-tambour_single-storey.svg", + "variant": "Single Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/cylindric-tambour_single-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_single-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_single-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6e372d67ee", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/025c85ea51", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/cylindric-tambour_single-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core circular top", + "compatibleFamilies": [ + "core circular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof circular bottom", + "compatibleFamilies": [ + "roof circular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": 0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": 0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.7768119, + "y": 3.1557984, + "z": 0.2 + }, + "direction": { + "x": -0.23901905, + "y": 0.97101486, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -3.1557984, + "y": 0.7768119, + "z": 0.2 + }, + "direction": { + "x": -0.97101486, + "y": 0.23901905, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -3.1557984, + "y": -0.7768119, + "z": 1.1166667 + }, + "direction": { + "x": -0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.7768119, + "y": -3.1557984, + "z": 1.1166667 + }, + "direction": { + "x": -0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.7768119, + "y": -3.1557984, + "z": 2.0333333 + }, + "direction": { + "x": 0.23901905, + "y": -0.97101486, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 3.1557984, + "y": -0.7768119, + "z": 2.0333333 + }, + "direction": { + "x": 0.97101486, + "y": -0.23901905, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "diameter", + "value": "6.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Diameter" + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.75", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "26.55", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "278738", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "398", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "133", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "531", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1115", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1600", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_backslash.json b/assets/semio/type_ellipsoid-capsule_backslash.json index d06979ac5..31a79cfdf 100644 --- a/assets/semio/type_ellipsoid-capsule_backslash.json +++ b/assets/semio/type_ellipsoid-capsule_backslash.json @@ -1 +1,191 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_backslash.svg","image":"images/ellipsoid-capsule_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f8a0750f34","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/08abe6efbe","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_backslash.svg", + "image": "images/ellipsoid-capsule_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f8a0750f34", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/08abe6efbe", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_j.json b/assets/semio/type_ellipsoid-capsule_j.json index 7de688e5a..f1311be46 100644 --- a/assets/semio/type_ellipsoid-capsule_j.json +++ b/assets/semio/type_ellipsoid-capsule_j.json @@ -1 +1,191 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_J.svg","image":"images/ellipsoid-capsule_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/22564f1ee2","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/19c41d4361","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_J.svg", + "image": "images/ellipsoid-capsule_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/22564f1ee2", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/19c41d4361", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_l.json b/assets/semio/type_ellipsoid-capsule_l.json index 4d4789182..09c1318d3 100644 --- a/assets/semio/type_ellipsoid-capsule_l.json +++ b/assets/semio/type_ellipsoid-capsule_l.json @@ -1 +1,197 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_L.svg","image":"images/ellipsoid-capsule_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c35e56f23a","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/fa19ddafc5","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_L.svg", + "image": "images/ellipsoid-capsule_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c35e56f23a", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/fa19ddafc5", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_p.json b/assets/semio/type_ellipsoid-capsule_p.json index bbeb24476..7eb3c4af1 100644 --- a/assets/semio/type_ellipsoid-capsule_p.json +++ b/assets/semio/type_ellipsoid-capsule_p.json @@ -1 +1,197 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_p.svg","image":"images/ellipsoid-capsule_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/80ad44ffe9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0c53ae86dc","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_p.svg", + "image": "images/ellipsoid-capsule_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/80ad44ffe9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0c53ae86dc", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_q.json b/assets/semio/type_ellipsoid-capsule_q.json index 96335b679..253d06a62 100644 --- a/assets/semio/type_ellipsoid-capsule_q.json +++ b/assets/semio/type_ellipsoid-capsule_q.json @@ -1 +1,191 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_q.svg","image":"images/ellipsoid-capsule_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/58af8da8c8","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/d6ddf1d05d","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_q.svg", + "image": "images/ellipsoid-capsule_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/58af8da8c8", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/d6ddf1d05d", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_s.json b/assets/semio/type_ellipsoid-capsule_s.json index 7a26bbe6f..4b4b5ad82 100644 --- a/assets/semio/type_ellipsoid-capsule_s.json +++ b/assets/semio/type_ellipsoid-capsule_s.json @@ -1 +1,191 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .","icon":"icons/ellipsoid-capsule_s.svg","image":"images/ellipsoid-capsule_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c5306eb015","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/bfdbce0be1","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the .", + "icon": "icons/ellipsoid-capsule_s.svg", + "image": "images/ellipsoid-capsule_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c5306eb015", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/bfdbce0be1", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_slash.json b/assets/semio/type_ellipsoid-capsule_slash.json index e005c4037..0627efa2d 100644 --- a/assets/semio/type_ellipsoid-capsule_slash.json +++ b/assets/semio/type_ellipsoid-capsule_slash.json @@ -1 +1,197 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_slash.svg","image":"images/ellipsoid-capsule_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/d7c20e7ea4","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/2a87d1fb6f","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":-0.87,"y":-1.8,"z":0.0},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_slash.svg", + "image": "images/ellipsoid-capsule_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/d7c20e7ea4", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/2a87d1fb6f", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": -0.87, + "y": -1.8, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_ellipsoid-capsule_z.json b/assets/semio/type_ellipsoid-capsule_z.json index 28109236d..d8abecad8 100644 --- a/assets/semio/type_ellipsoid-capsule_z.json +++ b/assets/semio/type_ellipsoid-capsule_z.json @@ -1 +1,197 @@ -{"name":"Ellipsoid Capsule","description":"An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.","icon":"icons/ellipsoid-capsule_z.svg","image":"images/ellipsoid-capsule_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/ellipsoid-capsule_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/ellipsoid-capsule_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/ellipsoid-capsule_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ada7ff222e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ba36f367e7","description":"","tags":["application/octet-stream","model/vnd.speckle+json","model/vnd.3dm","1to200"],"qualities":[]},{"url":"representations/ellipsoid-capsule_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule west","compatibleFamilies":["door tambour west"],"point":{"x":2.0,"y":-0.67,"z":-2.7755576E-17},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"length","value":"3.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length"},{"name":"width","value":"4","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width"},{"name":"heigth","value":"2.6","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"window shape","value":"round","unit":"","definition":""},{"name":"effective floor area","value":"6.92","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"79488","unit":"€","definition":""},{"name":"heating energy demand","value":"276","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"173","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"24883","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"1659","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1200","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Ellipsoid Capsule", + "description": "An ellipsoid sleeping capsule for one person. It has the entrance on the and has the view to the . It is mirrored compared to the normal one.", + "icon": "icons/ellipsoid-capsule_z.svg", + "image": "images/ellipsoid-capsule_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/ellipsoid-capsule_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ada7ff222e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ba36f367e7", + "description": "", + "tags": [ + "application/octet-stream", + "model/vnd.speckle+json", + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "representations/ellipsoid-capsule_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule west", + "compatibleFamilies": [ + "door tambour west" + ], + "point": { + "x": 2.0, + "y": -0.67, + "z": -2.7755576e-17 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "length", + "value": "3.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Length" + }, + { + "name": "width", + "value": "4", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width" + }, + { + "name": "heigth", + "value": "2.6", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "window shape", + "value": "round", + "unit": "", + "definition": "" + }, + { + "name": "effective floor area", + "value": "6.92", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "79488", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "276", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "173", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "24883", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "1659", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1200", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_tambour.json b/assets/semio/type_tambour.json index e3c8ed479..cb3f8ac1b 100644 --- a/assets/semio/type_tambour.json +++ b/assets/semio/type_tambour.json @@ -1 +1,398 @@ -{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour.svg","image":"images/tambour.svg","variant":"","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f9222724e5","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b27c179b7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour rectangular bottom","compatibleFamilies":["tambour rectangular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour rectangular top","compatibleFamilies":["tambour rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour.svg", + "image": "images/tambour.svg", + "variant": "", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f9222724e5", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b27c179b7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular bottom", + "compatibleFamilies": [ + "tambour rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular top", + "compatibleFamilies": [ + "tambour rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_tambour_first-storey.json b/assets/semio/type_tambour_first-storey.json index 1b1f8facb..49630c4d0 100644 --- a/assets/semio/type_tambour_first-storey.json +++ b/assets/semio/type_tambour_first-storey.json @@ -1 +1,398 @@ -{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour_first-storey.svg","image":"images/tambour_first-storey.svg","variant":"First Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour_first-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_first-storey_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_first-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/89d6e55762","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c5850e2821","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_first-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core rectangular top","compatibleFamilies":["core rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"tambour rectangular top","compatibleFamilies":["tambourrectangular bottom"],"point":{"x":0.0,"y":0.0,"z":3.6666667},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour_first-storey.svg", + "image": "images/tambour_first-storey.svg", + "variant": "First Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour_first-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_first-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_first-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/89d6e55762", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c5850e2821", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_first-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core rectangular top", + "compatibleFamilies": [ + "core rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular top", + "compatibleFamilies": [ + "tambourrectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 3.6666667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_tambour_last-storey.json b/assets/semio/type_tambour_last-storey.json index ec4b70fe7..676038cfc 100644 --- a/assets/semio/type_tambour_last-storey.json +++ b/assets/semio/type_tambour_last-storey.json @@ -1 +1,398 @@ -{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour_last-storey.svg","image":"images/tambour_last-storey.svg","variant":"Last Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour_last-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_last-storey_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_last-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/53dc156694","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/345fa2173d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_last-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"tambour rectangular bottom","compatibleFamilies":["tambour rectangular top"],"point":{"x":0.0,"y":0.0,"z":0.9166667},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof rectangular bottom","compatibleFamilies":["roof rectangular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour_last-storey.svg", + "image": "images/tambour_last-storey.svg", + "variant": "Last Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour_last-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_last-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_last-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/53dc156694", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/345fa2173d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_last-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "tambour rectangular bottom", + "compatibleFamilies": [ + "tambour rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.9166667 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof rectangular bottom", + "compatibleFamilies": [ + "roof rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_tambour_single-storey.json b/assets/semio/type_tambour_single-storey.json index e7037fce4..cce31840b 100644 --- a/assets/semio/type_tambour_single-storey.json +++ b/assets/semio/type_tambour_single-storey.json @@ -1 +1,398 @@ -{"name":"Tambour","description":"An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.","icon":"icons/tambour_single-storey.svg","image":"images/tambour_single-storey.svg","variant":"Single Storey","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/tambour_single-storey.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/tambour_single-storey_1to500.3dm","description":"","tags":["model/vnd.3dm"],"qualities":[]},{"url":"representations/tambour_single-storey_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/73566dc911","description":"","tags":["model/vnd.3dm","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/8965b08c83","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/tambour_single-storey_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"b","description":"The bottom system center of the elevator.","mandatory":false,"family":"core rectangular top","compatibleFamilies":["core rectangular bottom"],"point":{"x":0.0,"y":0.0,"z":0.0},"direction":{"x":0.0,"y":0.0,"z":-1.0},"t":0.5,"qualities":[{"name":"bottom","value":"","unit":"","definition":""},{"name":"wasp rotation","value":"180","unit":"","definition":""}]},{"id_":"t","description":"The top system center of the elevator.","mandatory":false,"family":"roof rectangular bottom","compatibleFamilies":["roof rectangular top"],"point":{"x":0.0,"y":0.0,"z":4.5833335},"direction":{"x":0.0,"y":0.0,"z":1.0},"t":0.0,"qualities":[{"name":"top","value":"","unit":"","definition":""}]},{"id_":"sl0_d0","description":"The first door of the side plattform in the east facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":2.75,"y":0.9,"z":0.2},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.2,"qualities":[]},{"id_":"sl0_d1","description":"The second door of the side plattform in the north facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.05,"qualities":[]},{"id_":"sl0_d2","description":"The third door of the side plattform in the north facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-0.9,"y":2.75,"z":0.2},"direction":{"x":0.0,"y":1.0,"z":0.0},"t":0.95,"qualities":[]},{"id_":"sl0_d3","description":"The fourth door of the side plattform in the west facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-2.75,"y":0.9,"z":0.2},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.8,"qualities":[]},{"id_":"sl1_d0","description":"The first door of the main plattform in the west facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":-2.75,"y":-0.9,"z":1.1166667},"direction":{"x":-1.0,"y":0.0,"z":0.0},"t":0.7,"qualities":[]},{"id_":"sl1_d1","description":"The second door of the main plattform in the south facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":-0.9,"y":-2.75,"z":1.1166667},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.55,"qualities":[]},{"id_":"sl2_d0","description":"The first door of the main plattform in the south facade.","mandatory":false,"family":"door tambour west","compatibleFamilies":["door capsule east","platform west"],"point":{"x":0.9,"y":-2.75,"z":2.0333333},"direction":{"x":0.0,"y":-1.0,"z":0.0},"t":0.45,"qualities":[]},{"id_":"sl2_d1","description":"The second door of the main plattform in the east facade.","mandatory":false,"family":"door tambour east","compatibleFamilies":["door capsule west","platform east"],"point":{"x":2.75,"y":-0.9,"z":2.0333333},"direction":{"x":1.0,"y":0.0,"z":0.0},"t":0.3,"qualities":[]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"width","value":"5.5","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width "},{"name":"storeys","value":"1","unit":"","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey"},{"name":"floor height","value":"2.75","unit":"m","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight"},{"name":"platform","value":"north","unit":"","definition":""},{"name":"door width","value":"0.8","unit":"m","definition":""},{"name":"door height","value":"2","unit":"m","definition":""},{"name":"door offset","value":"1.15","unit":"m","definition":""},{"name":"effective floor area","value":"24.21","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"217800","unit":"€","definition":""},{"name":"heating energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"242","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"484","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"maintenance expenses","value":"1016","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"1500","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979"}]} \ No newline at end of file +{ + "name": "Tambour", + "description": "An efficient one storey tambour for a rectangular shaft core with an elevator in the center, the main platform on the north, and on the other corners sides platforms with two doors. There is a stair between \r\nevery platform. The doors are spiraling around.", + "icon": "icons/tambour_single-storey.svg", + "image": "images/tambour_single-storey.svg", + "variant": "Single Storey", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/tambour_single-storey.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/tambour_single-storey_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm" + ], + "attributes": [] + }, + { + "url": "representations/tambour_single-storey_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/73566dc911", + "description": "", + "tags": [ + "model/vnd.3dm", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/8965b08c83", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/tambour_single-storey_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "b", + "description": "The bottom system center of the elevator.", + "mandatory": false, + "family": "core rectangular top", + "compatibleFamilies": [ + "core rectangular bottom" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "t": 0.5, + "attributes": [ + { + "name": "bottom", + "value": "", + "unit": "", + "definition": "" + }, + { + "name": "wasp rotation", + "value": "180", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "t", + "description": "The top system center of the elevator.", + "mandatory": false, + "family": "roof rectangular bottom", + "compatibleFamilies": [ + "roof rectangular top" + ], + "point": { + "x": 0.0, + "y": 0.0, + "z": 4.5833335 + }, + "direction": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "top", + "value": "", + "unit": "", + "definition": "" + } + ] + }, + { + "id_": "sl0_d0", + "description": "The first door of the side plattform in the east facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.2, + "attributes": [] + }, + { + "id_": "sl0_d1", + "description": "The second door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.05, + "attributes": [] + }, + { + "id_": "sl0_d2", + "description": "The third door of the side plattform in the north facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -0.9, + "y": 2.75, + "z": 0.2 + }, + "direction": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "t": 0.95, + "attributes": [] + }, + { + "id_": "sl0_d3", + "description": "The fourth door of the side plattform in the west facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -2.75, + "y": 0.9, + "z": 0.2 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.8, + "attributes": [] + }, + { + "id_": "sl1_d0", + "description": "The first door of the main plattform in the west facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": -2.75, + "y": -0.9, + "z": 1.1166667 + }, + "direction": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.7, + "attributes": [] + }, + { + "id_": "sl1_d1", + "description": "The second door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": -0.9, + "y": -2.75, + "z": 1.1166667 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.55, + "attributes": [] + }, + { + "id_": "sl2_d0", + "description": "The first door of the main plattform in the south facade.", + "mandatory": false, + "family": "door tambour west", + "compatibleFamilies": [ + "door capsule east", + "platform west" + ], + "point": { + "x": 0.9, + "y": -2.75, + "z": 2.0333333 + }, + "direction": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "t": 0.45, + "attributes": [] + }, + { + "id_": "sl2_d1", + "description": "The second door of the main plattform in the east facade.", + "mandatory": false, + "family": "door tambour east", + "compatibleFamilies": [ + "door capsule west", + "platform east" + ], + "point": { + "x": 2.75, + "y": -0.9, + "z": 2.0333333 + }, + "direction": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "t": 0.3, + "attributes": [] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "width", + "value": "5.5", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Width " + }, + { + "name": "storeys", + "value": "1", + "unit": "", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/class/IfcBuildingStorey" + }, + { + "name": "floor height", + "value": "2.75", + "unit": "m", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/GrossHeight" + }, + { + "name": "platform", + "value": "north", + "unit": "", + "definition": "" + }, + { + "name": "door width", + "value": "0.8", + "unit": "m", + "definition": "" + }, + { + "name": "door height", + "value": "2", + "unit": "m", + "definition": "" + }, + { + "name": "door offset", + "value": "1.15", + "unit": "m", + "definition": "" + }, + { + "name": "effective floor area", + "value": "24.21", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "217800", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "242", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "484", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "maintenance expenses", + "value": "1016", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "1500", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_backslash.json b/assets/semio/type_trapezoid-capsule_backslash.json index f11feab98..fcbcf8be3 100644 --- a/assets/semio/type_trapezoid-capsule_backslash.json +++ b/assets/semio/type_trapezoid-capsule_backslash.json @@ -1 +1,172 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.","icon":"icons/trapezoid-capsule_backslash.svg","image":"images/trapezoid-capsule_backslash.png","variant":"\\","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_backslash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_backslash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_backslash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_backslash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant \\ with a balcony for one person. It has the entrance on theback and has the view to the front.", + "icon": "icons/trapezoid-capsule_backslash.svg", + "image": "images/trapezoid-capsule_backslash.png", + "variant": "\\", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_backslash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_backslash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_backslash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/6f52c1e6b1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/45ab357369", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_backslash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_j.json b/assets/semio/type_trapezoid-capsule_j.json index 890b1fdde..7b31bb7e7 100644 --- a/assets/semio/type_trapezoid-capsule_j.json +++ b/assets/semio/type_trapezoid-capsule_j.json @@ -1 +1,172 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.","icon":"icons/trapezoid-capsule_J.svg","image":"images/trapezoid-capsule_J.png","variant":"J","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_J.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_J_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_J_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_J_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant J with a balcony for one person. It has the entrance on theside and has the view to the front.", + "icon": "icons/trapezoid-capsule_J.svg", + "image": "images/trapezoid-capsule_J.png", + "variant": "J", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_J.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_J_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_J_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b7243eed93", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/5004160f7d", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_J_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_l.json b/assets/semio/type_trapezoid-capsule_l.json index 1f9edf80d..1e8b9d80f 100644 --- a/assets/semio/type_trapezoid-capsule_l.json +++ b/assets/semio/type_trapezoid-capsule_l.json @@ -1 +1,178 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_L.svg","image":"images/trapezoid-capsule_L.png","variant":"L","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_L.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_L_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_L_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_L_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant L with a balcony for one person. It has the entrance on theside and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_L.svg", + "image": "images/trapezoid-capsule_L.png", + "variant": "L", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_L.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_L_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_L_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b8c26ca1c9", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a6e1f7d736", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_L_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_p.json b/assets/semio/type_trapezoid-capsule_p.json index 471f1781e..8fff8fcb6 100644 --- a/assets/semio/type_trapezoid-capsule_p.json +++ b/assets/semio/type_trapezoid-capsule_p.json @@ -1 +1,178 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_p.svg","image":"images/trapezoid-capsule_p.png","variant":"p","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_p.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_p_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_p_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_p_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant p with a balcony for one person. It has the entrance on theback and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_p.svg", + "image": "images/trapezoid-capsule_p.png", + "variant": "p", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_p.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_p_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_p_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/b3a9105a14", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/ff37b776dd", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_p_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_q.json b/assets/semio/type_trapezoid-capsule_q.json index ed8848515..1e65c2f64 100644 --- a/assets/semio/type_trapezoid-capsule_q.json +++ b/assets/semio/type_trapezoid-capsule_q.json @@ -1 +1,172 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.","icon":"icons/trapezoid-capsule_q.svg","image":"images/trapezoid-capsule_q.png","variant":"q","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_q.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_q_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_q_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_q_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant q with a balcony for one person. It has the entrance on theback and has the view to the side.", + "icon": "icons/trapezoid-capsule_q.svg", + "image": "images/trapezoid-capsule_q.png", + "variant": "q", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_q.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_q_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_q_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/9442aab847", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/29526c7d12", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_q_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_s.json b/assets/semio/type_trapezoid-capsule_s.json index b612b03a0..b8e633e00 100644 --- a/assets/semio/type_trapezoid-capsule_s.json +++ b/assets/semio/type_trapezoid-capsule_s.json @@ -1 +1,172 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.","icon":"icons/trapezoid-capsule_s.svg","image":"images/trapezoid-capsule_s.png","variant":"s","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_s.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_s_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_s_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_s_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":0.42,"y":0.0,"z":0.0},"direction":{"x":-0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant s with a balcony for one person. It has the entrance on theside and has the view to the side.", + "icon": "icons/trapezoid-capsule_s.svg", + "image": "images/trapezoid-capsule_s.png", + "variant": "s", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_s.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_s_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_s_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/0da1e26dff", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/a3b1c730a1", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_s_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": 0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": -0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_slash.json b/assets/semio/type_trapezoid-capsule_slash.json index 665601171..f77ed8e52 100644 --- a/assets/semio/type_trapezoid-capsule_slash.json +++ b/assets/semio/type_trapezoid-capsule_slash.json @@ -1 +1,178 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_slash.svg","image":"images/trapezoid-capsule_slash.png","variant":"/","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_slash.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_slash_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_slash_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_slash_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"back","unit":"","definition":""},{"name":"view","value":"front","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant / with a balcony for one person. It has the entrance on theback and has the view to the front. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_slash.svg", + "image": "images/trapezoid-capsule_slash.png", + "variant": "/", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_slash.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_slash_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_slash_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/e6c366306e", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/f16baa9eba", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_slash_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "back", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "front", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/assets/semio/type_trapezoid-capsule_z.json b/assets/semio/type_trapezoid-capsule_z.json index 94a244eeb..8cacb4c59 100644 --- a/assets/semio/type_trapezoid-capsule_z.json +++ b/assets/semio/type_trapezoid-capsule_z.json @@ -1 +1,178 @@ -{"name":"Trapezoid Capsule","description":"An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.","icon":"icons/trapezoid-capsule_z.svg","image":"images/trapezoid-capsule_z.png","variant":"z","stock":2147483647,"virtual":false,"location":null,"unit":"m","representations":[{"url":"representations/trapezoid-capsule_z.glb","description":"","tags":["model/gltf-binary"],"qualities":[]},{"url":"representations/trapezoid-capsule_z_1to500.3dm","description":"","tags":["model/vnd.3dm","1to500"],"qualities":[]},{"url":"representations/trapezoid-capsule_z_1to200.3dm","description":"","tags":["model/vnd.3dm","1to200"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3","description":"","tags":["model/vnd.3dm","1to500","model/vnd.speckle+json"],"qualities":[]},{"url":"https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c","description":"","tags":["model/vnd.3dm","1to200","model/vnd.speckle+json"],"qualities":[]},{"url":"representations/trapezoid-capsule_z_collider.glb","description":"","tags":["model/gltf-binary","collider"],"qualities":[]}],"ports":[{"id_":"","description":"The middle of the main entrance door of the upper entrance floor.","mandatory":false,"family":"door capsule east","compatibleFamilies":["door tambour east"],"point":{"x":-0.42,"y":0.0,"z":0.0},"direction":{"x":0.14780942,"y":-0.9890159,"z":0.0},"t":0.0,"qualities":[{"name":"entrance","value":"","unit":"","definition":""}]}],"authors":[{"name":"Ueli Saluz","email":"ueli@semio-tech.org"}],"qualities":[{"name":"entrance","value":"side","unit":"","definition":""},{"name":"view","value":"side","unit":"","definition":""},{"name":"heigth","value":"2.5","unit":"m","definition":"https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height"},{"name":"effective floor area","value":"7.19","unit":"m²","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea"},{"name":"construction cost","value":"68272","unit":"€","definition":""},{"name":"heating energy demand","value":"323","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"cooling energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"technical equipment energy demand","value":"216","unit":"kWh/a","definition":"https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption"},{"name":"income","value":"10780","unit":"€/a","definition":""},{"name":"maintenance expenses","value":"862","unit":"€/a","definition":""},{"name":"construction global warming potential","value":"7186.53","unit":"kgCO2e","definition":"https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 "},{"name":"mirrored","value":"","unit":"","definition":""}]} \ No newline at end of file +{ + "name": "Trapezoid Capsule", + "description": "An apartment capsule of the variant z with a balcony for one person. It has the entrance on theside and has the view to the side. It is mirrored compared to the normal one.", + "icon": "icons/trapezoid-capsule_z.svg", + "image": "images/trapezoid-capsule_z.png", + "variant": "z", + "stock": 2147483647, + "virtual": false, + "location": null, + "unit": "m", + "representations": [ + { + "url": "representations/trapezoid-capsule_z.glb", + "description": "", + "tags": [ + "model/gltf-binary" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_z_1to500.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_z_1to200.3dm", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/c696cc23a3", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to500", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "https://app.speckle.systems/projects/e7de1a2f8f/models/532cc5697c", + "description": "", + "tags": [ + "model/vnd.3dm", + "1to200", + "model/vnd.speckle+json" + ], + "attributes": [] + }, + { + "url": "representations/trapezoid-capsule_z_collider.glb", + "description": "", + "tags": [ + "model/gltf-binary", + "collider" + ], + "attributes": [] + } + ], + "ports": [ + { + "id_": "", + "description": "The middle of the main entrance door of the upper entrance floor.", + "mandatory": false, + "family": "door capsule east", + "compatibleFamilies": [ + "door tambour east" + ], + "point": { + "x": -0.42, + "y": 0.0, + "z": 0.0 + }, + "direction": { + "x": 0.14780942, + "y": -0.9890159, + "z": 0.0 + }, + "t": 0.0, + "attributes": [ + { + "name": "entrance", + "value": "", + "unit": "", + "definition": "" + } + ] + } + ], + "authors": [ + { + "name": "Ueli Saluz", + "email": "ueli@semio-tech.org" + } + ], + "attributes": [ + { + "name": "entrance", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "view", + "value": "side", + "unit": "", + "definition": "" + }, + { + "name": "heigth", + "value": "2.5", + "unit": "m", + "definition": "https://search.bsdd.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/Height" + }, + { + "name": "effective floor area", + "value": "7.19", + "unit": "m²", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/NetFloorArea" + }, + { + "name": "construction cost", + "value": "68272", + "unit": "€", + "definition": "" + }, + { + "name": "heating energy demand", + "value": "323", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "cooling energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "technical equipment energy demand", + "value": "216", + "unit": "kWh/a", + "definition": "https://identifier.buildingsmart.org/uri/buildingsmart/ifc/4.3/prop/EnergyConsumption" + }, + { + "name": "income", + "value": "10780", + "unit": "€/a", + "definition": "" + }, + { + "name": "maintenance expenses", + "value": "862", + "unit": "€/a", + "definition": "" + }, + { + "name": "construction global warming potential", + "value": "7186.53", + "unit": "kgCO2e", + "definition": "https://identifier.buildingsmart.org/uri/etim/etim/9.0/prop/EF016979 " + }, + { + "name": "mirrored", + "value": "", + "unit": "", + "definition": "" + } + ] +} \ No newline at end of file diff --git a/engineering/dataarchitecture.pu b/engineering/dataarchitecture.pu index 5877279c3..f4e607f64 100644 --- a/engineering/dataarchitecture.pu +++ b/engineering/dataarchitecture.pu @@ -1,237 +1,379 @@ @startuml "data architecture" skinparam linetype ortho -entity Semio { +entity semio { *release : string <> - *engine : string - *created : datetime + *created_by_app : string + *app_version : string + *created_at : datetime } -entity Quality { - *pk : int <> +entity attributes { + *id : int <> *name : string *value : string *unit : string *definition : string .. - representationPk : int <> - portPk : int <> - typePk : int <> - piecePk : int <> - connectionPk : int <> - designPk : int <> - kitPk : int <> -} -note bottom of Quality - value, definition can be empty - empty value means true - one of portPk, typePk, piecePk, connectionPk, designPk, kitPk must be set -end note - -entity Tag { - *pk : int <> + representation_id : int <> + port_id : int <> + type_id : int <> + piece_id : int <> + connection_id : int <> + design_id : int <> + kit_id : int <> + -- + CHECK (( (representation_id IS NOT NULL AND port_id IS NULL AND type_id IS NULL AND piece_id IS NULL AND connection_id IS NULL AND design_id IS NULL AND kit_id IS NULL) + OR (representation_id IS NULL AND port_id IS NOT NULL AND type_id IS NULL AND piece_id IS NULL AND connection_id IS NULL AND design_id IS NULL AND kit_id IS NULL) + OR (representation_id IS NULL AND port_id IS NULL AND type_id IS NOT NULL AND piece_id IS NULL AND connection_id IS NULL AND design_id IS NULL AND kit_id IS NULL) + OR (representation_id IS NULL AND port_id IS NULL AND type_id IS NULL AND piece_id IS NOT NULL AND connection_id IS NULL AND design_id IS NULL AND kit_id IS NULL) + OR (representation_id IS NULL AND port_id IS NULL AND type_id IS NULL AND piece_id IS NULL AND connection_id IS NOT NULL AND design_id IS NULL AND kit_id IS NULL) + OR (representation_id IS NULL AND port_id IS NULL AND type_id IS NULL AND piece_id IS NULL AND connection_id IS NULL AND design_id IS NOT NULL AND kit_id IS NULL) + OR (representation_id IS NULL AND port_id IS NULL AND type_id IS NULL AND piece_id IS NULL AND connection_id IS NULL AND design_id IS NULL AND kit_id IS NOT NULL) + )) +} + + +entity qualities { + *id : int <> + *key : string + *name : string + *description : string + *uri : string + *kind : int + *can_scale : boolean + *default_si_unit : string + *default_imperial_unit : string + *min : float + *is_min_excluded : boolean + *max : float + *is_max_excluded : boolean + *default_value : float + *formula : string + *created_at : datetime + *updated_at : datetime + .. + kit_id : int <> + -- + CHECK (kind >= 0 AND kind <= 63) + CHECK (kind & (kind - 1) = 0 OR kind IN (0, 1, 2, 4, 8, 16)) +} + +entity benchmarks { + *id : int <> + *name : string + *icon : string + *min : float + *is_min_excluded : boolean + *max : float + *is_max_excluded : boolean + .. + quality_id : int <> + -- +} + +entity props { + *id : int <> + *key : string + *value : string + *unit : string + *created_at : datetime + *updated_at : datetime + .. + port_id : int <> + -- +} + +entity stats { + *id : int <> + *key : string + *unit : string + *min : float + *is_min_excluded : boolean + *max : float + *is_max_excluded : boolean + *created_at : datetime + *updated_at : datetime + .. + design_id : int <> + -- +} + +entity tags { + *id : int <> *name : string *order : int .. - representationPk : int <> + representation_id : int <> } -entity Representation { - *pk : int <> +entity concepts { + *id : int <> + *name : string + *order : int + .. + kit_id : int <> + type_id : int <> + design_id : int <> + -- + CHECK (( (kit_id IS NOT NULL AND type_id IS NULL AND design_id IS NULL) + OR (kit_id IS NULL AND type_id IS NOT NULL AND design_id IS NULL) + OR (kit_id IS NULL AND type_id IS NULL AND design_id IS NOT NULL) + )) +} + +entity representations { + *id : int <> *url : string *description : string .. - typePk : int <> + type_id : int <> + -- } -note right of Representation - description can be empty -end note -entity Plane { - *pk : int <> - *originX : float - *originY : float - *originZ : float - *xAxisX : float - *xAxisY : float - *xAxisZ : float - *yAxisX : float - *yAxisY : float - *yAxisZ : float +entity planes { + *id : int <> + *origin_x : float + *origin_y : float + *origin_z : float + *x_axis_x : float + *x_axis_y : float + *x_axis_z : float + *y_axis_x : float + *y_axis_y : float + *y_axis_z : float } -entity CompatibleFamily { - *pk : int <> +entity compatible_families { + *id : int <> *name : string *order : int .. - portPk : int <> + port_id : int <> } -entity Port { - *pk : int <> - *id : string +entity ports { + *id : int <> + *port_id : string *description : string *family : string - *mandatory : boolean - *pointX : float - *pointY : float - *pointZ : float - *directionX : float - *directionY : float - *directionZ : float + *is_mandatory : boolean + *point_x : float + *point_y : float + *point_z : float + *direction_x : float + *direction_y : float + *direction_z : float *t : float .. - typePk : int <> + type_id : int <> + -- + CHECK (t >= 0 AND t < 1) + UNIQUE (port_id, type_id) } -note right of Port - description, family can be empty - t is in [0,1[ -end note -entity Author { - *pk : int <> +entity authors { + *id : int <> *name : string *email : string - *rank : int .. - typePk : int <> - designPk : int <> + kit_id : int <> +} + +entity author_artifact { + *author_id : int <> + *rank : int + type_id : int <> + design_id : int <> + -- + CHECK ((type_id IS NOT NULL AND design_id IS NULL) OR + (type_id IS NULL AND design_id IS NOT NULL)) } -note right of Author - one of typePk or designPk must be set -end note -entity Type { - *pk : int <> +entity types { + *id : int <> *name : string *description : string *icon : string - *image : string + *image_url : string *variant : string *stock : float - *virtual : boolean + *is_virtual : boolean + *can_scale : boolean + *can_mirror : boolean *unit : string - *longitude : float - *latitude : float - *created : datetime - *updated : datetime - .. - kitPk : int <> -} -note right of Type - description, icon, image, variant can be empty - empty variant means default - stock is default to +infinity -end note - -entity Piece { - *pk : int <> - *id : string + *location_longitude : float + *location_latitude : float + *created_at : datetime + *updated_at : datetime + .. + kit_id : int <> + -- + UNIQUE (name, variant, kit_id) + CHECK (stock >= 0 AND stock <= 2147483647) + CHECK (location_longitude IS NULL AND location_latitude IS NULL + OR (location_longitude IS NOT NULL AND location_latitude IS NOT NULL)) +} + +entity pieces { + *id : int <> + *piece_id : string *description : string - *planePk : int <> - *centerX : float - *centerY : float - .. - typePk : int <> - designPk : int <> - piecePk : int <> -} -note right of Piece - description can be empty - one of typePk or (designPk and piecePk) must be set -end note - -entity Connection { - *pk : int <> - *connectedPiecePk : int <> - *connectedPortPk : int <> - *connectingPiecePk : int <> - *connectingPortPk : int <> + *plane_id : int <> + *center_x : float + *center_y : float + *scale : float + mirror_plane_id : int <> + *is_hidden: boolean + *is_locked: boolean + *color: string + .. + type_id : int <> + design_id : int <> + parent_piece_id : int <> + -- + CHECK ((type_id IS NOT NULL AND design_id IS NULL AND parent_piece_id IS NULL) OR + (type_id IS NULL AND design_id IS NOT NULL AND parent_piece_id IS NOT NULL)) + CHECK (color = '' OR color ~ '^#[0-9A-Fa-f]{6}$') + UNIQUE (piece_id, design_id) +} + +entity connections { + *id : int <> + *connected_piece_id : int <> + *connected_design_piece_id : int <> + *connected_port_id : int <> + *connecting_piece_id : int <> + *connecting_design_piece_id : int <> + *connecting_port_id : int <> *description : string *gap : float *shift : float - *raise : float + *rise : float *rotation : float *turn : float *tilt : float *x : float *y : float .. - designPk : int <> + design_id : int <> + -- + CHECK (description IS NOT NULL OR description = '') + CHECK (connecting_piece_id != connected_piece_id) } -note right of Connection - description can be empty -end note -entity Design { - *pk : int <> +entity layers { + *id : int <> + *name : string + *description : string + *color: string + .. + design_id : int <> + -- + CHECK (color = '' OR color ~ '^#[0-9A-Fa-f]{6}$') +} + +entity groups { + *id : int <> + name : string + description : string + *color: string + .. + design_id : int <> + -- + CHECK (color = '' OR color ~ '^#[0-9A-Fa-f]{6}$') +} + +entity group_pieces { + *group_id : int <> + *piece_id : int <> +} + +entity designs { + *id : int <> *name : string *description : string *icon : string - *image : string + *image_url : string *variant : string *view : string + *can_scale : boolean + *can_mirror : boolean *unit : string - *created : datetime - *updated : datetime + location_longitude : float + location_latitude : float + *created_at : datetime + *updated_at : datetime .. - kitPk : int <> + kit_id : int <> + -- + UNIQUE (name, variant, view, kit_id) + CHECK (name != '') + CHECK (unit != '') + CHECK (location_longitude IS NULL AND location_latitude IS NULL + OR (location_longitude IS NOT NULL AND location_latitude IS NOT NULL)) } -note right of Design - description, icon, image, variant, view can be empty - empty variant means default - empty view means default -end note -entity Kit { - *pk : int <> - *uri : string <> +entity kits { + *id : int <> *name : string *description : string *icon : string - *image : string - *preview : string + *image_url : string + *avatar_url : string *version : string - *remote : string - *homepage : string + *remote_url : string + *homepage_url : string *license : string - *created : datetime - *updated : datetime + *created_at : datetime + *updated_at : datetime + -- + CHECK (name != '') } -note left of Kit - description, icon, image, preview, version, remote, homepage, license can be empty - empty version means latest -end note -Kit ||--o{ Type -Kit ||--o{ Design -Kit ||--o{ Quality +kits ||--o{ types +kits ||--o{ designs +kits ||--o{ authors +kits ||--o{ qualities +kits ||--o{ attributes +kits ||--o{ concepts + +designs ||--o{ layers +designs ||--o{ pieces +designs ||--o{ groups +designs ||--o{ connections +designs ||--o{ stats +designs ||--o{ attributes +designs ||--o{ concepts +designs -- authors : "has" > + +group_pieces -- groups +group_pieces -- pieces -Design ||--o{ Piece -Design ||--o{ Connection -Design ||--o{ Author -Design ||--o{ Quality +types ||--o{ representations +types ||--o{ ports +types ||--o{ authors +types ||--o{ attributes +types ||--o{ concepts +types -- authors : "has" > -Type ||--o{ Representation -Type ||--o{ Port -Type ||--o{ Author -Type ||--o{ Quality +pieces ||--o{ planes +pieces ||--o{ attributes -Piece ||--o{ Plane -Piece ||--o{ Quality +connections ||--o{ attributes -Connection ||--o{ Quality +representations ||--o{ tags +representations ||--o{ attributes -Representation ||--o{ Tag -Representation ||--o{ Quality +ports ||--o{ compatible_families +ports ||--o{ attributes +ports ||--o{ props -Port ||--o{ CompatibleFamily -Port ||--o{ Quality +qualities ||--o{ benchmarks -Connection -- Piece : "connected" -Connection -- Piece : "connecting" -Connection -- Port : "connected" -Connection -- Port : "connecting" +connections -- pieces : "connected" > +connections -- pieces : "connecting" > +connections -- ports : "connected" > +connections -- ports : "connecting" > @enduml \ No newline at end of file diff --git a/engineering/interfacearchitecture.txt b/engineering/interfacearchitecture.txt index e9f15e7e3..d9e7d71d6 100644 --- a/engineering/interfacearchitecture.txt +++ b/engineering/interfacearchitecture.txt @@ -9,9 +9,11 @@ kit : !Kit{ remote : ?String // url for remote fetching homepage : ?String // url license : ?String // spdx id | url - created : !String // date - updated : !String // date - types : +Type[ + authors : *Author[ + name : !String + email : !String + ] + types : *Type[ name : !String description : ?String icon : ?String // emoji | logogram | url @@ -19,18 +21,18 @@ kit : !Kit{ variant : ?String // empty is default stock : !Float // default is +infinity virtual : ?Boolean // default false + scalable : ?Boolean // default true + mirrorable : ?Boolean // default true unit : !String // e.g., mm, cm, m - created : !String // date - updated : !String // date location : ?Location{ - longitude : !Float - latitude : !Float + longitude : ?Float + latitude : ?Float } representations : +Representation[ url : !String description : ?String tags : *String[] // default is empty list (meaning default LOD) - qualities : *Quality[] + attributes : *Attribute[] ] ports : +Port[ id : !String // empty is default @@ -49,16 +51,47 @@ kit : !Kit{ z : !Float } t : !Float // [0,1[ for diagram ring position - qualities : *Quality[] + props : *Prop[ + key : !String // quality key + value : !String // number | text + unit : ?String + attributes : *Attribute[] + ] + attributes : *Attribute[] ] - authors : *Author[ - name : !String + authors: *AuthorId[ email : !String - rank : !Integer // for ordering ] - qualities : *Quality[] + attributes : *Attribute[] + created : !String // date + updated : !String // date ] - designs : +Design[ + qualities : *Quality[ + key : !String + name : !String + description : ?String + uri : ?String + scalable : ?Boolean // default false + kind : !QualityKind // enum: General, Design, Type, Piece, Connection, Port + si : ?String + imperial : ?String + min : ?Float + minExcluded : ?Boolean // default true + max : ?Float + maxExcluded : ?Boolean // default true + default : ?Float + formula : ?String + benchmarks : *Benchmark[ + name : !String + icon : ?String + min : ?Float + minExcluded : ?Boolean // default false + max : ?Float + maxExcluded : ?Boolean // default false + ] + attributes : *Attribute[] + ] + designs : *Design[ name : !String description : ?String icon : ?String // emoji | logogram | url @@ -66,8 +99,10 @@ kit : !Kit{ variant : ?String // empty is default view : ?String // empty is default unit : !String // e.g., mm, cm, m - created : !String // date - updated : !String // date + location : ?Location{ + longitude : ?Float + latitude : ?Float + } pieces : +Piece[ id : !String description : ?String @@ -101,7 +136,28 @@ kit : !Kit{ x : !Float y : !Float } - qualities : *Quality[] + scale : ?Float // default 1.0 + mirrorPlane : ?Plane{ + origin : !Point{ + x : !Float + y : !Float + z : !Float + } + xAxis : !Vector{ + x : !Float + y : !Float + z : !Float + } + yAxis : !Vector{ + x : !Float + y : !Float + z : !Float + } + } + hidden : ?Boolean // default false + locked : ?Boolean // default false + color : ?String // hex color + attributes : *Attribute[] ] connections : +Connection[ connected : !Side{ @@ -115,25 +171,48 @@ kit : !Kit{ description : ?String gap : ?Float shift : ?Float - raise : ?Float + rise : ?Float rotation : ?Float // degrees turn : ?Float // degrees tilt : ?Float // degrees x : ?Float // diagram offset x y : ?Float // diagram offset y - qualities : *Quality[] + attributes : *Attribute[] ] - authors : *Author[ + layers : *Layer[ name : !String + description : ?String + color : ?String // hex color + ] + groups : *Group[ + name : ?String + description : ?String + color : ?String // hex color + pieces : *PieceId[ + id : !String + ] + ] + authors: *AuthorId[ email : !String - rank : !Integer ] - qualities : *Quality[] + stats : *Stat[ + key : !String // quality key + unit : ?String + min : ?Float + minExcluded : ?Boolean // default false + max : ?Float + maxExcluded : ?Boolean // default false + ] + attributes : *Attribute[] + created : !String // date + updated : !String // date ] - qualities : *Quality[ + attributes : *Attribute[ name : !String value : ?String // No value means true unit : ?String definition : ?String // text | uri ] + created : !String // date + updated : !String // date } \ No newline at end of file diff --git a/engineering/softwarearchitecture.pu b/engineering/softwarearchitecture.pu index 3eb1e7385..122fcfe4b 100644 --- a/engineering/softwarearchitecture.pu +++ b/engineering/softwarearchitecture.pu @@ -1,6 +1,12 @@ @startuml "software architecture" skinparam linetype ortho +class Semio { + release: str + engine: str + sketchpad: str + created: datetime +} class Kit { uri: str @@ -17,7 +23,23 @@ class Kit { updated: datetime types: list[Type] designs: list[Design] - qualities: list[Quality] + authors: list[Author] + attributes: list[Attribute] + concepts: list[str] + -- + context Kit inv optionalFieldsCanBeEmpty: + description->notEmpty() or description->isEmpty() and + icon->notEmpty() or icon->isEmpty() and + image->notEmpty() or image->isEmpty() and + preview->notEmpty() or preview->isEmpty() and + version->notEmpty() or version->isEmpty() and + remote->notEmpty() or remote->isEmpty() and + homepage->notEmpty() or homepage->isEmpty() and + license->notEmpty() or license->isEmpty() + context Kit inv emptyVersionMeansLatest: + version->isEmpty() implies version = 'latest' + context Kit inv validUri: + uri->matches('^https?://.*') or uri->matches('^file://.*') } class Type { @@ -35,7 +57,20 @@ class Type { representations: list[Representation] ports: list[Port] authors: list[Author] - qualities: list[Quality] + attributes: list[Attribute] + concepts: list[str] + -- + context Type inv optionalFieldsCanBeEmpty: + description->notEmpty() or description->isEmpty() and + icon->notEmpty() or icon->isEmpty() and + image->notEmpty() or image->isEmpty() and + variant->notEmpty() or variant->isEmpty() + context Type inv emptyVariantMeansDefault: + variant->isEmpty() implies variant = 'default' + context Type inv stockPositive: + stock >= 0 + context Type inv virtualTypesHaveNoPorts: + virtual = true implies ports->isEmpty() } class Design { @@ -50,29 +85,78 @@ class Design { updated: datetime pieces: list[Piece] connections: list[Connection] - authors: list[Author] - qualities: list[Quality] + layers: list[Layer] + groups: list[Group] + attributes: list[Attribute] + concepts: list[str] + -- + context Design inv optionalFieldsCanBeEmpty: + description->notEmpty() or description->isEmpty() and + icon->notEmpty() or icon->isEmpty() and + image->notEmpty() or image->isEmpty() and + variant->notEmpty() or variant->isEmpty() and + view->notEmpty() or view->isEmpty() + context Design inv emptyVariantMeansDefault: + variant->isEmpty() implies variant = 'default' + context Design inv emptyViewMeansDefault: + view->isEmpty() implies view = 'default' + context Design inv connectionsReferenceDesignPieces: + connections->forAll(c | pieces->includes(c.connecting.piece) and pieces->includes(c.connected.piece)) } class Representation { url: str description: str tags: list[str] - qualities: list[Quality] + attributes: list[Attribute] + -- + context Representation inv descriptionCanBeEmpty: + description->notEmpty() or description->isEmpty() } class Port { id: str description: str mandatory: bool + family: str + compatibleFamilies: list[str] + point: Point + direction: Vector t: float - qualities: list[Quality] + attributes: list[Attribute] + -- + context Port inv optionalFieldsCanBeEmpty: + description->notEmpty() or description->isEmpty() and + family->notEmpty() or family->isEmpty() + context Port inv tInValidRange: + t >= 0 and t < 1 + context Port inv directionIsUnitVector: + direction.x * direction.x + direction.y * direction.y + direction.z * direction.z = 1 + context Port inv compatibleFamiliesIncludesOwnFamily: + family->notEmpty() implies compatibleFamilies->includes(family) } -class PortFamily { +class Layer { + name: str + description: str + color: str +} + +class Group { + name: str + description: str + color: str + pieces: list[Piece] + attributes: list[Attribute] + -- + context Group inv nameCanBeEmpty: + name->notEmpty() or name->isEmpty() + context Group inv descriptionCanBeEmpty: + description->notEmpty() or description->isEmpty() +} + +class Family { name: str - - ports: list[Port] } class Piece { @@ -80,16 +164,39 @@ class Piece { description: str plane: Plane center: DiagramPoint + scale: float + mirrorPlane: Plane + hidden: bool + locked: bool + color: str type: Type design: Design piece: Piece - qualities: list[Quality] + attributes: list[Attribute] + -- + context Piece inv descriptionCanBeEmpty: + description->notEmpty() or description->isEmpty() + context Piece inv validPieceReference: + (type->notEmpty() and design->isEmpty() and piece->isEmpty()) or + (type->isEmpty() and design->notEmpty() and piece->notEmpty()) + context Piece inv colorValidation: + color->isEmpty() or color.matches('^#[0-9A-Fa-f]{6}$') + context Piece inv scalePositive: + scale > 0 + context Piece inv noSelfReference: + piece <> self } class Plane { origin: Point xAxis: Vector yAxis: Vector + -- + context Plane inv axesAreOrthogonal: + xAxis.x * yAxis.x + xAxis.y * yAxis.y + xAxis.z * yAxis.z = 0 + context Plane inv axesAreUnitVectors: + xAxis.x * xAxis.x + xAxis.y * xAxis.y + xAxis.z * xAxis.z = 1 and + yAxis.x * yAxis.x + yAxis.y * yAxis.y + yAxis.z * yAxis.z = 1 } class Connection { @@ -98,13 +205,27 @@ class Connection { description: str gap: float shift: float - raise: float + rise: float rotation: float turn: float tilt: float x: float y: float - qualities: list[Quality] + attributes: list[Attribute] + -- + context Connection inv descriptionCanBeEmpty: + description->notEmpty() or description->isEmpty() + context Connection inv portsAreCompatible: + connecting.port.compatibleFamilies->includes(connected.port.family) or + connected.port.compatibleFamilies->includes(connecting.port.family) + context Connection inv noDuplicateConnections: + connecting <> connected + context Connection inv rotationInValidRange: + rotation >= -180 and rotation <= 180 + context Connection inv turnInValidRange: + turn >= -180 and turn <= 180 + context Connection inv tiltInValidRange: + tilt >= -180 and tilt <= 180 } class Side { @@ -112,11 +233,20 @@ class Side { port: Port } -class Quality { +class Attribute { name: str value: str unit: str definition: str + -- + context Attribute inv valueCanBeEmpty: + value->notEmpty() or value->isEmpty() + context Attribute inv definitionCanBeEmpty: + definition->notEmpty() or definition->isEmpty() + context Attribute inv emptyValueMeansTrue: + value->isEmpty() implies value = 'true' + context Attribute inv unitCanBeEmpty: + unit->notEmpty() or unit->isEmpty() } class Author { @@ -134,6 +264,9 @@ class Vector { x: float y: float z: float + -- + context Vector inv notZeroVector: + x <> 0 or y <> 0 or z <> 0 } class DiagramPoint { @@ -141,48 +274,137 @@ class DiagramPoint { y: float } -class Location { - longitude: float - latitude: float +class Quality { + key: str + name: str + description: str + uri: str + scalable: bool + kind: QualityKind + si: str + imperial: str + min: float + minExcluded: bool + max: float + maxExcluded: bool + default: float + formula: str + benchmarks: list[Benchmark] + attributes: list[Attribute] + -- + context Quality inv optionalFieldsCanBeEmpty: + description->notEmpty() or description->isEmpty() and + uri->notEmpty() or uri->isEmpty() and + si->notEmpty() or si->isEmpty() and + imperial->notEmpty() or imperial->isEmpty() and + formula->notEmpty() or formula->isEmpty() + context Quality inv defaultValueInRange: + (min->notEmpty() implies default >= min) and + (max->notEmpty() implies default <= max) + context Quality inv minLessThanMax: + min->notEmpty() and max->notEmpty() implies min < max +} + +class QualityKind { + <> + General + Design + Type + Piece + Connection + Port +} + +class Benchmark { + name: str + icon: str + min: float + minExcluded: bool + max: float + maxExcluded: bool + -- + context Benchmark inv iconCanBeEmpty: + icon->notEmpty() or icon->isEmpty() + context Benchmark inv minLessThanMax: + min < max +} + +class Prop { + key: str + value: str + unit: str + attributes: list[Attribute] + -- + context Prop inv unitCanBeEmpty: + unit->notEmpty() or unit->isEmpty() +} + +class Stat { + key: str + unit: str + min: float + minExcluded: bool + max: float + maxExcluded: bool + -- + context Stat inv unitCanBeEmpty: + unit->notEmpty() or unit->isEmpty() + context Stat inv minLessThanMax: + min < max } Kit *-- "0..*" Type : contains > Kit *-- "0..*" Design : contains > -Kit *-- "0..*" Quality : has > +Kit *-- "0..*" Author : has > +Kit *-- "0..*" Attribute : has > +Kit *-- "0..*" Quality : defines > Design *-- "0..*" Piece : contains > Design *-- "0..*" Connection : contains > -Design *-- "0..*" Author : authored by > -Design *-- "0..*" Quality : has > +Design *-- "0..*" Layer : has > +Design *-- "0..*" Group : has > +Design *-- "0..*" Attribute : has > +Design *-- "0..*" Stat : measures > -Type *-- "0..1" Location : has > Type *-- "0..*" Representation : has > Type *-- "0..*" Port : has > -Type *-- "0..*" Author : authored by > -Type *-- "0..*" Quality : has > +Type *-- "0..*" Attribute : has > Piece *-- "1" Type : instance of > Piece o-- "0..1" Plane : located by > -Piece *-- "0..*" Quality : has > +Piece o-- "0..1" Plane : mirrored by > +Piece *-- "0..*" Attribute : has > Piece o-- "0..1" DiagramPoint : has center > -Connection *-- "0..*" Quality : has > +Group *-- "0..*" Piece : contains > + +Connection *-- "0..*" Attribute : has > Connection o-- "1" Side : connected > Connection o-- "1" Side : connecting > Side o-- "1" Piece : refers to > Side o-- "1" Port : refers to > -Representation *-- "0..*" Tag : tagged with > -Representation *-- "0..*" Quality : has > +Representation *-- "0..*" Attribute : has > -Port *-- "0..*" Port : compatible with > -Port *-- "0..*" Quality : has > +Port *-- "0..*" Attribute : has > Port *-- "1" Point : at > Port *-- "1" Vector : oriented by > +Port *-- "1" Family : has > +Port *-- "0..*" Family : compatible with > +Port *-- "0..*" Prop : has > Plane *-- "1" Point : origin > Plane *-- "1" Vector : xAxis > Plane *-- "1" Vector : yAxis > +Quality *-- "0..*" Benchmark : has > +Quality *-- "0..*" Attribute : has > +Quality *-- "1" QualityKind : classified by > + +Prop o-- "1" Quality : references > +Prop *-- "0..*" Attribute : has > + +Stat o-- "1" Quality : references > + @enduml \ No newline at end of file diff --git a/examples/metabolism b/examples/metabolism index 88588429f..b35ea1072 160000 --- a/examples/metabolism +++ b/examples/metabolism @@ -1 +1 @@ -Subproject commit 88588429fa0fca591a1c839793fa4718d3edbfb3 +Subproject commit b35ea10727af3e6cbed7582949b8b07d0ead1205 diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 5a1fe3794..7b674fe66 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -28,9 +28,10 @@ type Kit implements Node { license: String! created: DateTime! updated: DateTime! + concepts: [String!]! types(before: String, after: String, first: Int, last: Int): TypeNodeConnection designs(before: String, after: String, first: Int, last: Int): DesignNodeConnection - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection """ The ID of the object @@ -111,7 +112,7 @@ type Type implements Node { representations(before: String, after: String, first: Int, last: Int): RepresentationNodeConnection ports(before: String, after: String, first: Int, last: Int): PortNodeConnection authors_(before: String, after: String, first: Int, last: Int): AuthorNodeConnection - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection kit: Kit pieces(before: String, after: String, first: Int, last: Int): PieceNodeConnection @@ -121,6 +122,7 @@ type Type implements Node { id: ID! location: Location! authors: [Author!]! + concepts: [String!]! } type RepresentationNodeConnection { @@ -153,7 +155,7 @@ type RepresentationNodeEdge { type Representation implements Node { url: String! description: String! - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection type: Type """ @@ -163,7 +165,7 @@ type Representation implements Node { tags: [String!]! } -type QualityNodeConnection { +type AttributeNodeConnection { """ Pagination data for this connection. """ @@ -172,17 +174,17 @@ type QualityNodeConnection { """ Contains the nodes in this connection. """ - edges: [QualityNodeEdge]! + edges: [AttributeNodeEdge]! } """ -A Relay edge containing a `QualityNode` and its cursor. +A Relay edge containing a `AttributeNode` and its cursor. """ -type QualityNodeEdge { +type AttributeNodeEdge { """ The item at the end of the edge """ - node: Quality + node: Attribute """ A cursor for use in pagination @@ -190,7 +192,7 @@ type QualityNodeEdge { cursor: String! } -type Quality implements Node { +type Attribute implements Node { name: String! value: String! unit: String! @@ -215,7 +217,7 @@ type Port implements Node { family: String! t: Float! id_: String - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection type: Type """ @@ -278,7 +280,7 @@ type Connection implements Node { tilt: Float! x: Float! y: Float! - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection design: Design """ @@ -302,7 +304,7 @@ type Design implements Node { pieces(before: String, after: String, first: Int, last: Int): PieceNodeConnection connections(before: String, after: String, first: Int, last: Int): ConnectionNodeConnection authors_(before: String, after: String, first: Int, last: Int): AuthorNodeConnection - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection kit: Kit """ @@ -311,6 +313,7 @@ type Design implements Node { id: ID! location: Location! authors: [Author!]! + concepts: [String!]! } type PieceNodeConnection { @@ -345,7 +348,7 @@ type Piece implements Node { id_: String type: Type plane: Plane - qualities(before: String, after: String, first: Int, last: Int): QualityNodeConnection + attributes(before: String, after: String, first: Int, last: Int): AttributeNodeConnection design: Design """ @@ -583,9 +586,9 @@ input KitInputNode { designs: [DesignInputNode] = null """ - 📏 The qualities of the kit. + 🏷️ The attributes of the kit. """ - qualities: [QualityInputNode] = null + attributes: [AttributeInputNode] = null } input TypeInputNode { @@ -632,7 +635,8 @@ input TypeInputNode { representations: [RepresentationInputNode] = null ports: [PortInputNode] = null authors: [AuthorInputNode] = null - qualities: [QualityInputNode] = null + attributes: [AttributeInputNode] = null + concepts: [String] = null } input LocationInputNode { @@ -664,29 +668,29 @@ input RepresentationInputNode { tags: [String] = null """ - 📏 The qualities of the representation. + 🏷️ The attributes of the representation. """ - qualities: [QualityInputNode] = null + attributes: [AttributeInputNode] = null } -input QualityInputNode { +input AttributeInputNode { """ - 📏 The name of the quality. + 🏷️ The name of the attribute. """ name: String! """ - 📏 The optional value [ text | url ] of the quality. No value is equivalent to true for the name. + 🏷️ The optional value [ text | url ] of the attribute. No value is equivalent to true. """ value: String = "" """ - 📏 The optional unit of the value of the quality. + 🏷️ The optional unit of the value of the attribute. """ unit: String = "" """ - 📏 The optional definition [ text | uri ] of the quality. + 🏷️ The optional definition [ text | uri ] of the attribute. """ definition: String = "" } @@ -733,9 +737,9 @@ input PortInputNode { direction: VectorInputNode! """ - 📏 The qualities of the port. + 🏷️ The attributes of the port. """ - qualities: [QualityInputNode] = null + attributes: [AttributeInputNode] = null } input PointInputNode { @@ -823,7 +827,8 @@ input DesignInputNode { pieces: [PieceInputNode] = null connections: [ConnectionInputNode] = null authors: [AuthorInputNode] = null - qualities: [QualityInputNode] = null + attributes: [AttributeInputNode] = null + concepts: [String] = null } input PieceInputNode { @@ -848,9 +853,9 @@ input PieceInputNode { center: DiagramPointInputNode = null """ - 📏 The qualities of the piece. + 🏷️ The attributes of the piece. """ - qualities: [QualityInputNode] = null + attributes: [AttributeInputNode] = null type: TypeIdInputNode! } diff --git a/js/ai/design-diff.json b/js/ai/design-diff.json new file mode 100644 index 000000000..d0a081808 --- /dev/null +++ b/js/ai/design-diff.json @@ -0,0 +1,259 @@ +{ + "$defs": { + "ConnectionDiff": { + "description": "A bidirectional connection between two pieces of a design (diff format).", + "properties": { + "deleted": { + "items": { + "$ref": "#/$defs/ConnectionId" + }, + "title": "Deleted", + "type": "array" + }, + "updated": { + "items": { + "$ref": "#/$defs/Connection" + }, + "title": "Updated", + "type": "array" + }, + "added": { + "items": { + "$ref": "#/$defs/Connection" + }, + "title": "Added", + "type": "array" + } + }, + "title": "ConnectionDiff", + "type": "object" + }, + "ConnectionId": { + "description": "The props to identify the connection within the parent design.", + "properties": { + "connected": { + "$ref": "#/$defs/Side" + }, + "connecting": { + "$ref": "#/$defs/Side" + } + }, + "required": ["connected", "connecting"], + "title": "ConnectionId", + "type": "object" + }, + "Connection": { + "description": "A bidirectional connection between two pieces of a design.", + "properties": { + "description": { + "default": "", + "description": "The optional human-readable description of the connection.", + "maxLength": 2560, + "title": "Description", + "type": "string" + }, + "gap": { + "default": 0, + "description": "The optional longitudinal gap (applied after rotation and tilt in port direction) between the connected and the connecting piece. ", + "title": "Gap", + "type": "number" + }, + "shift": { + "default": 0, + "description": "The optional lateral shift (applied after the rotation, the turn and the tilt in the plane) between the connected and the connecting piece..", + "title": "Shift", + "type": "number" + }, + "rise": { + "default": 0, + "description": "The optional vertical rise in port direction between the connected and the connecting piece. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", + "title": "Rise", + "type": "number" + }, + "rotation": { + "default": 0, + "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", + "title": "Rotation", + "type": "number" + }, + "turn": { + "default": 0, + "description": "The optional turn perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", + "title": "Turn", + "type": "number" + }, + "tilt": { + "default": 0, + "description": "The optional horizontal tilt perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees.", + "title": "Tilt", + "type": "number" + }, + "x": { + "default": 0, + "description": "The optional offset in x direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", + "title": "X", + "type": "number" + }, + "y": { + "default": 0, + "description": "The optional offset in y direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", + "title": "Y", + "type": "number" + }, + "connected": { + "$ref": "#/$defs/Side", + "description": "The connected side of the connection." + }, + "connecting": { + "$ref": "#/$defs/Side", + "description": "The connecting side of the connection." + } + }, + "required": ["connected", "connecting"], + "title": "Connection", + "type": "object" + }, + "PieceId": { + "description": "The props to identify the piece within the parent design.", + "properties": { + "id_": { + "default": "", + "description": "The id of the piece.", + "maxLength": 128, + "title": "Id", + "type": "string" + } + }, + "title": "PieceId", + "type": "object" + }, + "Piece": { + "description": "A piece is a 3d-instance of a type in a design.", + "properties": { + "id_": { + "default": "", + "description": "The id of the piece.", + "maxLength": 128, + "title": "Id", + "type": "string" + }, + "description": { + "default": "", + "description": "The optional human-readable description of the piece.", + "maxLength": 2560, + "title": "Description", + "type": "string" + }, + "type": { + "$ref": "#/$defs/TypeId", + "description": "The type of the piece." + } + }, + "required": ["type"], + "title": "Piece", + "type": "object" + }, + "PiecesDiff": { + "description": "A piece is a 3d-instance of a type in a design.", + "properties": { + "deleted": { + "items": { + "$ref": "#/$defs/PieceId" + }, + "title": "Deleted", + "type": "array" + }, + "updated": { + "items": { + "$ref": "#/$defs/Piece" + }, + "title": "Updated", + "type": "array" + }, + "added": { + "items": { + "$ref": "#/$defs/Piece" + }, + "title": "Added", + "type": "array" + } + }, + "required": ["type"], + "title": "Piece", + "type": "object" + }, + "PortId": { + "description": "The props to identify the port within the parent type.", + "properties": { + "id_": { + "default": "", + "description": "The id of the port.", + "maxLength": 128, + "title": "Id", + "type": "string" + } + }, + "title": "PortId", + "type": "object" + }, + "Side": { + "description": "A side of a piece in a connection.", + "properties": { + "piece": { + "$ref": "#/$defs/PieceId" + }, + "port": { + "$ref": "#/$defs/PortId" + } + }, + "required": ["piece", "port"], + "title": "Side", + "type": "object" + }, + "TypeId": { + "description": "The props to identify the type.", + "properties": { + "name": { + "description": "The name of the type.", + "maxLength": 64, + "title": "Name", + "type": "string" + }, + "variant": { + "default": "", + "description": "The optional variant of the type. No variant means the default variant.", + "maxLength": 64, + "title": "Variant", + "type": "string" + } + }, + "required": ["name"], + "title": "TypeId", + "type": "object" + } + }, + "description": "A design is a collection of pieces that are connected.", + "properties": { + "description": { + "default": "", + "description": "The optional human-readable description of the design.", + "maxLength": 2560, + "title": "Description", + "type": "string" + }, + "pieces": { + "items": { + "$ref": "#/$defs/PiecesDiff" + }, + "title": "PiecesDiff", + "type": "object" + }, + "connections": { + "$ref": "#/$defs/ConnectionDiff", + "title": "ConnectionDiff", + "type": "object" + } + }, + "title": "DesignDiff", + "type": "object" +} diff --git a/js/assistant/design-diff.json b/js/assistant/design-diff.json deleted file mode 100644 index acc7fc607..000000000 --- a/js/assistant/design-diff.json +++ /dev/null @@ -1,274 +0,0 @@ -{ - "$defs": { - "ConnectionDiff": { - "description": "A bidirectional connection between two pieces of a design (diff format).", - "properties": { - "deleted": { - "items": { - "$ref": "#/$defs/ConnectionId" - }, - "title": "Deleted", - "type": "array" - }, - "updated": { - "items": { - "$ref": "#/$defs/Connection" - }, - "title": "Updated", - "type": "array" - }, - "added": { - "items": { - "$ref": "#/$defs/Connection" - }, - "title": "Added", - "type": "array" - } - }, - "title": "ConnectionDiff", - "type": "object" - }, - "ConnectionId": { - "description": "The props to identify the connection within the parent design.", - "properties": { - "connected": { - "$ref": "#/$defs/Side" - }, - "connecting": { - "$ref": "#/$defs/Side" - } - }, - "required": [ - "connected", - "connecting" - ], - "title": "ConnectionId", - "type": "object" - }, - "Connection": { - "description": "A bidirectional connection between two pieces of a design.", - "properties": { - "description": { - "default": "", - "description": "The optional human-readable description of the connection.", - "maxLength": 2560, - "title": "Description", - "type": "string" - }, - "gap": { - "default": 0, - "description": "The optional longitudinal gap (applied after rotation and tilt in port direction) between the connected and the connecting piece. ", - "title": "Gap", - "type": "number" - }, - "shift": { - "default": 0, - "description": "The optional lateral shift (applied after the rotation, the turn and the tilt in the plane) between the connected and the connecting piece..", - "title": "Shift", - "type": "number" - }, - "rise": { - "default": 0, - "description": "The optional vertical rise in port direction between the connected and the connecting piece. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", - "title": "Rise", - "type": "number" - }, - "rotation": { - "default": 0, - "description": "The optional horizontal rotation in port direction between the connected and the connecting piece in degrees.", - "title": "Rotation", - "type": "number" - }, - "turn": { - "default": 0, - "description": "The optional turn perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees. Set this only when necessary as it is not a symmetric property which means that when the parent piece and child piece are flipped it yields a different result.", - "title": "Turn", - "type": "number" - }, - "tilt": { - "default": 0, - "description": "The optional horizontal tilt perpendicular to the port direction (applied after rotation and the turn) between the connected and the connecting piece in degrees.", - "title": "Tilt", - "type": "number" - }, - "x": { - "default": 0, - "description": "The optional offset in x direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", - "title": "X", - "type": "number" - }, - "y": { - "default": 0, - "description": "The optional offset in y direction between the icons of the child and the parent piece in the diagram. One unit is equal the width of a piece icon.", - "title": "Y", - "type": "number" - }, - "connected": { - "$ref": "#/$defs/Side", - "description": "The connected side of the connection." - }, - "connecting": { - "$ref": "#/$defs/Side", - "description": "The connecting side of the connection." - } - }, - "required": [ - "connected", - "connecting" - ], - "title": "Connection", - "type": "object" - }, - "PieceId": { - "description": "The props to identify the piece within the parent design.", - "properties": { - "id_": { - "default": "", - "description": "The id of the piece.", - "maxLength": 128, - "title": "Id", - "type": "string" - } - }, - "title": "PieceId", - "type": "object" - }, - "Piece": { - "description": "A piece is a 3d-instance of a type in a design.", - "properties": { - "id_": { - "default": "", - "description": "The id of the piece.", - "maxLength": 128, - "title": "Id", - "type": "string" - }, - "description": { - "default": "", - "description": "The optional human-readable description of the piece.", - "maxLength": 2560, - "title": "Description", - "type": "string" - }, - "type": { - "$ref": "#/$defs/TypeId", - "description": "The type of the piece." - } - }, - "required": [ - "type" - ], - "title": "Piece", - "type": "object" - }, - "PiecesDiff": { - "description": "A piece is a 3d-instance of a type in a design.", - "properties": { - "deleted": { - "items": { - "$ref": "#/$defs/PieceId" - }, - "title": "Deleted", - "type": "array" - }, - "updated": { - "items": { - "$ref": "#/$defs/Piece" - }, - "title": "Updated", - "type": "array" - }, - "added": { - "items": { - "$ref": "#/$defs/Piece" - }, - "title": "Added", - "type": "array" - } - }, - "required": [ - "type" - ], - "title": "Piece", - "type": "object" - }, - "PortId": { - "description": "The props to identify the port within the parent type.", - "properties": { - "id_": { - "default": "", - "description": "The id of the port.", - "maxLength": 128, - "title": "Id", - "type": "string" - } - }, - "title": "PortId", - "type": "object" - }, - "Side": { - "description": "A side of a piece in a connection.", - "properties": { - "piece": { - "$ref": "#/$defs/PieceId" - }, - "port": { - "$ref": "#/$defs/PortId" - } - }, - "required": [ - "piece", - "port" - ], - "title": "Side", - "type": "object" - }, - "TypeId": { - "description": "The props to identify the type.", - "properties": { - "name": { - "description": "The name of the type.", - "maxLength": 64, - "title": "Name", - "type": "string" - }, - "variant": { - "default": "", - "description": "The optional variant of the type. No variant means the default variant.", - "maxLength": 64, - "title": "Variant", - "type": "string" - } - }, - "required": [ - "name" - ], - "title": "TypeId", - "type": "object" - } - }, - "description": "A design is a collection of pieces that are connected.", - "properties": { - "description": { - "default": "", - "description": "The optional human-readable description of the design.", - "maxLength": 2560, - "title": "Description", - "type": "string" - }, - "pieces": { - "items": { - "$ref": "#/$defs/PiecesDiff" - }, - "title": "PiecesDiff", - "type": "object" - }, - "connections": { - "$ref": "#/$defs/ConnectionDiff", - "title": "ConnectionDiff", - "type": "object" - } - }, - "title": "DesignDiff", - "type": "object" -} \ No newline at end of file diff --git a/js/core/.prettierrc.yaml b/js/core/.prettierrc.yaml deleted file mode 100644 index e69de29bb..000000000 diff --git a/js/core/.storybook/main.ts b/js/core/.storybook/main.ts index 31b79a02a..de06e59e7 100644 --- a/js/core/.storybook/main.ts +++ b/js/core/.storybook/main.ts @@ -19,22 +19,19 @@ // #endregion -import type { StorybookConfig } from '@storybook/react-vite'; +import type { StorybookConfig } from "@storybook/react-vite"; import { dirname, join } from "path"; /** -* This function is used to resolve the absolute path of a package. -* It is needed in projects that use Yarn PnP or are set up within a monorepo. -*/ + * This function is used to resolve the absolute path of a package. + * It is needed in projects that use Yarn PnP or are set up within a monorepo. + */ function getAbsolutePath(value: string): any { - return dirname(require.resolve(join(value, 'package.json'))) + return dirname(require.resolve(join(value, "package.json"))); } const config: StorybookConfig = { - stories: [ - "../stories/*.mdx", - "../components/**/*.stories.@(js|jsx|mjs|ts|tsx)", - ], + stories: ["../stories/*.mdx", "../components/**/*.stories.@(js|jsx|mjs|ts|tsx)"], addons: [ // getAbsolutePath('@storybook/addon-essentials'), // getAbsolutePath('@chromatic-com/storybook'), @@ -44,16 +41,16 @@ const config: StorybookConfig = { framework: { name: getAbsolutePath("@storybook/react-vite"), - options: {} + options: {}, }, docs: {}, typescript: { - reactDocgen: "react-docgen-typescript" + reactDocgen: "react-docgen-typescript", }, core: { - disableTelemetry: true - } + disableTelemetry: true, + }, }; -export default config; \ No newline at end of file +export default config; diff --git a/js/core/.storybook/preview.ts b/js/core/.storybook/preview.ts index c6e0789ba..765dbbf69 100644 --- a/js/core/.storybook/preview.ts +++ b/js/core/.storybook/preview.ts @@ -18,9 +18,9 @@ // along with this program. If not, see . // #endregion -import type { Preview } from '@storybook/react-vite'; +import type { Preview } from "@storybook/react-vite"; -import '../globals.css'; +import "../globals.css"; const preview: Preview = { parameters: { @@ -31,13 +31,13 @@ const preview: Preview = { }, }, darkMode: { - current: 'auto', - dark: { appBg: '-var(--color-dark)' }, - light: { appBg: '-var(--color-dark)' } - } + current: "auto", + dark: { appBg: "-var(--color-dark)" }, + light: { appBg: "-var(--color-dark)" }, + }, }, - tags: ['autodocs'] + tags: ["autodocs"], }; -export default preview; \ No newline at end of file +export default preview; diff --git a/js/core/.storybook/vitest.setup.ts b/js/core/.storybook/vitest.setup.ts index dad46289c..e7761b58e 100644 --- a/js/core/.storybook/vitest.setup.ts +++ b/js/core/.storybook/vitest.setup.ts @@ -18,12 +18,12 @@ // along with this program. If not, see . // #endregion -import { setProjectAnnotations } from '@storybook/react-vite'; -import { beforeAll } from 'vitest'; -import * as projectAnnotations from './preview'; +import { setProjectAnnotations } from "@storybook/react-vite"; +import { beforeAll } from "vitest"; +import * as projectAnnotations from "./preview"; // This is an important step to apply the right configuration when testing your stories. // More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations const project = setProjectAnnotations([projectAnnotations]); -beforeAll(project.beforeAll); \ No newline at end of file +beforeAll(project.beforeAll); diff --git a/js/core/components.json b/js/core/components.json index 7263d829c..f4b0df81b 100644 --- a/js/core/components.json +++ b/js/core/components.json @@ -1,21 +1,21 @@ { - "$schema": "https://ui.shadcn.com/schema.json", - "style": "new-york", - "rsc": false, - "tsx": true, - "tailwind": { - "config": "", - "css": "globals.css", - "baseColor": "neutral", - "cssVariables": true, - "prefix": "" - }, - "aliases": { - "components": "components", - "ui": "components/ui", - "hooks": "hooks", - "lib": "lib", - "utils": "lib/utils" - }, - "iconLibrary": "lucide" -} \ No newline at end of file + "$schema": "https://ui.shadcn.com/schema.json", + "style": "new-york", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "", + "css": "globals.css", + "baseColor": "neutral", + "cssVariables": true, + "prefix": "" + }, + "aliases": { + "components": "components", + "ui": "components/ui", + "hooks": "hooks", + "lib": "lib", + "utils": "lib/utils" + }, + "iconLibrary": "lucide" +} diff --git a/js/core/components/ui/Accordion.tsx b/js/core/components/ui/Accordion.tsx index 96fd30989..49588caa0 100644 --- a/js/core/components/ui/Accordion.tsx +++ b/js/core/components/ui/Accordion.tsx @@ -18,43 +18,28 @@ // along with this program. If not, see . // #endregion -import * as AccordionPrimitive from "@radix-ui/react-accordion" -import { ChevronDownIcon } from "lucide-react" -import * as React from "react" +import * as AccordionPrimitive from "@radix-ui/react-accordion"; +import { ChevronDownIcon } from "lucide-react"; +import * as React from "react"; -import { cn } from "@semio/js/lib/utils" +import { cn } from "@semio/js/lib/utils"; -function Accordion({ - ...props -}: React.ComponentProps) { - return +function Accordion({ ...props }: React.ComponentProps) { + return ; } -function AccordionItem({ - className, - ...props -}: React.ComponentProps) { - return ( - - ) +function AccordionItem({ className, ...props }: React.ComponentProps) { + return ; } -function AccordionTrigger({ - className, - children, - ...props -}: React.ComponentProps) { +function AccordionTrigger({ className, children, ...props }: React.ComponentProps) { return ( svg]:rotate-180", - className + className, )} {...props} > @@ -62,24 +47,15 @@ function AccordionTrigger({ - ) + ); } -function AccordionContent({ - className, - children, - ...props -}: React.ComponentProps) { +function AccordionContent({ className, children, ...props }: React.ComponentProps) { return ( - +
{children}
- ) + ); } -export { Accordion, AccordionContent, AccordionItem, AccordionTrigger } - +export { Accordion, AccordionContent, AccordionItem, AccordionTrigger }; diff --git a/js/core/components/ui/Avatar.tsx b/js/core/components/ui/Avatar.tsx index 24f31f6d5..1519ba17c 100644 --- a/js/core/components/ui/Avatar.tsx +++ b/js/core/components/ui/Avatar.tsx @@ -18,55 +18,21 @@ // along with this program. If not, see . // #endregion -import * as AvatarPrimitive from "@radix-ui/react-avatar" -import * as React from "react" +import * as AvatarPrimitive from "@radix-ui/react-avatar"; +import * as React from "react"; -import { cn } from "@semio/js/lib/utils" +import { cn } from "@semio/js/lib/utils"; -function Avatar({ - className, - ...props -}: React.ComponentProps) { - return ( - - ) +function Avatar({ className, ...props }: React.ComponentProps) { + return ; } -function AvatarImage({ - className, - ...props -}: React.ComponentProps) { - return ( - - ) +function AvatarImage({ className, ...props }: React.ComponentProps) { + return ; } -function AvatarFallback({ - className, - ...props -}: React.ComponentProps) { - return ( - - ) +function AvatarFallback({ className, ...props }: React.ComponentProps) { + return ; } -export { Avatar, AvatarFallback, AvatarImage } - +export { Avatar, AvatarFallback, AvatarImage }; diff --git a/js/core/components/ui/Breadcrumb.tsx b/js/core/components/ui/Breadcrumb.tsx index b40e231e7..a0fbd1745 100644 --- a/js/core/components/ui/Breadcrumb.tsx +++ b/js/core/components/ui/Breadcrumb.tsx @@ -18,38 +18,23 @@ // along with this program. If not, see . // #endregion -import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu" -import { Slot } from "@radix-ui/react-slot" -import { ChevronDown, ChevronRight, MoreHorizontal } from "lucide-react" -import * as React from "react" +import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu"; +import { Slot } from "@radix-ui/react-slot"; +import { ChevronDown, ChevronRight, MoreHorizontal } from "lucide-react"; +import * as React from "react"; -import { cn } from "@semio/js/lib/utils" +import { cn } from "@semio/js/lib/utils"; function Breadcrumb({ ...props }: React.ComponentProps<"nav">) { - return